:root {
    --bg-dark: #080808;
    --bg-card: #121212;
    --primary-pink: #e91e8c;
    --primary-glow: rgba(233, 30, 140, 0.15);
    --text-main: #f0f0f0;
    --text-muted: rgba(240, 240, 240, 0.6);
    --border-color: rgba(255, 255, 255, 0.08);
    --transition-smooth: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);

    --fs-base: clamp(14px, 1vw + 10px, 16px);
    --fs-h1: clamp(2.5rem, 8vw, 4.5rem);
    --fs-h2: clamp(2rem, 5vw, 3.5rem);
    --section-pad: clamp(60px, 10vh, 120px);
    --container-gap: clamp(1rem, 5vw, 3rem);
}


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

*::before,
*::after {
    box-sizing: inherit;
}

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    height: 100%;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: "IBM Plex Sans", sans-serif;
    font-size: var(--fs-base);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}



/* Fluid Section */
section {
    padding: var(--section-pad) 0;
    position: relative;
}



/* Fluid Typography */
h1,
.h1 {
    font-size: var(--fs-h1);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

h2,
.h2 {
    font-size: var(--fs-h2);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}


input,
textarea,
select {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: clamp(0.6rem, 1.5vw, 1rem);
    color: var(--text-main);
    font-size: var(--fs-base);
    transition: var(--transition-smooth);
}

input:focus {
    outline: none;
    border-color: var(--primary-pink);
    background: rgba(255, 255, 255, 0.05);
}


body::-webkit-scrollbar {
    width: 6px;
}

body::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

body::-webkit-scrollbar-thumb {
    background: var(--primary-pink);
    border-radius: 10px;
}

::selection {
    background: var(--primary-pink);
    color: #fff;
}


@media (max-width: 576px) {
    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    section {
        text-align: center;
    }
}

/* start header  */


/* ============================================
   PREMIUM NAVIGATION - PERFECT SPACING
   ============================================ */

.nav-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    padding: 20px 24px;
    pointer-events: none;
}

.nav-bar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 80px;
    padding: 6px 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    pointer-events: auto;
    transition: all 0.3s ease;
    width: auto;
    min-width: 300px;
}

/* Navigation Links Container */
.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Navigation Links */
.nav-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 100px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    white-space: nowrap;
    background: transparent;
    border: none;
    cursor: pointer;
}

/* Glow effect */
.nav-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(233, 30, 140, 0.15), transparent);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

.nav-link:hover .nav-glow,
.nav-link.active .nav-glow {
    opacity: 1;
}

.nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-1px);
}

.nav-link.active {
    color: #fff;
    background: linear-gradient(135deg, rgba(233, 30, 140, 0.15), rgba(255, 107, 0, 0.1));
    border: 1px solid rgba(233, 30, 140, 0.3);
}

.nav-link.active::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: linear-gradient(90deg, #e91e8c, #ff6b00);
    border-radius: 3px;
    animation: navPulse 2s ease-in-out infinite;
}

@keyframes navPulse {

    0%,
    100% {
        opacity: 0.6;
        width: 20px;
    }

    50% {
        opacity: 1;
        width: 30px;
    }
}

/* Icons */
.nav-link i {
    width: 18px;
    height: 18px;
    stroke-width: 1.8;
    transition: transform 0.2s;
}

.nav-link:hover i {
    transform: scale(1.05);
}

.nav-link.active i {
    stroke: #e91e8c;
}

.dropdown-arrow {
    width: 12px;
    height: 12px;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

/* ========== DROPDOWN ========== */
.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    min-width: 260px;
    background: rgba(15, 15, 15, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 1001;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.dropdown-header i {
    width: 14px;
    height: 14px;
    color: #e91e8c;
}

.dropdown-header span {
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.dropdown-items {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.2s;
}

.dropdown-item i {
    width: 16px;
    height: 16px;
    color: rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
}

.dropdown-item-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.dropdown-item-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
}

.dropdown-item-desc {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
}

.dropdown-item:hover {
    background: rgba(233, 30, 140, 0.1);
}

.dropdown-item:hover i {
    color: #e91e8c;
}

.dropdown-item:hover .dropdown-item-title {
    color: #fff;
}

.dropdown-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    margin: 8px 0;
}

/* CTA Button */
.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #e91e8c, #ff6b00);
    padding: 10px 24px;
    border-radius: 100px;
    color: white;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(233, 30, 140, 0.3);
    gap: 12px;
}

.nav-cta i {
    font-size: 1rem;
    transition: transform 0.3s;
}

.nav-cta:hover i {
    transform: translateX(4px);
}

/* ========== RESPONSIVE ========== */

/* Desktop Large */
@media (min-width: 1400px) {
    .nav-bar {
        gap: 32px;
        padding: 8px 20px;
    }

    .nav-links {
        gap: 12px;
    }

    .nav-link {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

/* Desktop Medium (MD) */
@media (min-width: 992px) and (max-width: 1199px) {
    .nav-bar {
        gap: 20px;
        padding: 6px 16px;
    }

    .nav-links {
        gap: 6px;
    }

    .nav-link {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .nav-cta {
        padding: 8px 20px;
        font-size: 0.8rem;
    }
}

/* Tablet Landscape */
@media (min-width: 768px) and (max-width: 991px) {
    .nav-header {
        padding: 16px 20px;
    }

    .nav-bar {
        gap: 16px;
        padding: 5px 12px;
        width: 100%;
        justify-content: space-between;
    }

    .nav-links {
        gap: 4px;
    }

    .nav-link {
        padding: 8px 14px;
        font-size: 0.75rem;
    }

    .nav-cta {
        padding: 8px 18px;
        font-size: 0.75rem;
    }
}

/* Mobile Landscape */
@media (min-width: 576px) and (max-width: 767px) {
    .nav-header {
        bottom: 16px;
        top: auto;
        padding: 0 16px;
    }

    .nav-bar {
        width: 100%;
        justify-content: space-between;
        padding: 5px 12px;
        gap: 12px;
    }

    .nav-text {
        display: none;
    }

    .nav-link {
        padding: 8px 12px;
    }

    .nav-link i {
        width: 18px;
        height: 18px;
    }

    .nav-cta span {
        display: none;
    }

    .nav-cta {
        padding: 8px 16px;
    }

    .dropdown-menu {
        position: fixed;
        bottom: 70px;
        top: auto;
        right: 16px;
        left: 16px;
        width: auto;
        min-width: auto;
    }
}

/* Mobile Portrait */
@media (min-width: 481px) and (max-width: 575px) {
    .nav-header {
        bottom: 12px;
        top: auto;
        padding: 0 12px;
    }

    .nav-bar {
        width: 100%;
        justify-content: space-between;
        padding: 4px 10px;
        gap: 8px;
    }

    .nav-text {
        display: none;
    }

    .nav-link {
        padding: 6px 10px;
    }

    .nav-link i {
        width: 16px;
        height: 16px;
    }

    .nav-cta span {
        display: none;
    }

    .nav-cta {
        padding: 6px 14px;
    }

    .dropdown-menu {
        position: fixed;
        bottom: 65px;
        top: auto;
        right: 12px;
        left: 12px;
        width: auto;
        border-radius: 16px;
        padding: 10px;
    }

    .dropdown-item {
        padding: 8px 10px;
    }

    .dropdown-item-title {
        font-size: 0.8rem;
    }

    .dropdown-item-desc {
        font-size: 0.65rem;
    }
}

/* Small Mobile (XXS) */
@media (max-width: 480px) {
    .nav-header {
        bottom: 10px;
        top: auto;
        padding: 0 10px;
    }

    .nav-bar {
        width: 100%;
        justify-content: space-between;
        padding: 4px 8px;
        gap: 6px;
    }

    .nav-text {
        display: none;
    }

    .nav-links {
        gap: 2px;
    }

    .nav-link {
        padding: 5px 8px;
    }

    .nav-link i {
        width: 14px;
        height: 14px;
    }

    .nav-cta span {
        display: none;
    }

    .nav-cta {
        padding: 5px 12px;
    }

    .dropdown-menu {
        position: fixed;
        bottom: 60px;
        top: auto;
        right: 10px;
        left: 10px;
        border-radius: 14px;
        padding: 8px;
    }

    .dropdown-item {
        padding: 6px 8px;
        gap: 8px;
    }

    .dropdown-item-title {
        font-size: 0.75rem;
    }

    .dropdown-item-desc {
        font-size: 0.6rem;
    }

    .dropdown-header {
        padding: 6px 8px;
    }

    .dropdown-header span {
        font-size: 0.6rem;
    }
}

/* ========== SCROLL REVEAL ========== */
.nav-header {
    opacity: 0;
    transform: translateY(-30px);
    transition: opacity 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1),
        transform 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.nav-header.revealed {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .nav-header {
        transform: translateY(30px);
    }

    .nav-header.revealed {
        transform: translateY(0);
    }
}

/* Scrolled State */
.nav-header.scrolled .nav-bar {
    background: rgba(8, 8, 8, 0.95);
    border-color: rgba(233, 30, 140, 0.2);
}


/* end header  */

/* --- HERO SECTION CUSTOM STYLES --- */

.hero-wrapper {
    position: relative;
    background: var(--bg-dark);
    min-height: 100vh;
    overflow: hidden;
    padding: 0 !important;
    /* Hero usually takes full screen */
}

/* Starfield Canvas Background */
.hero-bg-layer {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.space-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, transparent 0%, var(--bg-dark) 85%);
    pointer-events: none;
}

/* Typography & Text */
.text-orange {
    color: #ff6b00;
}

/* Jenny's signature orange */

.hello-tag {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    background: rgba(243, 110, 16, 0.15) !important;
    /* Opacity increased for visibility */
    border: 1px solid rgba(255, 107, 0, 0.3) !important;
    border-radius: 100px;
    color: #ff6b00 !important;
    font-size: 0.85rem;
    backdrop-filter: blur(5px);
}

.status-badge-wrapper {
    margin-bottom: 20px;
    z-index: 50;
    position: relative;
}

.main-title {
    font-size: var(--fs-h1);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -1px;
}

/* Premium Glass Cards */
.hero-side-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 24px;
    transition: var(--transition-smooth);
}

.hover-glow:hover {
    border-color: #ff6b00;
    box-shadow: 0 0 30px rgba(255, 107, 0, 0.15);
    transform: translateY(-5px);
}

/* Main Image & Glow */
.hero-main-image-area {
    position: relative;
    display: inline-block;
}

.orange-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.25) 0%, transparent 70%);
    filter: blur(50px);
    z-index: -1;
}

.hero-img-main {
    max-height: 550px;
    object-fit: contain;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.5));
}

/* Action Pills */
.hero-action-pill {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(20px);
    padding: 10px;
    border-radius: 100px;
    border: 1px solid var(--border-color);
    white-space: nowrap;
}

.btn-orange-pill {
    background: #ff6b00;
    color: #fff;
    padding: 12px 25px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.3s;
}

.btn-white-pill {
    background: #fff;
    color: #000;
    padding: 12px 25px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Social Icons Sidebar */
.social-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 15px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    transition: 0.3s;
}

.social-icon:hover {
    color: #ff6b00;
    border-color: #ff6b00;
    background: rgba(255, 107, 0, 0.05);
}

.social-line {
    width: 1px;
    height: 60px;
    background: var(--border-color);
    margin: 10px auto;
}

/* Responsive Fix for XS Mobile */
@media (max-width: 767px) {
    .hero-wrapper {
        padding-top: 80px !important;
        text-align: center;
    }

    .hero-action-pill {
        position: relative;
        bottom: 0;
        margin-top: 20px;
        transform: none;
        left: 0;
    }

    .hero-side-card {
        margin-top: 20px;
    }

    .social-icon {
        margin-bottom: 0;
        margin-right: 15px;
    }
}


/* ============================================================
   ABOUT SECTION — Premium 3D Cylinder Carousel
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:wght@300;400;500&display=swap');

.ab-section {
    position: relative;
    padding: 100px 0 80px;
    background: #080808;
    overflow: hidden;
    font-family: 'DM Sans', sans-serif;
}

/* ── Orbs ──────────────────────────────────────────────── */
.ab-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(110px);
    animation: abFloat 18s ease-in-out infinite;
}

.ab-orb-1 {
    width: 500px;
    height: 500px;
    background: #c2185b;
    opacity: 0.08;
    top: -120px;
    left: -120px;
}

.ab-orb-2 {
    width: 600px;
    height: 600px;
    background: #0288d1;
    opacity: 0.06;
    bottom: -150px;
    right: -120px;
    animation-delay: -6s;
}

.ab-orb-3 {
    width: 350px;
    height: 350px;
    background: #f57c00;
    opacity: 0.05;
    top: 40%;
    left: 30%;
    animation-delay: -12s;
}

@keyframes abFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(25px, -25px) scale(1.08);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.94);
    }
}

/* ── Left bio ──────────────────────────────────────────── */
.ab-left {
    position: relative;
    z-index: 10;
    padding-right: clamp(0px, 4vw, 60px);
}

.ab-eyebrow {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 3px;
    color: #e91e8c;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(233, 30, 140, 0.25);
}

.ab-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 700;
    line-height: 1.15;
    color: #f2f2f2;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.ab-name {
    display: inline-block;
    font-style: italic;
    background: linear-gradient(110deg, #e91e8c 10%, #ff9800 90%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.ab-bio p {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.93rem;
    line-height: 1.75;
    margin-bottom: 14px;
}

.ab-quote {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin: 28px 0;
    padding: 16px 0;
}

.ab-quote-bar {
    flex-shrink: 0;
    width: 3px;
    height: 100%;
    min-height: 44px;
    background: linear-gradient(180deg, #e91e8c, #ff9800);
    border-radius: 3px;
}

.ab-quote p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.6;
    margin: 0;
}

/* ── Stats ─────────────────────────────────────────────── */
.ab-stats {
    display: flex;
    align-items: center;
    gap: 0;
    margin: 28px 0;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 18px 0;
}

.ab-stat {
    flex: 1;
    text-align: center;
}

.ab-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
}

.ab-stat-n {
    display: inline-block;
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2rem);
    font-weight: 800;
    background: linear-gradient(110deg, #fff 30%, #e91e8c);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.ab-stat-l {
    display: block;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.38);
    letter-spacing: 1px;
    margin-top: 5px;
    text-transform: uppercase;
}

/* ── Actions ───────────────────────────────────────────── */
.ab-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 28px;
}

.ab-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 26px;
    background: linear-gradient(110deg, #e91e8c, #ff5722);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    border-radius: 100px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.ab-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(233, 30, 140, 0.35);
    color: #fff;
}

.ab-socials {
    display: flex;
    gap: 10px;
}

.ab-socials a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.25s;
}

.ab-socials a:hover {
    background: #e91e8c;
    border-color: #e91e8c;
    color: #fff;
    transform: translateY(-3px);
}

/* ── RIGHT / CAROUSEL ──────────────────────────────────── */
.ab-right {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Scene = the perspective viewport */
.ab-scene {
    width: 100%;
    perspective: 34000px;
    perspective-origin: 50% 50%;
    cursor: grab;
    overflow: hidden;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 400px;
}

.ab-scene:active {
    cursor: grabbing;
}

/* Left + right fade masks so cards fade out naturally */
.ab-scene::before,
.ab-scene::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 22%;
    z-index: 20;
    pointer-events: none;
}

.ab-scene::before {
    left: 0;
    background: linear-gradient(to right, #080808 0%, transparent 100%);
}

.ab-scene::after {
    right: 0;
    background: linear-gradient(to left, #080808 0%, transparent 100%);
}

/* Cylinder wrapper — all cards positioned inside this */
.ab-cylinder {
    position: absolute;
    transform-style: preserve-3d;
    transform-origin: 50% 50% 0px;
    transition: transform 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    top: 50%;
    left: 50%;
}

/* Each card sits on the cylinder surface */
.ab-card {
    position: absolute;
    border-radius: 18px;
    /* overflow: hidden; */
    background: #141414;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    will-change: transform;
    transition: border-color 0.3s;
    transform-style: preserve-3d;
}

.ab-card:hover {
    border-color: rgba(233, 30, 140, 0.4);
}

.ab-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

/* ========== BOTH-WAYS SCROLL ANIMATION ========== */
.ab-left,
.ab-right {
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1),
        transform 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.ab-left {
    transform: translateX(-60px);
}

.ab-right {
    transform: translateX(60px);
}

.ab-left.revealed,
.ab-right.revealed,
.sv-card.revealed,
.sv-bottom-card.revealed,
.sk-item.revealed,
.testimonial-card.revealed {
    opacity: 1 !important;
    transform: translateX(0) translateY(0) !important;
}

/* Shine overlay — opacity driven by JS based on rotation */
.ab-card-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, transparent 60%);
    pointer-events: none;
    border-radius: inherit;
    transition: opacity 0.1s;
}

/* Zoom button on hover */
.ab-card-zoom {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.2s, transform 0.2s, background 0.2s;
    z-index: 5;
}

.ab-card:hover .ab-card-zoom {
    opacity: 1;
    transform: scale(1);
}

.ab-card-zoom:hover {
    background: #e91e8c;
    border-color: #e91e8c;
}

/* ── Controls ──────────────────────────────────────────── */
.ab-controls {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
}

.ab-ctrl-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.ab-ctrl-btn:hover {
    background: #e91e8c;
    border-color: #e91e8c;
    color: #fff;
}

.ab-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ab-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
}

.ab-dot.active {
    width: 24px;
    border-radius: 10px;
    background: #e91e8c;
}

.ab-dot:hover:not(.active) {
    background: rgba(255, 255, 255, 0.45);
}

.ab-drag-hint {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.22);
    letter-spacing: 1px;
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ── LIGHTBOX ──────────────────────────────────────────── */
.ab-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.ab-lightbox.open {
    opacity: 1;
    pointer-events: all;
}

.ab-lightbox-bg {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.93);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.ab-lb-wrap {
    position: relative;
    z-index: 2;
    max-width: min(88vw, 820px);
    max-height: 85vh;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
    transform: scale(0.92);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ab-lightbox.open .ab-lb-wrap {
    transform: scale(1);
}

.ab-lb-wrap img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 85vh;
    object-fit: contain;
}

.ab-lb-close,
.ab-lb-prev,
.ab-lb-next {
    position: fixed;
    z-index: 3;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.ab-lb-close {
    top: 20px;
    right: 20px;
}

.ab-lb-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.ab-lb-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.ab-lb-close:hover,
.ab-lb-prev:hover,
.ab-lb-next:hover {
    background: #e91e8c;
    color: #fff;
    border-color: #e91e8c;
}

.ab-lb-prev:hover {
    transform: translateY(-50%) scale(1.05);
}

.ab-lb-next:hover {
    transform: translateY(-50%) scale(1.05);
}

.ab-lb-counter {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
    background: rgba(0, 0, 0, 0.5);
    padding: 5px 14px;
    border-radius: 100px;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: 1px;
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 991px) {
    .ab-section {
        padding: 70px 0 60px;
    }

    .ab-left {
        padding-right: 0;
        margin-bottom: 50px;
        text-align: center;
    }

    .ab-quote {
        justify-content: center;
    }

    .ab-stats {
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    .ab-actions {
        justify-content: center;
    }

    .ab-scene::before,
    .ab-scene::after {
        width: 14%;
    }
}

@media (max-width: 575px) {

    .ab-scene::before,
    .ab-scene::after {
        width: 10%;
    }

    .ab-ctrl-btn {
        width: 32px;
        height: 32px;
    }
}



/* ============================================
   TESTIMONIALS SECTION - COMPLETELY FIXED
   ============================================ */



    .tw-section {
        position: relative;
        overflow: hidden;
        background: var(--bg-dark, #080808);
        padding: 80px 0;
    }

    .tw-canvas {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 0;
    }

    .tw-particles {
        position: absolute;
        inset: 0;
        overflow: hidden;
        pointer-events: none;
        z-index: 1;
    }

    .tw-particle {
        position: absolute;
        border-radius: 50%;
        filter: blur(50px);
        opacity: 0.1;
        animation: twFloatParticle 20s ease-in-out infinite;
    }

    .tw-particle-1 {
        width: 300px;
        height: 300px;
        background: #e91e8c;
        top: 5%;
        left: -80px;
    }

    .tw-particle-2 {
        width: 250px;
        height: 250px;
        background: #00c8ff;
        bottom: 10%;
        right: -60px;
        animation-delay: -7s;
    }

    .tw-particle-3 {
        width: 200px;
        height: 200px;
        background: #ff6b00;
        top: 40%;
        left: 20%;
        animation-delay: -14s;
        opacity: 0.06;
    }

    .tw-author-info {
        flex-grow: 1;
        min-width: 0;
        margin-left: 10px;
    }

    .tw-author-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .tw-author-text {
        min-width: 0;
        display: flex;
        flex-direction: column;
    }

    .tw-author-name {
        margin: 0;
        font-size: 0.85rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .tw-author-company {
        margin: 0;
        font-size: 0.7rem;
        opacity: 0.7;
    }

    .tw-rating {
        display: flex;
        gap: 2px;
        flex-shrink: 0;
        /* Ensures the stars don't get squished */
        margin-left: 8px;
    }

    @keyframes twFloatParticle {

        0%,
        100% {
            transform: translate(0, 0) scale(1);
        }

        33% {
            transform: translate(50px, -40px) scale(1.2);
        }

        66% {
            transform: translate(-40px, 30px) scale(0.85);
        }
    }

    /* Section Header */
    .tw-header {
        text-align: center;
        margin-bottom: 50px;
        position: relative;
        z-index: 2;
    }

    .tw-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(233, 30, 140, 0.1);
        border: 1px solid rgba(233, 30, 140, 0.3);
        padding: 6px 16px;
        border-radius: 100px;
        font-size: 0.75rem;
        font-weight: 600;
        color: #e91e8c;
        margin-bottom: 20px;
        letter-spacing: 1px;
    }

    .tw-title {
        font-size: clamp(1.4rem, 5vw, 2.8rem);
        font-weight: 700;
        line-height: 1.3;
        margin-bottom: 20px;
        color: #f0f0f0;
    }

    .tw-gradient {
        background: linear-gradient(135deg, #e91e8c 0%, #ff6b00 50%, #00c8ff 100%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

    .tw-divider {
        width: 60px;
        height: 3px;
        background: linear-gradient(90deg, #e91e8c, #ff6b00, #00c8ff);
        margin: 0 auto;
        border-radius: 3px;
    }

    .tw-subtitle {
        color: rgba(255, 255, 255, 0.6);
        font-size: clamp(0.7rem, 3vw, 0.85rem);
        margin-top: 20px;
        line-height: 1.6;
    }

    /* Marquee Logic */
    .tw-marquee-row {
        width: 100%;
        overflow: hidden;
        margin: 20px 0;
        position: relative;
    }

    .tw-marquee-track {
        display: flex;
        gap: 20px;
        width: max-content;
        will-change: transform;
        user-select: none;
    }

    .tw-marquee-row.reverse .tw-marquee-track {
        animation: twMarqueeReverse 25s linear infinite;
    }

    .tw-marquee-row.normal .tw-marquee-track {
        animation: twMarqueeNormal 25s linear infinite;
    }

    @keyframes twMarqueeNormal {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }

    @keyframes twMarqueeReverse {
        0% {
            transform: translateX(-50%);
        }

        100% {
            transform: translateX(0);
        }
    }

    /* --- CARD ARCHITECTURE (80/20 SPLIT) --- */
    .tw-card {
        flex-shrink: 0;
        width: 320px;
        height: 280px;
        padding: 10px;
    }

    .tw-card-inner {
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid var(--border-color, #333);
        border-radius: 20px;
        padding: 20px;
        height: 100%;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .tw-card-inner:hover {
        border-color: rgba(233, 30, 140, 0.4);
        background: rgba(255, 255, 255, 0.07);
    }

    /* 80% Content Area: Scrollable */
    .tw-scroll-area {
        flex: 0 0 80%;
        overflow-y: auto;
        padding-right: 8px;
        margin-bottom: 8px;
    }

    .tw-scroll-area::-webkit-scrollbar {
        width: 4px;
    }

    .tw-scroll-area::-webkit-scrollbar-thumb {
        background: rgba(233, 30, 140, 0.3);
        border-radius: 10px;
    }

    /* 20% Author Footer: Pinned */
    .tw-author {
        flex: 0 0 20%;
        display: flex;
        align-items: center;
        gap: 10px;
        border-top: 1px solid var(--border-color, #333);
        padding-top: 10px;
    }

    /* Typography & Elements */
    .tw-quote-icon {
        margin-bottom: 8px;
        opacity: 0.6;
        transition: 0.3s;
    }

    .tw-card-inner:hover .tw-quote-icon {
        opacity: 1;
        transform: scale(1.05);
    }

    .tw-text {
        color: var(--text-main, #fff);
        line-height: 1.5;
        font-size: 0.85rem;
        font-style: italic;
        opacity: 0.85;
        margin: 0;
    }

    .tw-rating {
        display: flex;
        gap: 3px;
        margin: 8px 0;
    }

    .tw-avatar {
        width: 35px;
        height: 35px;
        flex-shrink: 0;
        background: linear-gradient(135deg, rgba(233, 30, 140, 0.2), rgba(255, 107, 0, 0.2));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        color: #e91e8c;
        overflow: hidden;
    }

    .tw-author-name {
        font-weight: 700;
        color: var(--text-main, #fff);
        font-size: 0.85rem;
        margin: 0;
    }

    .tw-author-company {
        color: var(--text-muted, #aaa);
        font-size: 0.7rem;
        margin: 0;
    }

    /* Responsive adjustments */
    @media (max-width: 767px) {
        .tw-card {
            width: 280px;
            height: 260px;
        }

        .tw-section {
            padding: 50px 0;
        }
    }

    @media (max-width: 480px) {
        .tw-card {
            width: 250px;
            height: 240px;
        }

        .tw-section {
            padding: 40px 0;
        }
    }




/* ============================================
   SERVICES SECTION - PREFIXED CLASSES (sv-)
   ============================================ */

/* Section Container */
.sv-section {
    position: relative;
    padding: 100px 0;
    min-height: 100vh;
    background: var(--bg-dark, #080808);
    overflow-x: hidden;
}

/* Scroll Reveal */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1),
        transform 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    will-change: transform, opacity;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Section Header */
.sv-header {
    text-align: center;
    margin-bottom: 60px;
}

.sv-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(233, 30, 140, 0.1);
    border: 1px solid rgba(233, 30, 140, 0.3);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #e91e8c;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.sv-title {
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: white;
}

.sv-gradient {
    background: linear-gradient(135deg, #e91e8c 0%, #ff6b00 50%, #00c8ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.sv-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #e91e8c, #ff6b00, #00c8ff);
    margin: 0 auto;
    border-radius: 3px;
}

/* Services Grid */
.sv-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

/* Service Card */
.sv-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 28px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
}

.sv-card:hover {
    transform: translateY(-6px);
    border-color: rgba(233, 30, 140, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.sv-icon-wrapper {
    position: relative;
    width: 52px;
    height: 52px;
    margin-bottom: 24px;
}

.sv-icon-bg {
    position: absolute;
    inset: 0;
    border-radius: 14px;
    opacity: 0.15;
    transition: all 0.3s;
}

.sv-card:hover .sv-icon-bg {
    transform: scale(1.1);
    opacity: 0.25;
}

.sv-icon {
    position: relative;
    width: 52px;
    height: 52px;
    padding: 11px;
}

.sv-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.sv-card-desc {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.sv-card-arrow {
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.3s;
}

.sv-card:hover .sv-card-arrow {
    opacity: 1;
    transform: translateX(0);
}

.sv-card-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    transition: width 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.sv-card:hover .sv-card-line {
    width: 100%;
}

/* Bottom Row */
.sv-bottom-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.sv-bottom-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 28px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.sv-bottom-card:hover {
    transform: translateY(-4px);
    border-color: rgba(233, 30, 140, 0.2);
}

/* Partnership Card */
.sv-partnership {
    background: linear-gradient(135deg, rgba(233, 30, 140, 0.05), rgba(255, 107, 0, 0.05));
}

.sv-partnership-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(233, 30, 140, 0.15);
    padding: 5px 12px;
    border-radius: 100px;
    font-size: 0.65rem;
    font-weight: 600;
    color: #e91e8c;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.sv-partnership-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 24px;
    color: white;
}

.sv-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #e91e8c, #ff6b00);
    padding: 10px 22px;
    border-radius: 100px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.sv-btn:hover {
    transform: translateX(4px);
    gap: 14px;
    color: white;
}

/* Timezone */
.sv-timezone {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sv-timezone-header {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #ff6b00;
    margin-bottom: 12px;
}

.sv-timezone-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    margin-bottom: 14px;
}

.sv-timezone-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sv-tz-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    font-size: 0.8rem;
}

.sv-tz-item span:first-child {
    font-weight: 600;
    color: white;
}

.sv-tz-item span:nth-child(2) {
    color: #e91e8c;
    font-weight: 600;
}

.sv-tz-item span:last-child {
    color: rgba(255, 255, 255, 0.4);
    font-family: monospace;
}

/* Tech Card */
.sv-tech-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.sv-tech-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    color: white;
}

.sv-tech-subtitle {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    margin-bottom: 24px;
}

.sv-tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.sv-tech-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    transition: all 0.2s;
}

.sv-tech-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(4px);
}

.sv-tech-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
}

.sv-tech-name {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Contact Card */
.sv-contact {
    position: relative;
    text-align: center;
    overflow: hidden;
}

.sv-contact-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(233, 30, 140, 0.08), transparent);
    opacity: 0;
    transition: opacity 0.5s;
}

.sv-contact:hover .sv-contact-glow {
    opacity: 1;
}

.sv-contact-icon {
    margin-bottom: 18px;
}

.sv-contact-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: white;
}

.sv-contact-email {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 18px;
    border-radius: 100px;
    color: white;
    text-decoration: none;
    font-size: 0.8rem;
    margin-bottom: 22px;
    transition: all 0.3s;
}

.sv-contact-email:hover {
    background: #e91e8c;
    transform: translateY(-2px);
    color: white;
}

.sv-contact-social {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 18px;
}

.sv-contact-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transition: all 0.3s;
}

.sv-contact-social a:hover {
    background: #e91e8c;
    transform: translateY(-3px);
}

.sv-availability {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

.sv-pulse-dot {
    width: 7px;
    height: 7px;
    background: #4caf50;
    border-radius: 50%;
    animation: svPulse 2s infinite;
}

@keyframes svPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.3);
    }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .sv-section {
        padding: 80px 0;
    }

    .sv-grid {
        gap: 20px;
    }

    .sv-card {
        padding: 22px;
    }

    .sv-card-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 991px) {
    .sv-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sv-bottom-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .sv-section {
        padding: 60px 0;
    }

    .sv-header {
        margin-bottom: 40px;
    }

    .sv-title {
        font-size: 1.8rem;
    }

    .sv-grid {
        gap: 16px;
    }

    .sv-card {
        padding: 20px;
    }

    .sv-icon-wrapper {
        width: 44px;
        height: 44px;
        margin-bottom: 18px;
    }

    .sv-icon {
        width: 44px;
        height: 44px;
        padding: 9px;
    }

    .sv-card-title {
        font-size: 1rem;
    }

    .sv-card-desc {
        font-size: 0.8rem;
    }
}

@media (max-width: 575px) {
    .sv-section {
        padding: 50px 0;
    }

    .sv-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .sv-bottom-row {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .sv-bottom-card {
        padding: 22px;
    }

    .sv-partnership-title {
        font-size: 1.1rem;
    }

    .sv-tech-grid {
        gap: 8px;
    }

    .sv-tech-item {
        padding: 6px 10px;
    }

    .sv-tech-name {
        font-size: 0.8rem;
    }

    .sv-contact-title {
        font-size: 1.1rem;
    }

    .sv-contact-email {
        font-size: 0.75rem;
        padding: 8px 14px;
    }
}

@media (max-width: 479px) {
    .sv-section {
        padding: 40px 0;
    }

    .sv-badge {
        font-size: 0.65rem;
        padding: 4px 12px;
    }

    .sv-title {
        font-size: 1.5rem;
    }

    .sv-card {
        padding: 16px;
    }

    .sv-icon-wrapper {
        width: 38px;
        height: 38px;
        margin-bottom: 14px;
    }

    .sv-icon {
        width: 38px;
        height: 38px;
        padding: 7px;
    }

    .sv-card-title {
        font-size: 0.95rem;
    }

    .sv-card-desc {
        font-size: 0.75rem;
    }

    .sv-bottom-card {
        padding: 18px;
    }

    .sv-partnership-title {
        font-size: 1rem;
    }

    .sv-btn {
        padding: 8px 18px;
        font-size: 0.75rem;
    }

    .sv-timezone-text {
        font-size: 0.7rem;
    }

    .sv-tz-item {
        font-size: 0.7rem;
        padding: 6px 10px;
    }

    .sv-tech-header h3 {
        font-size: 1rem;
    }

    .sv-tech-subtitle {
        font-size: 0.65rem;
    }

    .sv-tech-name {
        font-size: 0.7rem;
    }

    .sv-contact-title {
        font-size: 1rem;
    }

    .sv-contact-email {
        font-size: 0.7rem;
    }

    .sv-contact-social a {
        width: 32px;
        height: 32px;
    }

    .sv-availability {
        font-size: 0.65rem;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {

    .scroll-reveal,
    .sv-card,
    .sv-bottom-card,
    .sv-btn,
    .sv-tech-item,
    .sv-contact-social a {
        transition: none !important;
        animation: none !important;
    }

    .scroll-reveal {
        opacity: 1;
        transform: none;
    }
}


/* ============================================
   WORK SECTION - NO SCROLLBAR, NO AUTO-SLIDE
   ============================================ */

.work-section {
    position: relative;
    background: linear-gradient(180deg, #080808 0%, #0a0a0a 100%);
    padding: 60px 0 80px;
}

.work-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* Header */
.work-header {
    text-align: center;
    margin-bottom: 40px;
}

.work-badge {
    display: inline-block;
    background: rgba(233, 30, 140, 0.1);
    border: 1px solid rgba(233, 30, 140, 0.3);
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #e91e8c;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.work-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 16px;
    color: #f0f0f0;
}

.work-gradient {
    background: linear-gradient(135deg, #e91e8c, #ff6b00, #00c8ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Scroll Reveal - Fix: Class name match with JS */
.work-header,
.work-showcase,
.work-thumbnails,
.work-filters {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.work-header.revealed,
.work-showcase.revealed,
.work-thumbnails.revealed,
.work-filters.revealed {
    opacity: 1;
    transform: translateY(0);
}



.work-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #e91e8c, #ff6b00, #00c8ff);
    margin: 0 auto 20px;
}

.work-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

/* Filters */
.work-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.work-filter {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 6px 18px;
    border-radius: 100px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.3s;
}

.work-filter:hover,
.work-filter.active {
    background: linear-gradient(135deg, #e91e8c, #ff6b00);
    border-color: transparent;
    color: white;
}

/* Main Card */
.work-main-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: opacity 0.3s ease;
    max-width: 1100px;
    margin: 0 auto;
    height: 400px;
}

/* Desktop Layout (LG and above) */
@media (min-width: 992px) {
    .work-main-card {
        display: flex;
        flex-direction: row;
    }

    .work-main-image {
        flex: 1;
        width: 50%;
        min-height: 380px;
    }

    .work-main-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .work-main-content {
        flex: 1;
        width: 50%;
        padding: 32px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

/* Mobile/Tablet Layout (Below LG) */
@media (max-width: 991px) {
    .work-main-card {
        display: flex;
        flex-direction: column;
    }

    .work-main-image {
        width: 100%;
        height: 260px;
    }

    .work-main-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .work-main-content {
        padding: 24px;
    }
}

/* Common Styles */
.work-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(233, 30, 140, 0.15), transparent);
    pointer-events: none;
}

.work-year-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 0.7rem;
    color: #e91e8c;
    font-weight: 600;
    z-index: 2;
}

.work-category {
    display: inline-block;
    background: rgba(233, 30, 140, 0.15);
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 0.65rem;
    font-weight: 600;
    color: #e91e8c;
    margin-bottom: 12px;
}

.work-main-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.work-main-desc {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    font-size: 0.85rem;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.work-tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.work-tech {
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
}

.work-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.work-btn-live,
.work-btn-code {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.8rem;
    transition: all 0.3s;
}

.work-btn-live {
    background: linear-gradient(135deg, #e91e8c, #ff6b00);
    color: white;
}

.work-btn-live:hover {
    transform: translateY(-2px);
    gap: 10px;
    box-shadow: 0 5px 15px rgba(233, 30, 140, 0.3);
}

.work-btn-code {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

.work-btn-code:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Thumbnails - NO SCROLLBAR */
.work-thumbnails {
    margin-top: 30px;
    position: relative;
}

.work-thumb-track {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0 15px;
    cursor: grab;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.work-thumb-track::-webkit-scrollbar {
    display: none;
}

.work-thumb-track:active {
    cursor: grabbing;
}

.work-thumb {
    flex-shrink: 0;
    width: 80px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.work-thumb.active {
    border-color: #e91e8c;
    transform: translateY(-3px);
}

.work-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.work-thumb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s;
}

.work-thumb:active .work-thumb-overlay {
    opacity: 1;
}

/* Navigation Arrows */
.work-nav {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    opacity: 0.7;
}

.work-nav:hover {
    background: #e91e8c;
    border-color: #e91e8c;
    opacity: 1;
    transform: translateY(-50%) scale(1.05);
}

.work-nav-prev {
    left: 10px;
}

.work-nav-next {
    right: 10px;
}

/* Progress Bar */
.work-progress {
    width: 100%;
    max-width: 600px;
    margin: 30px auto 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    overflow: hidden;
}

.work-progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #e91e8c, #ff6b00);
    border-radius: 2px;
    transition: width 0.3s ease;
}

/* Counter */
.work-counter {
    text-align: center;
    margin-top: 15px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    font-family: monospace;
}

/* Mobile Drag Hint */
.work-drag-hint {
    display: none;
    text-align: center;
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.7rem;
    gap: 6px;
    align-items: center;
    justify-content: center;
}

/* Scroll Reveal */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ========== RESPONSIVE ========== */

@media (max-width: 991px) {
    .work-nav {
        display: none;
    }

    .work-drag-hint {
        display: flex;
    }
}

@media (max-width: 768px) {
    .work-main-image {
        height: 220px;
    }

    .work-main-content {
        padding: 20px;
    }

    .work-main-title {
        font-size: 1.2rem;
    }

    .work-main-desc {
        font-size: 0.8rem;
        -webkit-line-clamp: 2;
    }

    .work-tech {
        font-size: 0.65rem;
        padding: 3px 8px;
    }

    .work-btn-live,
    .work-btn-code {
        padding: 6px 16px;
        font-size: 0.75rem;
    }

    .work-thumb {
        width: 70px;
        height: 55px;
    }
}

@media (max-width: 576px) {
    .work-section {
        padding: 40px 0 60px;
    }

    .work-container {
        padding: 0 16px;
    }

    .work-main-image {
        height: 200px;
    }

    .work-main-content {
        padding: 16px;
    }

    .work-tech-stack {
        gap: 6px;
    }

    .work-links {
        flex-direction: column;
    }

    .work-btn-live,
    .work-btn-code {
        justify-content: center;
        width: 100%;
    }

    .work-thumb {
        width: 60px;
        height: 50px;
    }
}

@media (max-width: 380px) {
    .work-main-image {
        height: 180px;
    }

    .work-thumb {
        width: 55px;
        height: 45px;
    }

    .work-filters {
        gap: 6px;
    }

    .work-filter {
        padding: 4px 12px;
        font-size: 0.7rem;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {

    .work-main-image img,
    .work-btn-live,
    .work-btn-code,
    .work-thumb {
        transition: none;
    }
}

/* Disable text selection on drag */
.work-thumb-track {
    user-select: none;
    -webkit-user-select: none;
}


/* ============================================
   SKILLS SECTION - SMOOTH & PREMIUM
   ============================================ */

.sk-section {
    position: relative;
    background: #050505;
    padding: 100px 0;
    min-height: 100%;
}

/* Canvas Background - Lower Opacity */
.sk-canvas-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.35;
}

/* Floating Animated Elements */
.sk-float-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.sk-float {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.08;
    animation: skFloatMove 12s ease-in-out infinite;
}

.sk-float-1 {
    top: 15%;
    left: 8%;
    animation-delay: 0s;
    font-size: 2rem;
}

.sk-float-2 {
    top: 70%;
    left: 85%;
    animation-delay: -3s;
    font-size: 1.8rem;
}

.sk-float-3 {
    top: 45%;
    left: 12%;
    animation-delay: -6s;
    font-size: 1.2rem;
}

.sk-float-4 {
    top: 80%;
    left: 20%;
    animation-delay: -9s;
    font-size: 1.5rem;
}

.sk-float-5 {
    top: 25%;
    left: 75%;
    animation-delay: -12s;
    font-size: 2.2rem;
}

@keyframes skFloatMove {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(15px, -15px) rotate(5deg);
    }

    50% {
        transform: translate(-10px, -25px) rotate(-3deg);
    }

    75% {
        transform: translate(-20px, 10px) rotate(8deg);
    }
}

/* Header */
.sk-header {
    text-align: center;
    margin-bottom: 45px;
    position: relative;
    z-index: 10;
}

.sk-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(233, 30, 140, 0.1);
    border: 1px solid rgba(233, 30, 140, 0.3);
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #e91e8c;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.sk-title {
    font-size: clamp(1.6rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #f0f0f0;
}

.sk-gradient {
    background: linear-gradient(135deg, #e91e8c 0%, #ff6b00 50%, #00c8ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.sk-divider {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #e91e8c, #ff6b00, #00c8ff);
    margin: 0 auto;
    border-radius: 2px;
}

/* Skills Grid */
.sk-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    position: relative;
    z-index: 10;
    max-width: 1000px;
    margin: 0 auto;
}

/* Scroll Reveal - SLOWER ANIMATION */
.scroll-reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1),
        transform 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Chip Styles */
.sk-chip-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 60px;
    padding: 8px 18px 8px 12px;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    overflow: hidden;
    backdrop-filter: blur(4px);
}

.sk-chip-inner:hover {
    transform: translateY(-3px);
    border-color: rgba(233, 30, 140, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

.sk-chip-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1rem;
    transition: all 0.2s ease;
    border: 1px solid;
    flex-shrink: 0;
}

.sk-chip-inner:hover .sk-chip-icon {
    transform: scale(1.05);
}

.sk-chip-name {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.2s;
    white-space: nowrap;
}

.sk-chip-inner:hover .sk-chip-name {
    color: #fff;
}

.sk-chip-hover {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    transition: left 0.5s ease;
    pointer-events: none;
    z-index: 0;
}

.sk-chip-inner:hover .sk-chip-hover {
    left: 0;
}

/* ========== RESPONSIVE ========== */
@media (min-width: 1200px) {
    .sk-chip-inner {
        padding: 10px 22px 10px 14px;
        gap: 12px;
    }

    .sk-chip-icon {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }

    .sk-chip-name {
        font-size: 0.85rem;
    }
}

@media (max-width: 992px) {
    .sk-chip-inner {
        padding: 7px 16px 7px 10px;
    }

    .sk-chip-icon {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 768px) {
    .sk-section {
        padding: 50px 0;
    }

    .sk-chip-inner {
        padding: 6px 12px 6px 8px;
        gap: 8px;
    }

    .sk-chip-icon {
        width: 28px;
        height: 28px;
    }

    .sk-chip-name {
        font-size: 0.7rem;
    }
}

@media (max-width: 576px) {
    .sk-section {
        padding: 40px 0;
    }

    .sk-header {
        margin-bottom: 30px;
    }

    .sk-grid {
        gap: 8px;
    }

    .sk-chip-inner {
        padding: 5px 10px 5px 6px;
    }

    .sk-chip-icon {
        width: 24px;
        height: 24px;
        font-size: 0.8rem;
    }

    .sk-chip-name {
        font-size: 0.65rem;
    }
}

@media (max-width: 380px) {
    .sk-grid {
        gap: 6px;
    }

    .sk-chip-inner {
        padding: 4px 8px 4px 5px;
    }
}


/* ============================================
   CONTACT SECTION - MAP + EARTH BG INFO CARD
   ============================================ */

.ct-section {
    position: relative;
    background: linear-gradient(180deg, #080808 0%, #0a0a0a 100%);
    padding: 100px 0;
    overflow-x: hidden;
}

.ct-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Section Header */
.ct-header {
    text-align: center;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ct-header.revealed {
    opacity: 1;
    transform: translateY(0);
}

.ct-badge {
    display: inline-block;
    background: rgba(233, 30, 140, 0.1);
    border: 1px solid rgba(233, 30, 140, 0.3);
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #e91e8c;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.ct-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 16px;
    color: #f0f0f0;
}

.ct-gradient {
    background: linear-gradient(135deg, #e91e8c, #ff6b00);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.ct-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #e91e8c, #ff6b00, #00c8ff);
    margin: 0 auto 20px;
    border-radius: 3px;
}

.ct-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

/* Grid */
.ct-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

/* ===== LEFT SIDE ===== */
.ct-left {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 0s;
}

.ct-left.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Map */
.ct-map-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    margin-bottom: 24px;
}

.ct-map-wrapper iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(0.2) contrast(1.05);
    transition: filter 0.4s;
}

.ct-map-wrapper:hover iframe {
    filter: grayscale(0) contrast(1);
}

.ct-map-overlay {
    position: absolute;
    bottom: 16px;
    left: 16px;
    pointer-events: none;
    z-index: 2;
}

.ct-location-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 500;
    color: white;
    border: 1px solid rgba(233, 30, 140, 0.4);
}

/* Info Globe Card with Earth Animation */
.ct-info-globe {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
    min-height: 360px;
}

.ct-earth-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.ct-info-content {
    position: relative;
    z-index: 2;
    padding: 28px;
    background: rgba(8, 8, 8, 0.6);
    backdrop-filter: blur(4px);
    height: 100%;
}

.ct-info-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
    letter-spacing: -0.3px;
}

.ct-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.ct-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 12px;
    transition: all 0.2s;
}

.ct-info-item i {
    font-size: 1.2rem;
    color: #e91e8c;
    width: 28px;
}

.ct-info-item div {
    display: flex;
    flex-direction: column;
}

.ct-info-item span:first-child {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.ct-info-item a,
.ct-info-item span:last-child {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.ct-info-item a:hover {
    color: #e91e8c;
}

/* Timezone Section */
.ct-timezone-section {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 12px 16px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.ct-timezone-section i {
    color: #e91e8c;
    font-size: 1.1rem;
}

.ct-timezone-section>span {
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}

.ct-timezone-list {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.ct-timezone-list span {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    font-family: monospace;
}

/* Social Bottom */
.ct-social-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.ct-social-bottom>span {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
}

.ct-social-icons {
    display: flex;
    gap: 10px;
}

.ct-social-icons a {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    transition: all 0.2s;
}

.ct-social-icons a:hover {
    background: #e91e8c;
    border-color: #e91e8c;
    color: white;
    transform: translateY(-2px);
}

/* ===== RIGHT SIDE - FORM (same as before) ===== */
.ct-form-col {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 0.2s;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 28px;
    padding: 32px;
    backdrop-filter: blur(10px);
}

.ct-form-col.revealed {
    opacity: 1;
    transform: translateY(0);
}

.ct-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ct-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.ct-form-group {
    position: relative;
}

.ct-form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.ct-form-group label span {
    color: #e91e8c;
}

.ct-form-group input,
.ct-form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 14px 16px;
    padding-right: 44px;
    color: #f0f0f0;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.ct-form-group input:focus,
.ct-form-group textarea:focus {
    outline: none;
    border-color: #e91e8c;
    background: rgba(255, 255, 255, 0.08);
}

.ct-form-group i {
    position: absolute;
    right: 16px;
    bottom: 14px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 1.1rem;
    pointer-events: none;
}

.ct-form-check {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ct-form-check input {
    width: 16px;
    height: 16px;
    accent-color: #e91e8c;
}

.ct-form-check label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

.ct-form-check a {
    color: #e91e8c;
    text-decoration: none;
}

.ct-submit-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #e91e8c, #ff6b00);
    color: white;
    padding: 14px 28px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s;
    width: 100%;
}

.ct-submit-btn:hover {
    transform: translateY(-2px);
    gap: 14px;
    box-shadow: 0 10px 25px rgba(233, 30, 140, 0.3);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.ct-submit-btn:hover .btn-glow {
    left: 100%;
}

.ct-form-status {
    margin-top: 10px;
    font-size: 0.8rem;
    text-align: center;
}

/* WhatsApp */
.ct-whatsapp {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.ct-whatsapp-icon {
    width: 50px;
    height: 50px;
    background: rgba(37, 211, 102, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ct-whatsapp-icon i {
    font-size: 1.8rem;
    color: #25d366;
}

.ct-whatsapp-content {
    flex: 1;
}

.ct-whatsapp-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    display: block;
}

.ct-whatsapp-text {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.ct-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25d366;
    color: white;
    padding: 10px 20px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.3s;
}

.ct-whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    gap: 10px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .ct-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ct-section {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .ct-container {
        padding: 0 20px;
    }

    .ct-info-grid {
        grid-template-columns: 1fr;
    }

    .ct-form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .ct-form-col {
        padding: 24px;
    }

    .ct-whatsapp {
        flex-direction: column;
        text-align: center;
    }

    .ct-whatsapp-icon {
        margin: 0 auto;
    }

    .ct-social-bottom {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .ct-section {
        padding: 60px 0;
    }

    .ct-map-wrapper {
        height: 220px;
    }

    .ct-info-content {
        padding: 20px;
    }

    .ct-form-col {
        padding: 20px;
    }

    .ct-whatsapp-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 380px) {
    .ct-container {
        padding: 0 16px;
    }

    .ct-map-wrapper {
        height: 180px;
    }

    .ct-info-item {
        padding: 8px;
    }

    .ct-info-item i {
        font-size: 1rem;
    }

    .ct-timezone-list {
        flex-direction: column;
        gap: 4px;
    }
}


/* ============================================
   PREMIUM LINKPAGE -  Priyanshu Gupta
   Modern • Minimal • Professional UI/UX
   ============================================ */

.linkpage-wrapper {
    min-height: 100vh;
    background: radial-gradient(ellipse at 30% 40%, #0a0c15 0%, #020308 100%);
    padding: 3rem 1.5rem;
    position: relative;
    overflow-x: hidden;
}

/* Animated background grain */
.linkpage-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.4;
}

.linkpage-container {
    max-width: 560px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Premium Avatar Section */
.avatar-premium {
    text-align: center;
    margin-bottom: 1.5rem;
}

.avatar-glow-ring {
    width: 112px;
    height: 112px;
    margin: 0 auto;
    position: relative;
    border-radius: 50%;
    background: linear-gradient(135deg, #e91e8c, #ff6b00, #00c8ff);
    padding: 2.5px;
    animation: avatarFloat 3s ease-in-out infinite;
}

@keyframes avatarFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

.avatar-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #13172b, #0a0e1c);
    background-image: url('https://ui-avatars.com/api/?background=1a1f2e&color=e91e8c&name=Priyanshu+Gupta&size=110&bold=true&length=2&fontsize=0.55');
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

.avatar-glow-ring:hover .avatar-inner {
    transform: scale(1.02);
}

/* Online status badge */
.status-badge {
    position: absolute;
    bottom: 4px;
    right: 6px;
    width: 18px;
    height: 18px;
    background: #10b981;
    border-radius: 50%;
    border: 2px solid #0a0c15;
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.3);
    animation: pulseGreen 1.8s infinite;
}

@keyframes pulseGreen {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

.name-premium {
    font-size: 1.9rem;
    font-weight: 700;
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 0.25rem;
    letter-spacing: -0.3px;
    background: linear-gradient(120deg, #ffffff, #c084fc, #60a5fa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.handle {
    text-align: center;
    color: #a0aec0;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    letter-spacing: -0.2px;
}

.handle i {
    color: #e91e8c;
    font-size: 0.7rem;
}

/* Premium Tags */
.tag-container {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin: 1rem 0 1.5rem;
}

.tag-premium {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(233, 30, 140, 0.2);
    padding: 0.35rem 1rem;
    border-radius: 40px;
    font-size: 0.7rem;
    font-weight: 500;
    transition: all 0.2s;
    color: rgba(255, 255, 255, 0.8);
}

.tag-premium:hover {
    border-color: #e91e8c;
    background: rgba(233, 30, 140, 0.1);
    transform: translateY(-2px);
}

/* Bio - elegant */
.bio-elegant {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 2rem;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

/* Stats - Minimal & Clean */
.stats-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.2rem;
    flex-wrap: wrap;
}

.stat-block {
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(8px);
    padding: 0.6rem 1.2rem;
    border-radius: 48px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.2s;
}

.stat-block:hover {
    background: rgba(233, 30, 140, 0.06);
    border-color: rgba(233, 30, 140, 0.3);
}

.stat-value {
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #e91e8c, #ffaa44);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat-caption {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.45);
    margin-left: 0.3rem;
    font-weight: 500;
}

/* Link Cards - Modern Elevated */
.link-card-modern {
    background: rgba(18, 22, 40, 0.55);
    backdrop-filter: blur(16px);
    border-radius: 1.25rem;
    padding: 0.9rem 1.25rem;
    margin-bottom: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    cursor: pointer;
    text-decoration: none;
}

.link-card-modern:hover {
    transform: translateY(-3px);
    background: rgba(30, 35, 60, 0.75);
    border-color: rgba(233, 30, 140, 0.5);
    box-shadow: 0 12px 28px -8px rgba(0, 0, 0, 0.4);
}

.link-left-modern {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.link-icon-modern {
    width: 46px;
    height: 46px;
    background: linear-gradient(145deg, rgba(233, 30, 140, 0.12), rgba(0, 200, 255, 0.05));
    border-radius: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    transition: all 0.2s;
}

.link-card-modern:hover .link-icon-modern {
    background: #e91e8c;
    color: white;
    transform: scale(1.02);
}

.link-info-modern h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 2px;
    color: #f0f3ff;
}

.link-info-modern p {
    font-size: 0.7rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.45);
}

.link-action {
    background: rgba(255, 255, 255, 0.05);
    width: 32px;
    height: 32px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
    color: #9ca3af;
}

.link-card-modern:hover .link-action {
    background: #e91e8c;
    color: white;
    transform: translateX(3px);
}

/* Email special card */
.email-card {
    background: linear-gradient(115deg, rgba(233, 30, 140, 0.08), rgba(0, 200, 255, 0.04));
    border: 1px solid rgba(233, 30, 140, 0.3);
}

/* Divider minimal */
.divider-modern {
    margin: 2rem 0 1.2rem;
    text-align: center;
    position: relative;
}

.divider-modern span {
    background: transparent;
    padding: 0 1rem;
    font-size: 0.7rem;
    font-weight: 500;
    color: #a78bfa;
    letter-spacing: 2px;
}

.divider-modern::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e91e8c, #00c8ff, #e91e8c, transparent);
}

/* Social row premium */
.social-links-premium {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin: 1.5rem 0 1rem;
}

.social-icon-premium {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    font-size: 1.2rem;
    color: #cbd5e1;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-icon-premium:hover {
    background: #e91e8c;
    color: white;
    transform: translateY(-4px);
    border-color: transparent;
}

/* Floating Toast */
.custom-toast {
    position: fixed;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: rgba(20, 25, 45, 0.95);
    backdrop-filter: blur(20px);
    padding: 10px 24px;
    border-radius: 60px;
    font-size: 0.85rem;
    font-weight: 500;
    z-index: 10000;
    border: 1px solid rgba(233, 30, 140, 0.5);
    color: #f0f0ff;
    box-shadow: 0 12px 24px -12px rgba(0, 0, 0, 0.5);
    animation: toastFade 2s ease forwards;
}

@keyframes toastFade {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }

    15% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    85% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(-10px);
        visibility: hidden;
    }
}

/* Responsive refinements */
@media (max-width: 640px) {
    .linkpage-wrapper {
        padding: 1.8rem 1rem;
    }

    .name-premium {
        font-size: 1.6rem;
    }

    .stats-row {
        gap: 1rem;
    }

    .stat-block {
        padding: 0.4rem 1rem;
    }

    .link-icon-modern {
        width: 42px;
        height: 42px;
        font-size: 1.2rem;
    }

    .link-info-modern h4 {
        font-size: 0.9rem;
    }

    .bio-elegant {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .stats-row {
        gap: 0.8rem;
    }

    .stat-value {
        font-size: 1.1rem;
    }

    .tag-premium {
        padding: 0.25rem 0.8rem;
        font-size: 0.65rem;
    }

    .link-card-modern {
        padding: 0.7rem 1rem;
    }
}



/* ============================================
   EDUCATION SECTION - SIMPLE CLEAN CARDS
   ============================================ */

.ed-section {
    position: relative;
    background: #080808;
    padding: 80px 0;
    overflow-x: hidden;
}

.ed-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Section Header */
.ed-header {
    text-align: center;
    margin-bottom: 50px;
}

.ed-badge {
    display: inline-block;
    background: rgba(233, 30, 140, 0.1);
    border: 1px solid rgba(233, 30, 140, 0.3);
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #e91e8c;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.ed-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 16px;
    color: #f0f0f0;
}

.ed-gradient {
    background: linear-gradient(135deg, #e91e8c, #ff6b00, #00c8ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.ed-divider {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #e91e8c, #ff6b00, #00c8ff);
    margin: 0 auto 16px;
    border-radius: 3px;
}

.ed-subtitle {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

/* Grid */
.ed-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Card */
.ed-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.ed-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.ed-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(233, 30, 140, 0.2);
    transform: translateX(5px);
}

.ed-card-inner {
    padding: 24px;
}

/* Period Badge */
.ed-period {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

/* Degree */
.ed-degree {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 4px 0;
}

.ed-field {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 16px 0;
}

/* Info Rows */
.ed-info-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
}

.ed-info-row svg {
    flex-shrink: 0;
    opacity: 0.7;
}

/* Grade Row */
.ed-grade-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.ed-grade-row svg {
    flex-shrink: 0;
    color: #e91e8c;
}

.ed-grade-row strong {
    color: #fff;
    font-weight: 600;
}

/* ========== RESPONSIVE ========== */

@media (max-width: 768px) {
    .ed-section {
        padding: 60px 0;
    }

    .ed-container {
        padding: 0 20px;
    }

    .ed-card-inner {
        padding: 20px;
    }

    .ed-degree {
        font-size: 1.1rem;
    }

    .ed-field {
        font-size: 0.8rem;
    }

    .ed-info-row {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .ed-section {
        padding: 50px 0;
    }

    .ed-container {
        padding: 0 16px;
    }

    .ed-card-inner {
        padding: 16px;
    }

    .ed-degree {
        font-size: 1rem;
    }

    .ed-period {
        font-size: 0.65rem;
        padding: 3px 10px;
    }

    .ed-info-row {
        font-size: 0.75rem;
        gap: 8px;
    }

    .ed-grade-row {
        font-size: 0.75rem;
    }
}

@media (max-width: 380px) {
    .ed-card-inner {
        padding: 14px;
    }

    .ed-degree {
        font-size: 0.95rem;
    }
}


/* ============================================
   EXPERIENCE SECTION - CENTER LINE TIMELINE
   ============================================ */

.ex-section {
    position: relative;
    background: linear-gradient(180deg, #080808 0%, #0a0a0a 100%);
    padding: 80px 0 100px;
    overflow-x: hidden;
}

.ex-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.ex-header {
    text-align: center;
    margin-bottom: 60px;
}

.ex-badge {
    display: inline-block;
    background: rgba(233, 30, 140, 0.1);
    border: 1px solid rgba(233, 30, 140, 0.3);
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #e91e8c;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.ex-title {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 16px;
    color: #f0f0f0;
}

.ex-gradient {
    background: linear-gradient(135deg, #e91e8c, #ff6b00, #00c8ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.ex-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #e91e8c, #ff6b00, #00c8ff);
    margin: 0 auto 20px;
    border-radius: 3px;
}

.ex-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Timeline Container */
.ex-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Center Line with Scroll Fill */
.ex-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    z-index: 1;
}

.ex-line-fill {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 0%;
    background: linear-gradient(180deg, #e91e8c, #ff6b00, #00c8ff);
    border-radius: 2px;
    z-index: 2;
    transition: height 0.3s ease-out;
}

/* Timeline Items */
.ex-item {
    position: relative;
    margin-bottom: 60px;
    display: flex;
    align-items: flex-start;
}

.ex-item.ex-left {
    flex-direction: row;
}

.ex-item.ex-right {
    flex-direction: row-reverse;
}

/* Dot Wrapper */
.ex-dot-wrapper {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    display: flex;
    justify-content: center;
    z-index: 5;
}

.ex-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid #080808;
    transition: all 0.3s;
    cursor: pointer;
}

.ex-dot:hover {
    transform: scale(1.3);
    box-shadow: 0 0 0 4px rgba(233, 30, 140, 0.2);
}

/* Card Wrapper */
.ex-card-wrapper {
    width: calc(50% - 40px);
}

.ex-item.ex-left .ex-card-wrapper {
    margin-right: auto;
    padding-right: 30px;
}

.ex-item.ex-right .ex-card-wrapper {
    margin-left: auto;
    padding-left: 30px;
}

/* Card */
.ex-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 3px solid;
    border-radius: 20px;
    padding: 24px;
    transition: all 0.4s;
    opacity: 0;
    transform: translateY(30px);
    animation: exCardAppear 0.6s forwards;
    animation-delay: calc(0.1s * var(--i, 0));
}

@keyframes exCardAppear {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ex-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
}

/* Card Content */
.ex-card-header {
    margin-bottom: 16px;
}

.ex-period {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 12px;
}

.ex-date {
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
}

.ex-type {
    font-size: 0.65rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 100px;
}

.ex-company {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 6px;
}

.ex-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
}

.ex-location i {
    color: #e91e8c;
}

.ex-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.ex-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 0.85rem;
    margin-bottom: 16px;
}

/* Highlights */
.ex-highlights {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.ex-highlight {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.65);
}

.ex-highlight i {
    font-size: 0.7rem;
    color: #e91e8c;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Tech Stack */
.ex-tech-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.ex-tech-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.5px;
}

.ex-tech-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ex-tech {
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.2s;
}

.ex-tech:hover {
    background: rgba(233, 30, 140, 0.2);
    color: #e91e8c;
}

/* ========== RESPONSIVE ========== */

/* Desktop */
@media (min-width: 769px) {
    .ex-item {
        margin-bottom: 70px;
    }
}

/* Tablet & Mobile */
@media (max-width: 768px) {

    .ex-timeline::before,
    .ex-line-fill {
        left: 20px;
        transform: none;
    }

    .ex-dot-wrapper {
        left: 20px;
        transform: none;
        width: 30px;
    }

    .ex-item.ex-left,
    .ex-item.ex-right {
        flex-direction: column;
        align-items: flex-start;
    }

    .ex-card-wrapper {
        width: calc(100% - 50px);
        margin-left: 50px !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .ex-card {
        padding: 20px;
    }

    .ex-period {
        flex-direction: column;
        align-items: flex-start;
    }

    .ex-title {
        font-size: 1rem;
    }

    .ex-description {
        font-size: 0.8rem;
    }

    .ex-highlight {
        font-size: 0.75rem;
    }

    .ex-section {
        padding: 60px 0 80px;
    }

    .ex-header {
        margin-bottom: 40px;
    }
}

@media (max-width: 576px) {
    .ex-container {
        padding: 0 16px;
    }

    .ex-card {
        padding: 16px;
    }

    .ex-card-wrapper {
        width: calc(100% - 40px);
        margin-left: 40px !important;
    }

    .ex-timeline::before,
    .ex-line-fill {
        left: 12px;
    }

    .ex-dot-wrapper {
        left: 12px;
    }

    .ex-tech-list {
        gap: 6px;
    }

    .ex-tech {
        font-size: 0.6rem;
        padding: 3px 8px;
    }

    .ex-title {
        font-size: 0.95rem;
    }
}

/* Scroll Reveal for Sections */
.ex-header {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.ex-header.revealed {
    opacity: 1;
    transform: translateY(0);
}


/* ========== HERO SECTION - PREMIUM STYLES ========== */
.hero-wrapper {
    position: relative;
    min-height: 100vh;
    height: auto;
    background: #020202;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow-x: hidden;
    padding: 100px 0 60px !important;
}

.hero-action-dock {
    position: relative;
    z-index: 100;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: -30px;
}

.avatar-3d-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.hero-bg-layer {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.glass-morphism {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    padding: 10px;
    display: inline-flex;
    gap: 12px;
}

.nebula-glow {
    position: absolute;
    width: 60vw;
    height: 60vw;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.12;
    pointer-events: none;
}

.nebula-glow.blue {
    top: -10%;
    left: -10%;
    background: #0066ff;
}

.nebula-glow.orange {
    bottom: -10%;
    right: -10%;
    background: #ff6600;
}

.text-gradient {
    background: linear-gradient(135deg, #fff 0%, #888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-glow {
    text-shadow: 0 0 30px rgba(255, 107, 0, 0.4);
}

.parallax-card {
    position: relative;
    padding: 2.5rem 1.5rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(15px);
    transition: transform 0.2s ease-out;
    transform-style: preserve-3d;
    cursor: pointer;
    z-index: 30;
}

.parallax-card:hover {
    border-color: rgba(255, 107, 0, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

.modern-action-pill {
    display: inline-flex;
    gap: 8px;
    padding: 8px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary-orange {
    background: #ff6600;
    color: white !important;
    padding: 14px 30px;
    border-radius: 100px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 20px rgba(255, 102, 0, 0.3);
    transition: 0.3s;
}

.btn-secondary-glass {
    background: rgba(255, 255, 255, 0.1);
    color: white !important;
    padding: 14px 30px;
    border-radius: 100px;
    font-weight: 500;
}

.dynamic-aura {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: -1;
    pointer-events: none;
}

.hero-img-main {
    max-width: 100%;
    object-fit: contain;
    z-index: 11;
    position: relative;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.9));
    transition: filter 0.5s ease;
    transform-origin: center;
}

.hero-img-main:hover {
    filter: drop-shadow(0 0 20px rgba(204, 96, 19, 0.5)) sepia(30%) hue-rotate(-15deg) saturate(150%);
}

.badge-mini {
    font-size: 0.7rem;
    padding: 4px 10px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-left: 4px;
    color: #aaa;
}

/* Custom Cursor */


.cursor-active {
    transform: translate(-50%, -50%) scale(1.5);
    background-color: rgba(255, 107, 0, 0.1) !important;
    border: 1px solid #ff6b00 !important;
}

/* ========== BOTH-WAYS SCROLL ANIMATION ========== */
.hero-main-reveal,
.hero-left-reveal,
.hero-center-reveal,
.hero-right-reveal {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1),
        transform 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.hero-main-reveal {
    transform: translateY(-40px);
}

.hero-left-reveal {
    transform: translateX(-50px);
}

.hero-center-reveal {
    transform: scale(0.92);
}

.hero-right-reveal {
    transform: translateX(50px);
}

.hero-main-reveal.revealed,
.hero-left-reveal.revealed,
.hero-center-reveal.revealed,
.hero-right-reveal.revealed {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-wrapper {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }

    .main-title {
        font-size: clamp(2.2rem, 10vw, 3rem);
        line-height: 1.1;
        margin-top: 1.5rem !important;
    }

    .hero-img-main {
        max-height: 350px !important;
        width: 80% !important;
        margin-top: 20px;
    }

    .modern-action-pill {
        padding: 6px;
        gap: 8px;
    }

    .btn-magnetic {
        padding: 10px 20px !important;
        font-size: 0.85rem;
    }

    .hero-left-reveal,
    .hero-right-reveal {
        transform: translateY(40px) translateX(0);
    }
}

@media (max-width: 991px) {
    .main-title {
        font-size: 3rem;
    }

    .hero-img-main {
        max-height: 400px;
    }
}


/* ============================================
   WORK PAGE STYLES
   ============================================ */

/* Hero Section */
.work-hero {
    padding: 120px 0 60px;
    background: linear-gradient(180deg, #080808 0%, #0a0a0a 100%);
    text-align: center;
}

.work-hero-badge {
    display: inline-block;
    background: rgba(233, 30, 140, 0.1);
    border: 1px solid rgba(233, 30, 140, 0.3);
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #e91e8c;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.work-hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: #f0f0f0;
}

.gradient-text {
    background: linear-gradient(135deg, #e91e8c, #ff6b00, #00c8ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.work-hero-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #e91e8c, #ff6b00, #00c8ff);
    margin: 0 auto 20px;
    border-radius: 3px;
}

.work-hero-subtitle {
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    line-height: 1.6;
}

/* Projects Section */
.projects-section {
    padding: 60px 0 100px;
    background: #080808;
}

/* Filters */
.projects-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 50px;
}

.filter-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 24px;
    border-radius: 100px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover, .filter-btn.active {
    background: linear-gradient(135deg, #e91e8c, #ff6b00);
    border-color: transparent;
    color: white;
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 30px;
}

/* Project Card */
.project-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s forwards;
    animation-delay: calc(var(--i, 0) * 0.1s);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.project-card:hover {
    transform: translateY(-5px);
    border-color: rgba(233, 30, 140, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.project-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-preview {
    padding: 10px 24px;
    background: #e91e8c;
    color: white;
    border-radius: 100px;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.project-preview:hover {
    transform: scale(1.05);
    color: white;
}

.project-content {
    padding: 20px;
}

.project-category {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.project-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.project-description {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    margin-bottom: 15px;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.project-tech-tag {
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
}

.project-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #e91e8c;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: gap 0.3s;
}

.project-view-btn:hover {
    gap: 12px;
    color: #ff6b00;
}

/* Modal */
.project-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.project-modal.active {
    display: flex;
    opacity: 1;
}

.project-modal-content {
    position: relative;
    max-width: 900px;
    width: 90%;
    max-height: 85vh;
    background: rgba(15, 15, 15, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    overflow-y: auto;
    padding: 32px;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.modal-close:hover {
    background: #e91e8c;
    transform: scale(1.05);
}

.modal-body {
    color: #fff;
}

/* Modal Content Styles */
.modal-project-image {
    width: 100%;
    height: 300px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 24px;
}

.modal-project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-project-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.modal-project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.modal-meta-item i {
    color: #e91e8c;
}

.modal-section {
    margin-bottom: 24px;
}

.modal-section h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #fff;
}

.modal-section p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.modal-tech-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.modal-tech-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.modal-features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    list-style: none;
    padding: 0;
}

.modal-features-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.modal-features-list li i {
    color: #e91e8c;
}

.modal-buttons {
    display: flex;
    gap: 16px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.modal-btn-live {
    background: linear-gradient(135deg, #e91e8c, #ff6b00);
    color: white;
}

.modal-btn-live:hover {
    transform: translateY(-2px);
    gap: 12px;
    box-shadow: 0 5px 15px rgba(233, 30, 140, 0.3);
}

.modal-btn-code {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

.modal-btn-code:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .work-hero {
        padding: 100px 0 40px;
    }
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .modal-features-list {
        grid-template-columns: 1fr;
    }
    .modal-project-content {
        padding: 20px;
    }
    .modal-project-title {
        font-size: 1.4rem;
    }
    .projects-filters {
        gap: 8px;
    }
    .filter-btn {
        padding: 6px 16px;
        font-size: 0.75rem;
    }
}

@media (max-width: 576px) {
    .projects-section {
        padding: 40px 0 60px;
    }
    .modal-project-meta {
        flex-direction: column;
        gap: 10px;
    }
    .modal-buttons {
        flex-direction: column;
    }
    .modal-btn {
        justify-content: center;
    }
}


/* ============================================
   GALLERY PAGE STYLES
   ============================================ */

/* Hero Section */
.gallery-hero {
    padding: 120px 0 60px;
    background: linear-gradient(180deg, #080808 0%, #0a0a0a 100%);
    text-align: center;
}

.gallery-hero-badge {
    display: inline-block;
    background: rgba(233, 30, 140, 0.1);
    border: 1px solid rgba(233, 30, 140, 0.3);
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #e91e8c;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.gallery-hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: #f0f0f0;
}

.gradient-text {
    background: linear-gradient(135deg, #e91e8c, #ff6b00, #00c8ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.gallery-hero-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #e91e8c, #ff6b00, #00c8ff);
    margin: 0 auto 20px;
    border-radius: 3px;
}

.gallery-hero-subtitle {
    max-width: 600px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    line-height: 1.6;
}

/* Gallery Main */
.gallery-main {
    padding: 60px 0;
    background: #080808;
}

/* Filters */
.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.filter-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 20px;
    border-radius: 100px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover, .filter-btn.active {
    background: linear-gradient(135deg, #e91e8c, #ff6b00);
    border-color: transparent;
    color: white;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

/* Gallery Item */
.gallery-item {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s forwards;
    animation-delay: calc(var(--i, 0) * 0.05s);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gallery-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
}

.gallery-card:hover {
    transform: translateY(-5px);
    border-color: rgba(233, 30, 140, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.gallery-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-card:hover .gallery-image img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2rem;
    color: white;
}

.gallery-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #e91e8c, #ff6b00);
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 0.65rem;
    font-weight: 600;
    color: white;
}

.gallery-info {
    padding: 16px;
}

.gallery-info h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
}

.gallery-info p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    margin-bottom: 10px;
}

.gallery-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.5);
}

.gallery-type {
    text-transform: capitalize;
    background: rgba(255, 255, 255, 0.05);
    padding: 2px 8px;
    border-radius: 100px;
}

/* Load More */
.load-more-container {
    text-align: center;
    margin-top: 50px;
}

.load-more-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 12px 32px;
    border-radius: 100px;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.load-more-btn:hover {
    background: #e91e8c;
    border-color: #e91e8c;
    color: white;
}

/* Video Section */
.video-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #080808 0%, #0a0a0a 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.video-header {
    text-align: center;
    margin-bottom: 50px;
}

.video-badge {
    display: inline-block;
    background: rgba(233, 30, 140, 0.1);
    border: 1px solid rgba(233, 30, 140, 0.3);
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #e91e8c;
    margin-bottom: 16px;
}

.video-header h2 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 16px;
    color: #f0f0f0;
}

.video-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #e91e8c, #ff6b00, #00c8ff);
    margin: 0 auto 20px;
    border-radius: 3px;
}

.video-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.video-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s;
}

.video-card:hover {
    transform: translateY(-5px);
    border-color: rgba(233, 30, 140, 0.2);
}

.video-thumb {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(233, 30, 140, 0.9);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: #e91e8c;
}

.video-info {
    padding: 20px;
}

.video-info h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.video-info p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    margin-bottom: 12px;
}

.video-meta {
    display: flex;
    gap: 15px;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
}

.video-meta i {
    margin-right: 4px;
}

/* Lightbox */
.lightbox-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox-modal.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 12px;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

/* Video Modal */
.video-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
}

.video-modal-content {
    position: relative;
    width: 80%;
    max-width: 900px;
    aspect-ratio: 16/9;
}

.video-modal-content iframe {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.video-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
    .gallery-hero {
        padding: 100px 0 40px;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .video-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .video-modal-content {
        width: 95%;
    }
    .gallery-filters {
        gap: 8px;
    }
    .filter-btn {
        padding: 6px 14px;
        font-size: 0.7rem;
    }
}

@media (max-width: 576px) {
    .gallery-image {
        height: 180px;
    }
    .video-thumb {
        height: 180px;
    }
    .play-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}




/* ============================================
   AWARDS PAGE STYLES
   ============================================ */

/* Hero Section */
.awards-hero {
    padding: 120px 0 60px;
    background: linear-gradient(180deg, #080808 0%, #0a0a0a 100%);
    text-align: center;
}

.awards-hero-badge {
    display: inline-block;
    background: rgba(233, 30, 140, 0.1);
    border: 1px solid rgba(233, 30, 140, 0.3);
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #e91e8c;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.awards-hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: #f0f0f0;
}

.gradient-text {
    background: linear-gradient(135deg, #e91e8c, #ff6b00, #00c8ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.awards-hero-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #e91e8c, #ff6b00, #00c8ff);
    margin: 0 auto 20px;
    border-radius: 3px;
}

.awards-hero-subtitle {
    max-width: 600px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    line-height: 1.6;
}

/* Awards Section */
.awards-section {
    padding: 60px 0 80px;
    background: #080808;
}

/* Filter */
.awards-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 50px;
}

.filter-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 24px;
    border-radius: 100px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover, .filter-btn.active {
    background: linear-gradient(135deg, #e91e8c, #ff6b00);
    border-color: transparent;
    color: white;
}

/* Awards Grid */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 30px;
}

/* Award Card */
.award-card {
    display: flex;
    gap: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 24px;
    transition: all 0.3s;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s forwards;
    animation-delay: calc(var(--i, 0) * 0.1s);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.award-card:hover {
    transform: translateY(-5px);
    border-color: rgba(233, 30, 140, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.award-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(233, 30, 140, 0.1);
    border-radius: 16px;
    font-size: 1.8rem;
    transition: all 0.3s;
}

.award-card:hover .award-icon {
    transform: scale(1.05);
}

.award-content {
    flex: 1;
}

.award-year {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.award-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.award-organization {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 10px;
}

.award-description {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    margin-bottom: 12px;
}

.award-category {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 0.65rem;
    font-weight: 600;
}

/* Stats Section */
.stats-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #080808 0%, #0a0a0a 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.stat-card {
    text-align: center;
    padding: 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-3px);
    border-color: rgba(233, 30, 140, 0.2);
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff, #e91e8c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Certifications Section */
.certifications-section {
    padding: 80px 0;
    background: #080808;
}

.cert-header {
    text-align: center;
    margin-bottom: 50px;
}

.cert-badge {
    display: inline-block;
    background: rgba(233, 30, 140, 0.1);
    border: 1px solid rgba(233, 30, 140, 0.3);
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #e91e8c;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.cert-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 16px;
    color: #f0f0f0;
}

.cert-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #e91e8c, #ff6b00, #00c8ff);
    margin: 0 auto 20px;
    border-radius: 3px;
}

.cert-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.certs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
}

.cert-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px;
    transition: all 0.3s;
    opacity: 0;
    transform: translateY(20px);
}

.cert-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.cert-card:hover {
    transform: translateX(5px);
    border-color: rgba(233, 30, 140, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.cert-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(233, 30, 140, 0.1);
    border-radius: 12px;
    font-size: 1.5rem;
}

.cert-info {
    flex: 1;
}

.cert-info h3 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.cert-info p {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
}

.cert-link {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s;
}

.cert-link:hover {
    background: #e91e8c;
    color: white;
    transform: scale(1.05);
}

/* Scroll Reveal */
.scroll-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .certs-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .awards-hero {
        padding: 100px 0 40px;
    }
    .awards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .award-card {
        padding: 20px;
    }
    .award-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    .award-title {
        font-size: 1rem;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .stat-card {
        padding: 16px;
    }
    .stat-number {
        font-size: 1.5rem;
    }
    .cert-card {
        padding: 16px;
    }
}

@media (max-width: 576px) {
    .awards-filter {
        gap: 8px;
    }
    .filter-btn {
        padding: 6px 14px;
        font-size: 0.7rem;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .cert-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    .cert-info h3 {
        font-size: 0.8rem;
    }
}
