         :root {
            --navy: #123c70;
            --navy-dark: #0a1f3d;
            --navy-light: #1a4a8a;
            --green: #59c047;
            --green-light: #7dd96d;
            --green-glow: rgba(89, 192, 71, 0.5);
            --white: #ffffff;
            --glass-bg: rgba(18, 60, 112, 0.75);
            --glass-border: rgba(255, 255, 255, 0.18);
            --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            --black: #000000;
            --dark: #0a0a0a;
            --gray-900: #111111;
            --gray-800: #1a1a1a;
            --gray-400: #a3a3a3;
            --gray-200: #e0e0e0;
            --white: #ffffff;
            --ease-premium: cubic-bezier(0.4, 0, 0.2, 1);
            --transition-smooth: all 0.6s var(--ease-premium);
             --neon-blue: #00f0ff;
            --neon-purple: #a855f7;
            --neon-pink: #f472b6;
            --gold-primary: #d4af37;
            --gold-light: #f0d060;
            --gold-dark: #b8962e;
            --platinum: #e5e4e2;
            --dark-bg: #0a0a0f;
            --card-bg: rgba(15, 15, 25, 0.85);
            --glass-border: rgba(255, 255, 255, 0.08);
            --text-primary: #ffffff;
            --text-secondary: rgba(255, 255, 255, 0.7);
            --text-muted: rgba(255, 255, 255, 0.4);
             --primary-dark: #1a1a2e;
            --text-primary: #2d2d2d;
            --text-secondary: #666666;
            --text-light: #999999;
            --bg-light: #fafafa;
            --white: #ffffff;
            --border-light: #e8e8e8;
            --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
            --shadow-md: 0 8px 30px rgba(0,0,0,0.06);
            --shadow-lg: 0 20px 60px rgba(0,0,0,0.08);
            --shadow-hover: 0 25px 70px rgba(0,0,0,0.12);
            
            /* Category Colors */
            --art-color: #e91e63;
            --science-color: #2196f3;
            --fashion-color: #9c27b0;
            --film-color: #ff5722;
            --society-color: #4caf50;
            --writing-color: #ff9800;
        }
  
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
a{

  text-decoration: none !important;
}
        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            min-height: 200vh;
        }

        /* Animated Background Mesh */
        .mesh-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: 
                radial-gradient(at 0% 0%, rgba(89, 192, 71, 0.15) 0px, transparent 50%),
                radial-gradient(at 100% 0%, rgba(18, 60, 112, 0.2) 0px, transparent 50%),
                radial-gradient(at 100% 100%, rgba(89, 192, 71, 0.1) 0px, transparent 50%),
                radial-gradient(at 0% 100%, rgba(18, 60, 112, 0.15) 0px, transparent 50%);
            filter: blur(60px);
            animation: meshMove 20s ease-in-out infinite;
        }

        @keyframes meshMove {
            0%, 100% { transform: translate(0, 0) scale(1); }
            33% { transform: translate(30px, -30px) scale(1.1); }
            66% { transform: translate(-20px, 20px) scale(0.9); }
        }

        /* Premium Navbar Container */
        .navbar-premium {
            background: var(--white);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            border-bottom: 1px solid var(--glass-border);
            padding: 0;
            transition: var(--transition);
            box-shadow: 
                0 4px 30px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
            position: sticky;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

        .navbar-premium.scrolled {
            padding: 0;
            background:var(--white);
            box-shadow: 
                0 10px 40px rgba(0, 0, 0, 0.2),
                0 0 0 1px rgba(255, 255, 255, 0.05);
        }

        .navbar-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .navbar-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 80px;
            transition: var(--transition);
        }

        .navbar-premium.scrolled .navbar-row {
            min-height: 70px;
        }

        /* Logo with Gradient */
        .brand-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            transition: var(--transition);
        }

        .brand-logo:hover {
            transform: translateY(-2px);
        }

        .logo-icon {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 
                0 4px 15px var(--green-glow),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
            transition: var(--transition);
        }

        .brand-logo:hover .logo-icon {
            box-shadow: 
                0 6px 25px var(--green-glow),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
            transform: rotate(-5deg);
        }

        .logo-icon i {
            color: var(--navy-dark);
            font-size: 1.5rem;
            font-weight: 700;
        }

        .logo-text {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.75rem;
            font-weight: 700;
            background: linear-gradient(135deg, #ffffff 0%, #a5b4fc 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
        }

        .logo-text span {
            background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Navigation Links */
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 0.75rem 1.25rem;
            color: var(--navy-dark);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            border-radius: 10px;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .nav-link::before {
            content: '';
            position: absolute;
            inset: 0;
            /* color:var(--black) ; */
            background: linear-gradient(135deg, rgba(89, 192, 71, 0.1) 0%, rgba(89, 192, 71, 0.05) 100%);
            opacity: 0;
            transition: var(--transition);
            border-radius: 10px;
        }

        .nav-link:hover::before {
            opacity: 1;
        }

        .nav-link:hover {
            color: var(--green) !important;
            transform: translateY(-2px);
        }

        .nav-link.active {
            color: var(--green-light);
            background: rgba(89, 192, 71, 0.1);
        }

        .nav-link i.fa-chevron-down {
            font-size: 0.7rem;
            transition: var(--transition);
            opacity: 0.7;
        }

        .nav-item:hover .nav-link i.fa-chevron-down {
            transform: rotate(180deg);
            opacity: 1;
            color: var(--green);
        }

        /* Mega Menu Dropdown */
        .mega-menu {
            position: absolute;
            top: calc(100% + 15px);
            left: 50%;
            transform: translateX(-50%) translateY(10px);
            background: rgba(26, 42, 70, 0.98);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            padding: 2rem;
            min-width: 600px;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            box-shadow: 
                0 25px 50px -12px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(255, 255, 255, 0.05);
            z-index: 1001;
        }

        .nav-item:hover .mega-menu {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }

        .mega-menu::before {
            content: '';
            position: absolute;
            top: -8px;
            left: 50%;
            transform: translateX(-50%) rotate(45deg);
            width: 16px;
            height: 16px;
            background: rgba(26, 42, 70, 0.98);
            border-left: 1px solid var(--glass-border);
            border-top: 1px solid var(--glass-border);
        }

        .mega-menu-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }

        .mega-menu-item {
            display: flex;
            gap: 1rem;
            padding: 1rem;
            border-radius: 12px;
            transition: var(--transition);
            cursor: pointer;
            text-decoration: none;
        }

        .mega-menu-item:hover {
            background: rgba(89, 192, 71, 0.1);
            transform: translateX(5px);
        }

        .mega-menu-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, rgba(89, 192, 71, 0.2) 0%, rgba(89, 192, 71, 0.05) 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            border: 1px solid rgba(89, 192, 71, 0.2);
        }

        .mega-menu-icon i {
            font-size: 1.5rem;
            color: var(--green);
        }

        .mega-menu-content h4 {
            color: var(--white);
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 0.25rem;
        }

        .mega-menu-content p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.85rem;
            margin: 0;
            line-height: 1.4;
        }

        /* Right Actions */
        .nav-actions {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .search-box {
            position: relative;
            display: flex;
            align-items: center;
        }

        .search-input {
            width: 0;
            padding: 0.6rem 1rem;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50px;
            color: var(--white);
            font-size: 0.9rem;
            opacity: 0;
            transition: var(--transition);
            outline: none;
        }

        .search-box:hover .search-input,
        .search-input:focus {
            width: 220px;
            opacity: 1;
            padding-right: 2.5rem;
        }

        .search-btn {
            position: absolute;
            right: 12px;
            background: none;
            border: none;
            color: rgba(255, 255, 255, 0.6);
            cursor: pointer;
            transition: var(--transition);
        }

        .search-box:hover .search-btn {
            color: var(--green);
        }

        .icon-btn {
            width: 42px;
            height: 42px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.8);
            cursor: pointer;
            transition: var(--transition);
            position: relative;
            text-decoration: none;
        }

        .icon-btn:hover {
            background: rgba(89, 192, 71, 0.15);
            border-color: rgba(89, 192, 71, 0.3);
            color: var(--green-light);
            transform: translateY(-2px);
        }

        .badge-notification {
            position: absolute;
            top: -4px;
            right: -4px;
            width: 18px;
            height: 18px;
            background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
            border-radius: 50%;
            font-size: 0.7rem;
            font-weight: 700;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid var(--navy);
        }

        /* Premium CTA Buttons */
        .btn-group {
            display: flex;
            gap: 0.75rem;
            align-items: center;
        }

        .btn-ghost {
            padding: 0.7rem 1.5rem;
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 10px;
            color: var(--white);
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
        }

        .btn-ghost:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.3);
            transform: translateY(-2px);
        }

        .btn-primary-premium {
            padding: 0.75rem 1.75rem;
            background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
            border: none;
            border-radius: 10px;
            color: var(--navy-dark);
            font-weight: 700;
            font-size: 0.9rem;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            box-shadow: 
                0 4px 15px var(--green-glow),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
            position: relative;
            overflow: hidden;
        }

        .btn-primary-premium::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: 0.6s;
        }

        .btn-primary-premium:hover::before {
            left: 100%;
        }

        .btn-primary-premium:hover {
            transform: translateY(-3px);
            box-shadow: 
                0 8px 25px var(--green-glow),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
        }
  .logo img {
  max-width: 100%;
  height: auto;
  display: block;
}
.logo-2 img {
  width: 200px; /* default desktop */
  height: auto;
}
.logo-2 img {
  max-width: 100%;
  height: auto;
  display: block;
}
.logo-2 img {
  width: 200px; /* default desktop */
  height: auto;
}
.logo img {
  width: 100%;
  max-width:150px;
  height: auto;
  object-fit: contain;
}
/* Tablet */
@media (max-width: 992px) {
  .logo img {
    width: 140px;
  }
  .logo-2 img {
    width: 160px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .logo img {
    width: 110px;
  }
  .logo-2 img {
    width: 170px;
  }
}





/* .logo-sticky {
    background-color: #fff;
  position: absolute;
  top: 10px; 
  left: 0;
  z-index: 1000;
} */
        /* Mobile Toggle */
        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            z-index: 1002;
        }

        .mobile-toggle span {
            width: 25px;
            height: 2px;
            background: var(--navy-dark);
            transition: var(--transition);
            border-radius: 2px;
        }

        .mobile-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
            background: var(--green);
        }

        .mobile-toggle.active span:nth-child(2) {
            opacity: 0;
            transform: translateX(-10px);
        }

        .mobile-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
            background: var(--green);
        }

        /* Mobile Menu Overlay */
        .mobile-menu-overlay {
            position: fixed;
            inset: 0;
            background: rgba(10, 31, 61, 0.98);
            backdrop-filter: blur(20px);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            display: flex;
            flex-direction: column;
        }

        .mobile-menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Mobile Menu Header with Close Button */
        .mobile-menu-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1.5rem 2rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .mobile-menu-logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .mobile-menu-logo .logo-icon {
            width: 40px;
            height: 40px;
        }

        .mobile-menu-logo .logo-text {
            font-size: 1.5rem;
        }

        .mobile-close-btn {
            width: 44px;
            height: 44px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            cursor: pointer;
            transition: var(--transition);
            font-size: 1.25rem;
        }

        .mobile-close-btn:hover {
            background: rgba(239, 68, 68, 0.2);
            border-color: rgba(239, 68, 68, 0.4);
            color: #ef4444;
            transform: rotate(90deg);
        }

        /* Mobile Menu Content */
        .mobile-menu-content {
            flex: 1;
            overflow-y: auto;
            padding: 2rem;
        }

        .mobile-nav-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .mobile-nav-item {
            margin-bottom: 0.5rem;
            opacity: 0;
            transform: translateX(-20px);
            transition: var(--transition);
        }

        .mobile-menu-overlay.active .mobile-nav-item {
            opacity: 1;
            transform: translateX(0);
        }

        .mobile-menu-overlay.active .mobile-nav-item:nth-child(1) { transition-delay: 0.1s; }
        .mobile-menu-overlay.active .mobile-nav-item:nth-child(2) { transition-delay: 0.15s; }
        .mobile-menu-overlay.active .mobile-nav-item:nth-child(3) { transition-delay: 0.2s; }
        .mobile-menu-overlay.active .mobile-nav-item:nth-child(4) { transition-delay: 0.25s; }
        .mobile-menu-overlay.active .mobile-nav-item:nth-child(5) { transition-delay: 0.3s; }
        .mobile-menu-overlay.active .mobile-nav-item:nth-child(6) { transition-delay: 0.35s; }
        .mobile-menu-overlay.active .mobile-nav-item:nth-child(7) { transition-delay: 0.4s; }

        .mobile-nav-link {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1.25rem 1.5rem;
            color: var(--white);
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 12px;
            transition: var(--transition);
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .mobile-nav-link:hover {
            background: rgba(89, 192, 71, 0.15);
            border-color: rgba(89, 192, 71, 0.3);
            color: var(--green-light);
            transform: translateX(8px);
        }

        .mobile-nav-link .link-text {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .mobile-nav-link i.fa-chevron-down {
            transition: var(--transition);
            font-size: 0.8rem;
            opacity: 0.7;
        }

        .mobile-nav-item.has-submenu.active .mobile-nav-link i.fa-chevron-down {
            transform: rotate(180deg);
            opacity: 1;
            color: var(--green);
        }

        /* Mobile Submenu */
        .mobile-submenu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
            padding-left: 1rem;
        }

        .mobile-nav-item.has-submenu.active .mobile-submenu {
            max-height: 500px;
            transition: max-height 0.5s ease-in-out;
        }

        .mobile-submenu-item {
            padding: 1rem 1.5rem;
            margin: 0.5rem 0;
            border-radius: 10px;
            display: flex;
            align-items: center;
            gap: 12px;
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: var(--transition);
            border: 1px solid transparent;
        }

        .mobile-submenu-item:hover {
            background: rgba(89, 192, 71, 0.1);
            border-color: rgba(89, 192, 71, 0.2);
            color: var(--white);
            transform: translateX(5px);
        }

        .mobile-submenu-item i {
            color: var(--green);
            font-size: 1.1rem;
            width: 24px;
        }

        .mobile-submenu-item span {
            font-size: 0.95rem;
            font-weight: 500;
        }

        /* Mobile CTA Section */
        .mobile-menu-footer {
            padding: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            opacity: 0;
            transform: translateY(20px);
            transition: var(--transition) 0.5s;
        }

        .mobile-menu-overlay.active .mobile-menu-footer {
            opacity: 1;
            transform: translateY(0);
        }

        .mobile-cta-group {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .mobile-cta-group .btn-ghost,
        .mobile-cta-group .btn-primary-premium {
            width: 100%;
            text-align: center;
            padding: 1rem;
            font-size: 1rem;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .nav-menu {
                display: none;
            }
            
            .nav-actions .search-box,
            .nav-actions .icon-btn,
            .btn-group {
                display: none;
            }
            
            .mobile-toggle {
                display: flex;
            }
        }

        @media (max-width: 768px) {
            .mega-menu {
                min-width: 90vw;
                padding: 1.5rem;
            }
            
            .mega-menu-grid {
                grid-template-columns: 1fr;
            }

            .mobile-menu-content {
                padding: 1.5rem;
            }
        }

        /* Demo Content */
        .demo-content {
            margin-top: 120px;
            padding: 4rem 2rem;
            text-align: center;
        }

        .demo-content h1 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 3.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--navy) 0%, var(--green) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 1.5rem;
        }

        .demo-content p {
            font-size: 1.25rem;
            color: #64748b;
            max-width: 600px;
            margin: 0 auto;
        }

        body.overflow-hidden {
            overflow: hidden;
        }
       /* Slider Container */
        .slider-wrapper {
            position: relative;
            width: 100%;
            min-height: 50vh;
            /* min-height: 100dvh; */
            overflow: hidden;
            background: var(--black);
        }

        .slider-track {
            position: relative;
            width: 100%;
            height: 100%;
            min-height: 600px;
        }

        .slide {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            padding: calc(2rem + var(--safe-top)) 1.5rem calc(2rem + var(--safe-bottom));
            pointer-events: none;
        }

        .slide.active {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }

        /* Background Image */
        .slide-bg {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            filter: grayscale(100%) brightness(0.65) contrast(1.1);
            transition: transform 7s var(--ease);
            will-change: transform;
        }

        .slide.active .slide-bg {
            transform: scale(1.04);
        }

        /* Optimize background images for different screen sizes */
        @media (max-width: 768px) {
            .slide-bg {
                background-position: center center;
                background-size: cover;
            }
        }

        @media (max-width: 480px) {
            .slide-bg {
                background-position: 50% 30%;
                background-size: cover;
            }
        }

        @media (max-height: 500px) and (orientation: landscape) {
            .slide-bg {
                background-position: center center;
                background-size: cover;
            }
        }

        /* Overlay */
        .slide-overlay {
            position: absolute;
            inset: 0;
            background: 
                linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 60%, #000 100%);
            z-index: 1;
        }

        /* Like Button */
        .like-btn {
            position: absolute;
            top: calc(1.5rem + var(--safe-top));
            right: calc(1.5rem + max(env(safe-area-inset-right), 0px));
            width: 48px;
            height: 48px;
            background: rgba(255,255,255,0.08);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.15);
            border-radius: 50%;
            color: var(--white);
            font-size: 1.1rem;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            touch-action: manipulation;
        }

        .like-btn:hover, .like-btn:focus {
            background: rgba(255,255,255,0.15);
            transform: scale(1.08);
        }

        .like-btn.active {
            background: var(--white);
            color: var(--black);
            border-color: var(--white);
        }

        .like-btn.active i { animation: heartPop 0.35s var(--ease); }

        @keyframes heartPop {
            0% { transform: scale(1); }
            50% { transform: scale(1.35); }
            100% { transform: scale(1); }
        }

        /* Content */
        .slide-content {
            position: relative;
            z-index: 3;
            max-width: 800px;
            width: 100%;
            text-align: center;
            opacity: 0;
            transform: translateY(30px);
            transition: var(--transition);
        }

        .slide.active .slide-content {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.15s;
        }

        .slide-label {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--gray-400);
            margin-bottom: 1.25rem;
            opacity: 0;
            transform: translateY(12px);
            transition: var(--transition);
        }

        .slide.active .slide-label {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.25s;
        }

        .slide-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(2rem, 5.5vw, 3.75rem);
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 1rem;
            color: var(--white);
            letter-spacing: -0.015em;
            opacity: 0;
            transform: translateY(15px);
            transition: var(--transition);
        }

        .slide.active .slide-title {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.35s;
        }

        .slide-desc {
            font-size: clamp(0.95rem, 2.2vw, 1.15rem);
            color: var(--gray-400);
            line-height: 1.55;
            max-width: 580px;
            margin: 0 auto 2rem;
            opacity: 0;
            transform: translateY(15px);
            transition: var(--transition);
        }

        .slide.active .slide-desc {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.45s;
        }

        /* CTA Buttons */
        .slide-cta {
            display: flex;
            gap: 0.875rem;
            justify-content: center;
            flex-wrap: wrap;
            opacity: 0;
            transform: translateY(15px);
            transition: var(--transition);
        }

        .slide.active .slide-cta {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.55s;
        }

        .btn {
            padding: 0.875rem 1.75rem;
            font-weight: 600;
            font-size: 0.95rem;
            border-radius: 6px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            white-space: nowrap;
            touch-action: manipulation;
        }

        .btn-primary {
            background: var(--white);
            color: var(--black);
        }

        .btn-primary:hover {
            background: var(--gray-200);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(255,255,255,0.12);
        }

        .btn-outline {
            background: transparent;
            color: var(--white);
            border: 1px solid rgba(255,255,255,0.35);
        }

        .btn-outline:hover {
            border-color: var(--white);
            background: rgba(255,255,255,0.06);
            transform: translateY(-2px);
        }

        /* Navigation */
        .slider-controls {
 
            position: absolute;
            bottom: calc(10rem + var(--safe-bottom));
            left: 0;
            right: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1.5rem;
            z-index: 10;
            padding: 0 1.5rem;
        }

        .nav-arrow {
            width: 44px;
            height: 44px;
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.15);
            border-radius: 50%;
            color: var(--white);
            font-size: 0.9rem;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            touch-action: manipulation;
        }

        .nav-arrow:hover {
            background: rgba(255,255,255,0.15);
            border-color: rgba(255,255,255,0.4);
            transform: scale(1.08);
        }

        .slider-dots { display: flex; gap: 0.6rem; }

        .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(255,255,255,0.3);
            cursor: pointer;
            transition: var(--transition);
            border: none;
            padding: 0;
        }

        .dot.active {
            background: var(--white);
            transform: scale(1.3);
            box-shadow: 0 0 10px rgba(255,255,255,0.3);
        }

        /* Progress Bar */
        .progress-bar {
            position: absolute;
            bottom: 0;
            left: 0;
            height: 3px;
            background: var(--white);
            width: 0%;
            transition: width 0.1s linear;
            z-index: 5;
        }

        /* Responsive Breakpoints */
        @media (max-width: 1024px) {
            .slider-wrapper {
                min-height: 90vh;
                min-height: 90dvh;
            }
            .slider-track {
                min-height: 90vh;
                min-height: 90dvh;
            }
            .slide {
                padding: calc(3.5rem + var(--safe-top)) 1.25rem calc(4.5rem + var(--safe-bottom));
            }
            .slide-title {
                font-size: clamp(1.75rem, 5vw, 3rem);
            }
            .slide-desc {
                font-size: 1rem;
                max-width: 650px;
            }
            .slide-content {
                max-width: 700px;
            }
        }

        @media (max-width: 768px) {
            .slider-wrapper {
                min-height: 85vh;
                min-height: 85dvh;
            }
            .slider-track {
                min-height: 85vh;
                min-height: 85dvh;
            }
            .slide {
                padding: calc(3rem + var(--safe-top)) 1.25rem calc(4.5rem + var(--safe-bottom));
            }
            .slide-content {
                max-width: 100%;
                padding: 0 0.5rem;
            }
            .slide-title {
                font-size: clamp(1.6rem, 6vw, 2.5rem);
                margin-bottom: 0.75rem;
            }
            .slide-desc {
                font-size: 0.95rem;
                margin-bottom: 1.75rem;
                line-height: 1.5;
                max-width: 100%;
            }
            .slide-label {
                font-size: 0.75rem;
                margin-bottom: 1rem;
            }
            .btn {
                padding: 0.8rem 1.5rem;
                font-size: 0.9rem;
                width: 100%;
                max-width: 240px;
                justify-content: center;
            }
            .slide-cta {
                flex-direction: column;
                align-items: center;
                gap: 0.75rem;
            }
            .slider-controls {
                bottom: calc(1.5rem + var(--safe-bottom));
                gap: 1rem;
            }
            .nav-arrow {
                width: 40px;
                height: 40px;
            }
        }

        @media (max-width: 480px) {
            .slider-wrapper {
                min-height: 100vh;
                min-height: 100dvh;
            }
            .slider-track {
                min-height: 100vh;
                min-height: 100dvh;
            }
            .slide {
                padding: calc(2.5rem + var(--safe-top)) 1rem calc(4rem + var(--safe-bottom));
                align-items: flex-start;
                justify-content: center;
                padding-top: 35%;
            }
            .slide-content {
                max-width: 100%;
                padding: 0;
                text-align: left;
            }
            .slide-title {
                font-size: clamp(1.4rem, 7vw, 2rem);
                margin-bottom: 0.75rem;
                line-height: 1.15;
            }
            .slide-desc {
                font-size: 0.875rem;
                margin-bottom: 1.5rem;
                line-height: 1.45;
                max-width: 100%;
            }
            .slide-label {
                font-size: 0.7rem;
                margin-bottom: 0.875rem;
            }
            .btn {
                padding: 0.75rem 1.25rem;
                font-size: 0.85rem;
                max-width: 100%;
            }
            .slide-cta {
                width: 100%;
            }
            .like-btn {
                width: 42px;
                height: 42px;
                top: calc(1rem + var(--safe-top));
                right: calc(1rem + max(env(safe-area-inset-right), 0px));
            }
            .slider-controls {
                bottom: calc(1.25rem + var(--safe-bottom));
                gap: 0.75rem;
            }
            .nav-arrow {
                width: 36px;
                height: 36px;
                font-size: 0.8rem;
            }
            .dot {
                width: 7px;
                height: 7px;
            }
            .dot.active {
                width: 20px;
            }
        }

        /* Landscape phones & short viewports */
        @media (max-height: 500px) and (orientation: landscape) {
            .slider-track {
                min-height: 100vh;
            }
            .slide {
                padding: 1.5rem 1rem 3rem;
                align-items: flex-start;
                padding-top: 25%;
            }
            .slide-title {
                font-size: 1.5rem;
                margin-bottom: 0.5rem;
            }
            .slide-desc {
                display: none;
            }
            .slide-cta {
                margin-top: 1rem;
            }
            .slide-label {
                margin-bottom: 0.5rem;
            }
        }

        /* Tablets in portrait mode */
        @media (min-width: 769px) and (max-width: 1024px) and (orientation: portrait) {
            .slider-wrapper {
                min-height: 95vh;
                min-height: 95dvh;
            }
            .slider-track {
                min-height: 95vh;
                min-height: 95dvh;
            }
            .slide-content {
                max-width: 750px;
            }
            .slide-title {
                font-size: clamp(1.8rem, 4.5vw, 3rem);
            }
            .slide-desc {
                font-size: 1.05rem;
                max-width: 700px;
            }
        }

        /* Large desktop screens */
        @media (min-width: 1440px) {
            .slide-content {
                max-width: 900px;
            }
            .slide-title {
                font-size: clamp(2.5rem, 4vw, 4.5rem);
            }
            .slide-desc {
                font-size: 1.25rem;
                max-width: 700px;
            }
            .btn {
                padding: 1rem 2rem;
                font-size: 1rem;
            }
        }

        /* Ultra-wide screens */
        @media (min-width: 1920px) {
            .slide-content {
                max-width: 1100px;
            }
            .slide-title {
                font-size: clamp(3rem, 3.5vw, 5rem);
            }
            .slide-desc {
                font-size: 1.35rem;
                max-width: 800px;
            }
        }

  /* Base Slider Styles */
    .banner-slider {
      position: relative;
      width: 100%;
      height: 85vh;
      overflow: hidden;
      background: #111;
    }

    .slide {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      transition: opacity 0.8s ease-in-out;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .slide.active {
      opacity: 1;
      z-index: 2;
    }

    .slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: absolute;
      top: 0;
      left: 0;
      filter: brightness(0.6);
    }

    /* Overlay Content */
    .slide-content {
      position: relative;
      z-index: 3;
      text-align: center;
      color: #fff;
      padding: 20px;
      max-width: 900px;
    }

    .slide-content h1,
    .slide-content p,
    .slide-content .btn-custom {
      opacity: 0;
      transform: translateY(40px);
      transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .slide.active .slide-content h1 { opacity: 1; transform: translateY(0); transition-delay: 0.3s; }
    .slide.active .slide-content p { opacity: 1; transform: translateY(0); transition-delay: 0.5s; }
    .slide.active .slide-content .btn-custom { opacity: 1; transform: translateY(0); transition-delay: 0.7s; }

    .slide-content h1 {
      font-size: 3.5rem;
      font-weight: 800;
      margin-bottom: 1rem;
      text-shadow: 0 2px 10px rgba(0,0,0,0.4);
    }

    .slide-content p {
      font-size: 1.25rem;
      margin-bottom: 1.5rem;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Custom Button */
    .btn-custom {
      background: linear-gradient(135deg, #007bff, #0056b3);
      border: none;
      padding: 12px 32px;
      color: #fff;
      border-radius: 50px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(0,123,255,0.4);
    }

    .btn-custom:hover {
      background: linear-gradient(135deg, #0056b3, #003d80);
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(0,123,255,0.6);
    }

    /* Navigation Arrows */
    .slider-controls-2 button {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255,255,255,0.15);
      backdrop-filter: blur(5px);
      color: #fff;
      border: 2px solid rgba(255,255,255,0.3);
      width: 50px;
      height: 50px;
      border-radius: 50%;
      cursor: pointer;
      z-index: 10;
      font-size: 20px;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .slider-controls-2 button:hover {
      background: rgba(255,255,255,0.3);
      transform: translateY(-50%) scale(1.1);
    }

    .slider-controls-2 .prev-slide { left: 30px; }
    .slider-controls-2 .next-slide { right: 30px; }

    /* Dots */
    .slider-dots {
      position: absolute;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 12px;
      z-index: 10;
    }

    .slider-dots .dot {
      width: 14px;
      height: 14px;
      background: rgba(255,255,255,0.4);
      border-radius: 50%;
      cursor: pointer;
      transition: all 0.3s ease;
      border: 2px solid transparent;
    }

    .slider-dots .dot:hover { background: rgba(255,255,255,0.7); }
    .slider-dots .dot.active {
      background: #fff;
      transform: scale(1.3);
      border-color: rgba(0,123,255,0.8);
    }

    /* 📱 Responsive Media Queries */
    @media (max-width: 1200px) {
      .slide-content h1 { font-size: 3rem; }
    }

    @media (max-width: 992px) {
      .banner-slider { height: 70vh; }
      .slide-content h1 { font-size: 2.5rem; }
      .slide-content p { font-size: 1.1rem; }
      .slider-controls button { width: 45px; height: 45px; }
    }

    @media (max-width: 768px) {
      .banner-slider { height: 55vh; }
      .slide-content { padding: 15px; max-width: 85%; }
      .slide-content h1 { font-size: 2rem; }
      .slide-content p { font-size: 1rem; }
      .btn-custom { padding: 10px 24px; font-size: 0.95rem; }
      .slider-controls button { width: 40px; height: 40px; font-size: 16px; }
      .slider-controls .prev-slide { left: 15px; }
      .slider-controls .next-slide { right: 15px; }
    }

    @media (max-width: 576px) {
      .banner-slider { height: 50vh; }
      .slider-content{
        padding-bottom:50px ;
      }
      .slide-content h1 { font-size: 1rem; }
      .slide-content p { font-size: 0.9rem; margin-bottom: 1rem; }
      .btn-custom { padding: 8px 18px; font-size: 0.85rem; }
      .slider-dots { bottom: 15px; }
      .slider-dots .dot { width: 10px; height: 10px; }
    }

    /* MiniLab Difference Banner */
    .difference-banner {
      background: linear-gradient(135deg, rgba(89, 192, 71, 0.12) 0%, rgba(18, 60, 112, 0.35) 100%);
      border: 1px solid rgba(89, 192, 71, 0.3);
      border-radius: 24px;
      padding: 3rem 2.5rem;
      display: flex;
      align-items: center;
      gap: 2rem;
      position: relative;
      overflow: hidden;
      transition: var(--transition);
      opacity: 0;
      transform: translateY(30px);
    }

    .difference-banner.visible {
      opacity: 1;
      transform: translateY(0);
      transition: opacity 0.6s var(--ease), transform 0.6s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
    }

    .difference-banner::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 0% 0%, rgba(89, 192, 71, 0.2) 0%, transparent 60%);
      pointer-events: none;
    }

    .difference-banner:hover {
      transform: translateY(-4px);
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(89, 192, 71, 0.4);
      border-color: var(--green);
    }

    .banner-icon {
      width: 64px;
      height: 64px;
      background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      box-shadow: 0 10px 25px var(--green-glow);
      transition: var(--transition);
    }

    .difference-banner:hover .banner-icon {
      transform: rotate(10deg) scale(1.1);
    }

    .banner-icon i {
      font-size: 1.75rem;
      color: var(--navy-dark);
    }

    .banner-content {
      flex: 1;
    }

    .banner-content h3 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 1.75rem;
      font-weight: 700;
      margin-bottom: 0.75rem;
      color: var(--white);
    }

    .banner-content p {
      font-size: 1.1rem;
      line-height: 1.6;
      color: rgba(255, 255, 255, 0.85);
      margin: 0;
    }

    .highlight {
      color: var(--green-light);
      font-weight: 700;
      position: relative;
    }

    .highlight::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 100%;
      height: 2px;
      background: var(--green);
      opacity: 0.6;
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s var(--ease);
    }

    .difference-banner:hover .highlight::after {
      transform: scaleX(1);
    }

    .banner-cta {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 1rem 1.75rem;
      background: var(--white);
      color: var(--navy-dark);
      font-weight: 600;
      font-size: 0.95rem;
      border-radius: 12px;
      text-decoration: none;
      transition: var(--transition);
      white-space: nowrap;
      flex-shrink: 0;
    }

    .banner-cta:hover {
      background: var(--green);
      transform: translateX(4px);
      box-shadow: 0 8px 20px var(--green-glow);
    }

    /* Responsive */
    @media (max-width: 900px) {
      .difference-banner {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
      }
      .banner-cta { width: 100%; justify-content: center; }
    }

    @media (max-width: 600px) {
      .challenge-section { padding: 4rem 1.25rem; }
      .section-title { font-size: 1.75rem; }
      .challenge-grid { grid-template-columns: 1fr; }
      .challenge-card { padding: 2rem 1.5rem; }
      .difference-banner { padding: 2rem 1.5rem; }
      .banner-content h3 { font-size: 1.5rem; }
    }

     
.about-section {
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 7rem 1.5rem;
  position: relative;
  overflow: hidden;
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Subtle ambient glow */
.about-section::before {
  content: '';
  position: absolute;
  top: -15%;
  right: -10%;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(89, 192, 71, 0.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: pulseGlow 8s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.1); opacity: 0.9; }
}

 

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1rem;
  padding: 0.45rem 1.1rem;
  background: rgba(89, 192, 71, 0.08);
  border: 1px solid rgba(89, 192, 71, 0.25);
  border-radius: 50px;
}

.section-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--white) 0%, #b0c4de 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-text {
  font-size: 1.15rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 3rem;
  max-width: 92%;
}

.about-stats {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
}

.stat-item {
  background: var(--glass);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  padding: 1.5rem 1.25rem;
  min-width: 150px;
  text-align: center;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}

.stat-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.stat-item:hover {
  transform: translateY(-6px);
  border-color: rgba(89, 192, 71, 0.35);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.stat-item:hover::after {
  transform: scaleX(1);
}

.stat-number {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--green-light);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
  letter-spacing: 0.03em;
}

.about-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 450px;
}

/* Main Image */
.about-img-main {
  position: relative;
  width: 100%;
  max-width: 460px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  z-index: 2;
}

.about-img-main::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-img-main:hover .about-img-1 {
  transform: scale(1.05);
}

.img-glass-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(10, 31, 61, 0.4) 100%
  );
  pointer-events: none;
}

/* Floating Images */
.about-img-float {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.15);
  z-index: 3;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s ease;
}

.about-img-float:hover {
  transform: scale(1.08) !important;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.4);
  border-color: rgba(89, 192, 71, 0.4);
}

.about-img-2-wrap {
  width: 130px;
  height: 130px;
  top: -20px;
  right: -10px;
  animation: aboutFloat1 5s ease-in-out infinite;
}

.about-img-3-wrap {
  width: 110px;
  height: 110px;
  bottom: 20px;
  left: -20px;
  animation: aboutFloat2 6s ease-in-out infinite;
}

.about-img-2,
.about-img-3 {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes aboutFloat1 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-12px) rotate(2deg); }
}

@keyframes aboutFloat2 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(10px) rotate(-2deg); }
}

/* Experience Badge */
.about-exp-badge {
  position: absolute;
  bottom: -15px;
  right: 10px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
  border-radius: 16px;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  box-shadow:
    0 10px 30px rgba(89, 192, 71, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  z-index: 4;
  animation: badgePulse 3s ease-in-out infinite;
}

.about-exp-badge .exp-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1;
}

.about-exp-badge .exp-text {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy-dark);
  line-height: 1.2;
  opacity: 0.85;
}

@keyframes badgePulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.04); }
}

/* Decorative Dots */
.about-deco-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  opacity: 0.4;
  z-index: 1;
}

.deco-1 {
  top: 10%;
  left: 5%;
  animation: decoPulse 2.5s ease-in-out infinite;
}

.deco-2 {
  bottom: 8%;
  right: 5%;
  animation: decoPulse 2.5s ease-in-out infinite 1s;
}

@keyframes decoPulse {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50%      { transform: scale(1.8); opacity: 0.15; }
}

/* Decorative Ring */
.about-deco-ring {
  position: absolute;
  width: 180px;
  height: 180px;
  border: 2px dashed rgba(89, 192, 71, 0.15);
  border-radius: 50%;
  top: -30px;
  left: -30px;
  z-index: 0;
  animation: ringSpin 20s linear infinite;
}

@keyframes ringSpin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 950px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    text-align: center;
  }
  .about-stats { justify-content: center; }
  .section-text { max-width: 100%; margin-left: auto; margin-right: auto; }
  .about-visual { min-height: 380px; margin-top: 1rem; }
  .about-img-main { max-width: 380px; }
  .about-img-2-wrap { width: 110px; height: 110px; }
  .about-img-3-wrap { width: 95px; height: 95px; }
}

@media (max-width: 600px) {
  .about-section { padding: 4.5rem 1.25rem; }
  .stat-item { min-width: 130px; padding: 1.25rem 1rem; }
  .stat-number { font-size: 1.85rem; }
  .section-text { font-size: 1.05rem; }
}


.why-choose-us {
    --navy: #123c70;
    --green: #59c047;
}

.premium-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(89, 192, 71, 0.15);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.premium-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 40px;
    height: 200%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.6),
        transparent
    );
    transform: skewX(-25deg);
    transition: left 0.7s;
    opacity: 0.3;
}

.premium-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(89, 192, 71, 0.18);
    border-color: var(--green);
}

.premium-card:hover::before {
    left: 120%;
}

.card-icon {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    transition: transform 0.4s ease;
}

.premium-card:hover .card-icon {
    transform: scale(1.15) rotate(8deg);
}

.card-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
}

.card-text {
    color: #555;
    line-height: 1.7;
    font-size: 1.02rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .premium-card {
        padding: 2rem 1.5rem;
    }
}

.why-choose-section {
    background: linear-gradient(180deg, var(--bg-light) 0%, #eef2f7 100%);
    padding: 6.5rem 1.5rem;
    position: relative;
    overflow: hidden;
    font-family: 'Plus Jakarta Sans', sans-serif;
  }

  /* Subtle premium mesh overlay */
  .why-choose-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 15% 20%, rgba(18, 60, 112, 0.04) 0%, transparent 40%),
                radial-gradient(circle at 85% 80%, rgba(89, 192, 71, 0.04) 0%, transparent 40%);
    pointer-events: none;
  }

  .section-header {
    max-width: 680px;
    margin: 0 auto 4rem;
  }

  .section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--green);
    background: rgba(89, 192, 71, 0.08);
    border: 1px solid rgba(89, 192, 71, 0.2);
    padding: 0.45rem 1.1rem;
    border-radius: 50px;
    margin-bottom: 1.25rem;
  }

  .section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
  }

  .section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
  }

  /* Premium Card Base */
  .feature-card {
    background: var(--card-bg);
    border: 1px solid rgba(18, 60, 112, 0.08);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    transition: all 0.45s var(--ease);
    cursor: default;
  }

  /* Hover Background Overlay */
  .feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, var(--navy) 0%, var(--navy-dark) 100%);
    opacity: 0;
    transition: opacity 0.45s var(--ease);
    z-index: 0;
  }

  /* Hover Lift & Shadow */
  .feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(18, 60, 112, 0.12);
    border-color: transparent;
  }

  .feature-card:hover::before {
    opacity: 1;
  }

  /* Content Layer (z-index above overlay) */
  .card-content {
    position: relative;
    z-index: 1;
    transition: color 0.45s var(--ease);
  }

  .card-icon {
    width: 56px;
    height: 56px;
    background: rgba(89, 192, 71, 0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.45s var(--ease);
  }

  .card-icon i {
    font-size: 1.5rem;
    color: var(--green);
    transition: all 0.45s var(--ease);
  }

  .feature-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    transition: color 0.45s var(--ease);
  }

  .feature-card p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--text-muted);
    margin: 0;
    transition: color 0.45s var(--ease);
  }

  /* Hover Text & Icon Changes */
  .feature-card:hover .card-content,
  .feature-card:hover h3,
  .feature-card:hover p {
    color: #ffffff;
  }

  .feature-card:hover .card-icon {
    background: rgba(89, 192, 71, 0.2);
    transform: scale(1.1) rotate(-6deg);
    box-shadow: 0 6px 16px rgba(89, 192, 71, 0.3);
  }

  .feature-card:hover .card-icon i {
    color: var(--green-light);
    filter: drop-shadow(0 0 8px rgba(89, 192, 71, 0.6));
  }

  /* Bottom Accent Line */
  .card-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--green), var(--green-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease);
  }

  .feature-card:hover .card-accent {
    transform: scaleX(1);
  }

  /* Responsive */
  @media (max-width: 991px) {
    .why-choose-section { padding: 5rem 1.25rem; }
    .feature-card { padding: 2rem 1.75rem; }
  }

  @media (max-width: 576px) {
    .section-title { font-size: 1.85rem; }
    .section-subtitle { font-size: 1rem; }
    .feature-card { padding: 1.75rem 1.5rem; }
  }


        /* ============================================
           SECTION BACKGROUND
           ============================================ */
        .premium-section {
            position: relative;
            min-height: 100vh;
            background: var(--dark-bg);
            padding: 100px 0 120px;
            overflow: hidden;
            font-family: 'Rajdhani', sans-serif;
        }

        /* Animated Grid Background */
        .premium-section::before {
            content: '';
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background-image:
                linear-gradient(rgba(0, 240, 255, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 240, 255, 0.03) 1px, transparent 1px);
            background-size: 60px 60px;
            animation: gridMove 20s linear infinite;
            z-index: 0;
        }

        @keyframes gridMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(60px, 60px); }
        }

        /* Floating Orbs */
        .orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.3;
            z-index: 0;
            animation: orbFloat 15s ease-in-out infinite;
        }

        .orb-1 {
            width: 400px; height: 400px;
            background: radial-gradient(circle, var(--neon-blue), transparent);
            top: -100px; left: -100px;
            animation-delay: 0s;
        }

        .orb-2 {
            width: 500px; height: 500px;
            background: radial-gradient(circle, var(--neon-purple), transparent);
            bottom: -150px; right: -150px;
            animation-delay: -5s;
        }

        .orb-3 {
            width: 300px; height: 300px;
            background: radial-gradient(circle, var(--gold-primary), transparent);
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            animation-delay: -10s;
            opacity: 0.15;
        }

        @keyframes orbFloat {
            0%, 100% { transform: translate(0, 0) scale(1); }
            25% { transform: translate(30px, -30px) scale(1.1); }
            50% { transform: translate(-20px, 20px) scale(0.95); }
            75% { transform: translate(20px, 10px) scale(1.05); }
        }

        /* ============================================
           SECTION HEADER
           ============================================ */
        .section-header {
            position: relative;
            z-index: 2;
            text-align: center;
            margin-bottom: 80px;
        }

        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 24px;
            background: rgba(212, 175, 55, 0.1);
            border: 1px solid rgba(212, 175, 55, 0.3);
            border-radius: 50px;
            font-family: 'Orbitron', monospace;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold-primary);
            margin-bottom: 24px;
            animation: badgePulse 3s ease-in-out infinite;
        }

        .section-badge i {
            font-size: 10px;
            animation: rotateBadge 4s linear infinite;
        }

        @keyframes badgePulse {
            0%, 100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.2); }
            50% { box-shadow: 0 0 20px 5px rgba(212, 175, 55, 0.15); }
        }

        @keyframes rotateBadge {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .section-title {
            font-family: 'Orbitron', monospace;
            font-size: clamp(32px, 5vw, 56px);
            font-weight: 800;
            color: var(--text-primary);
            line-height: 1.2;
            margin-bottom: 16px;
        }

        .section-title .gradient-text {
            background: linear-gradient(135deg, var(--gold-light), var(--gold-primary), var(--gold-dark), var(--gold-light));
            background-size: 300% 300%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: goldShimmer 4s ease-in-out infinite;
        }

        @keyframes goldShimmer {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .section-subtitle {
            font-family: 'Inter', sans-serif;
            font-size: 16px;
            font-weight: 300;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.8;
        }

        /* ============================================
           PREMIUM CARD BASE
           ============================================ */
        .premium-card {
            position: relative;
            z-index: 2;
            background: var(--card-bg);
            border-radius: 24px;
            padding: 0;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            cursor: pointer;
            margin-bottom: 30px;
            /* Glassmorphism */
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
        }

        .premium-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: linear-gradient(
                135deg,
                rgba(255, 255, 255, 0.05) 0%,
                rgba(255, 255, 255, 0) 50%,
                rgba(255, 255, 255, 0.02) 100%
            );
            z-index: 1;
            pointer-events: none;
            transition: opacity 0.5s ease;
        }

        /* Animated Border Gradient */
        .premium-card .card-border {
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            border-radius: 24px;
            z-index: 0;
            overflow: hidden;
        }

        .premium-card .card-border::before {
            content: '';
            position: absolute;
            top: -50%; left: -50%;
            width: 200%; height: 200%;
            background: conic-gradient(
                from 0deg,
                transparent 0%,
                var(--neon-blue) 10%,
                transparent 20%,
                transparent 50%,
                var(--gold-primary) 60%,
                transparent 70%
            );
            animation: rotateBorder 6s linear infinite;
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .premium-card:hover .card-border::before {
            opacity: 1;
        }

        @keyframes rotateBorder {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .premium-card .card-inner {
            position: relative;
            z-index: 2;
            background: var(--card-bg);
            border-radius: 23px;
            margin: 1px;
            overflow: hidden;
        }

        /* Hover State */
        .premium-card:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow:
                0 30px 80px rgba(0, 240, 255, 0.1),
                0 15px 40px rgba(212, 175, 55, 0.08),
                0 0 0 1px rgba(255, 255, 255, 0.1);
        }

        /* ============================================
           CARD HEADER
           ============================================ */
        .card-header-section {
            position: relative;
            padding: 40px 35px 30px;
            overflow: hidden;
        }

        .card-header-section::after {
            content: '';
            position: absolute;
            bottom: 0; left: 35px; right: 35px;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
        }

        /* Tier Badge */
        .tier-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 16px;
            border-radius: 50px;
            font-family: 'Orbitron', monospace;
            font-size: 9px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 20px;
        }

        .tier-badge.starter {
            background: rgba(0, 240, 255, 0.1);
            border: 1px solid rgba(0, 240, 255, 0.3);
            color: var(--neon-blue);
        }

        .tier-badge.professional {
            background: rgba(168, 85, 247, 0.1);
            border: 1px solid rgba(168, 85, 247, 0.3);
            color: var(--neon-purple);
        }

        .tier-badge.ultra {
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(240, 208, 96, 0.1));
            border: 1px solid rgba(212, 175, 55, 0.4);
            color: var(--gold-primary);
            animation: ultraGlow 3s ease-in-out infinite;
        }

        @keyframes ultraGlow {
            0%, 100% { box-shadow: 0 0 10px rgba(212, 175, 55, 0.2); }
            50% { box-shadow: 0 0 25px rgba(212, 175, 55, 0.3); }
        }

        /* Plan Name */
        .plan-name {
            font-family: 'Orbitron', monospace;
            font-size: 22px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 8px;
        }

        .plan-desc {
            font-family: 'Inter', sans-serif;
            font-size: 13px;
            font-weight: 400;
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* ============================================
           PRICING SECTION
           ============================================ */
        .pricing-section {
            padding: 30px 35px;
        }

        .price-wrapper {
            display: flex;
            align-items: flex-end;
            gap: 4px;
            margin-bottom: 8px;
        }

        .currency {
            font-family: 'Orbitron', monospace;
            font-size: 20px;
            font-weight: 600;
            color: var(--text-secondary);
            align-self: flex-start;
            margin-top: 10px;
        }

        .price-amount {
            font-family: 'Orbitron', monospace;
            font-size: 56px;
            font-weight: 900;
            line-height: 1;
            transition: all 0.4s ease;
        }

        .plan-starter .price-amount {
            color: var(--neon-blue);
            text-shadow: 0 0 30px rgba(0, 240, 255, 0.3);
        }

        .plan-professional .price-amount {
            color: var(--neon-purple);
            text-shadow: 0 0 30px rgba(168, 85, 247, 0.3);
        }

        .plan-ultra .price-amount {
            background: linear-gradient(135deg, var(--gold-light), var(--gold-primary), var(--gold-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.3));
        }

        .premium-card:hover .price-amount {
            transform: scale(1.05);
        }

        .price-period {
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            font-weight: 400;
            color: var(--text-muted);
            margin-bottom: 4px;
            margin-left: 4px;
        }

        .price-note {
            font-family: 'Inter', sans-serif;
            font-size: 12px;
            color: var(--text-muted);
        }

        /* ============================================
           FEATURES LIST
           ============================================ */
        .features-section {
            padding: 0 35px 30px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 12px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
            transition: all 0.3s ease;
        }

        .feature-item:last-child {
            border-bottom: none;
        }

        .premium-card:hover .feature-item {
            padding-left: 8px;
        }

        .feature-item:nth-child(1) { transition-delay: 0.05s; }
        .feature-item:nth-child(2) { transition-delay: 0.1s; }
        .feature-item:nth-child(3) { transition-delay: 0.15s; }
        .feature-item:nth-child(4) { transition-delay: 0.2s; }
        .feature-item:nth-child(5) { transition-delay: 0.25s; }
        .feature-item:nth-child(6) { transition-delay: 0.3s; }

        .feature-icon {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .feature-icon.blue {
            background: rgba(0, 240, 255, 0.1);
            color: var(--neon-blue);
            border: 1px solid rgba(0, 240, 255, 0.2);
        }

        .feature-icon.purple {
            background: rgba(168, 85, 247, 0.1);
            color: var(--neon-purple);
            border: 1px solid rgba(168, 85, 247, 0.2);
        }

        .feature-icon.gold {
            background: rgba(212, 175, 55, 0.1);
            color: var(--gold-primary);
            border: 1px solid rgba(212, 175, 55, 0.2);
        }

        .premium-card:hover .feature-icon {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        }

        .feature-text {
            font-family: 'Inter', sans-serif;
            font-size: 13px;
            font-weight: 400;
            color: var(--text-secondary);
            line-height: 1.5;
        }

        .feature-text strong {
            color: var(--text-primary);
            font-weight: 600;
        }

        /* ============================================
           CTA BUTTON
           ============================================ */
        .cta-section {
            padding: 0 35px 40px;
        }

        .premium-btn {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            width: 100%;
            padding: 16px 32px;
            border: none;
            border-radius: 14px;
            font-family: 'Orbitron', monospace;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #fff;
            cursor: pointer;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
        }

        .premium-btn::before {
            content: '';
            position: absolute;
            top: 0; left: -100%;
            width: 100%; height: 100%;
            background: linear-gradient(
                90deg,
                transparent,
                rgba(255, 255, 255, 0.15),
                transparent
            );
            transition: left 0.6s ease;
        }

        .premium-btn:hover::before {
            left: 100%;
        }

        .premium-btn.btn-blue {
            background: linear-gradient(135deg, #00b4d8, #0077b6);
            box-shadow: 0 8px 30px rgba(0, 180, 216, 0.3);
        }

        .premium-btn.btn-purple {
            background: linear-gradient(135deg, #a855f7, #7c3aed);
            box-shadow: 0 8px 30px rgba(168, 85, 247, 0.3);
        }

        .premium-btn.btn-gold {
            background: linear-gradient(135deg, var(--gold-light), var(--gold-primary), var(--gold-dark));
            box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
            color: #1a1a2e;
        }

        .premium-btn:hover {
            transform: translateY(-3px);
        }

        .premium-btn.btn-blue:hover {
            box-shadow: 0 12px 40px rgba(0, 180, 216, 0.5);
        }

        .premium-btn.btn-purple:hover {
            box-shadow: 0 12px 40px rgba(168, 85, 247, 0.5);
        }

        .premium-btn.btn-gold:hover {
            box-shadow: 0 12px 40px rgba(212, 175, 55, 0.5);
        }

        .premium-btn i {
            transition: transform 0.3s ease;
        }

        .premium-btn:hover i {
            transform: translateX(4px);
        }

        /* ============================================
           POPULAR / FEATURED CARD
           ============================================ */
        .premium-card.featured {
            border-color: rgba(212, 175, 55, 0.2);
        }

        .premium-card.featured .card-border::before {
            animation-duration: 3s;
        }

        .popular-tag {
            position: absolute;
            top: 20px; right: -35px;
            background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
            color: #1a1a2e;
            font-family: 'Orbitron', monospace;
            font-size: 9px;
            font-weight: 800;
            letter-spacing: 1.5px;
            padding: 8px 45px;
            transform: rotate(45deg);
            z-index: 10;
            box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
        }

        /* ============================================
           SHIMMER EFFECT ON HOVER
           ============================================ */
        .shimmer-overlay {
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: linear-gradient(
                105deg,
                transparent 40%,
                rgba(255, 255, 255, 0.03) 45%,
                rgba(255, 255, 255, 0.06) 50%,
                rgba(255, 255, 255, 0.03) 55%,
                transparent 60%
            );
            z-index: 3;
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.5s ease;
            transform: translateX(-100%);
        }

        .premium-card:hover .shimmer-overlay {
            opacity: 1;
            animation: shimmerSlide 2s ease-in-out infinite;
        }

        @keyframes shimmerSlide {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        /* ============================================
           PARTICLE CANVAS
           ============================================ */
        #particleCanvas {
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            z-index: 0;
            pointer-events: none;
        }

        /* ============================================
           3D TILT GLOW
           ============================================ */
        .tilt-glow {
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            pointer-events: none;
            z-index: 1;
            opacity: 0;
            transition: opacity 0.4s ease;
            filter: blur(60px);
        }

        .premium-card:hover .tilt-glow {
            opacity: 1;
        }

        .tilt-glow.blue { background: var(--neon-blue); }
        .tilt-glow.purple { background: var(--neon-purple); }
        .tilt-glow.gold { background: var(--gold-primary); }

        /* ============================================
           AI ANIMATION ICON
           ============================================ */
        .ai-icon-wrapper {
            position: absolute;
            top: 25px;
            right: 30px;
            z-index: 5;
        }

        .ai-icon {
            width: 50px;
            height: 50px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            position: relative;
            transition: all 0.4s ease;
        }

        .ai-icon.blue-icon {
            background: linear-gradient(135deg, rgba(0, 240, 255, 0.15), rgba(0, 240, 255, 0.05));
            color: var(--neon-blue);
            border: 1px solid rgba(0, 240, 255, 0.2);
        }

        .ai-icon.purple-icon {
            background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(168, 85, 247, 0.05));
            color: var(--neon-purple);
            border: 1px solid rgba(168, 85, 247, 0.2);
        }

        .ai-icon.gold-icon {
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
            color: var(--gold-primary);
            border: 1px solid rgba(212, 175, 55, 0.2);
        }

        .ai-icon::after {
            content: '';
            position: absolute;
            inset: -3px;
            border-radius: 18px;
            border: 1px solid transparent;
            transition: all 0.4s ease;
        }

        .premium-card:hover .ai-icon {
            transform: scale(1.1);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }

        .premium-card:hover .ai-icon.blue-icon::after {
            border-color: rgba(0, 240, 255, 0.3);
            box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
        }

        .premium-card:hover .ai-icon.purple-icon::after {
            border-color: rgba(168, 85, 247, 0.3);
            box-shadow: 0 0 20px rgba(168, 85, 247, 0.2);
        }

        .premium-card:hover .ai-icon.gold-icon::after {
            border-color: rgba(212, 175, 55, 0.3);
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
        }

        /* Pulse ring on icon */
        .ai-icon .pulse-ring {
            position: absolute;
            inset: -6px;
            border-radius: 20px;
            border: 1px solid;
            opacity: 0;
            animation: pulseRing 3s ease-out infinite;
        }

        .blue-icon .pulse-ring { border-color: rgba(0, 240, 255, 0.4); }
        .purple-icon .pulse-ring { border-color: rgba(168, 85, 247, 0.4); }
        .gold-icon .pulse-ring { border-color: rgba(212, 175, 55, 0.4); }

        @keyframes pulseRing {
            0% { transform: scale(0.9); opacity: 0.8; }
            100% { transform: scale(1.3); opacity: 0; }
        }

        /* ============================================
           STATS BAR
           ============================================ */
        .stats-bar {
            display: flex;
            gap: 0;
            padding: 0 35px 25px;
        }

        .stat-item {
            flex: 1;
            text-align: center;
            padding: 15px 0;
            border-right: 1px solid rgba(255, 255, 255, 0.04);
        }

        .stat-item:first-child {
            border-right: none;
        }

        .stat-value {
            font-family: 'Orbitron', monospace;
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .stat-item:nth-child(1) .stat-value { color: var(--neon-blue); }
        .stat-item:nth-child(2) .stat-value { color: var(--neon-purple); }
        .stat-item:nth-child(3) .stat-value { color: var(--gold-primary); }

        .stat-label {
            font-family: 'Inter', sans-serif;
            font-size: 10px;
            font-weight: 500;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* ============================================
           RESPONSIVE
           ============================================ */
        @media (max-width: 991px) {
            .premium-section {
                padding: 80px 0 100px;
            }
            .section-header {
                margin-bottom: 60px;
            }
        }

        @media (max-width: 767px) {
            .card-header-section,
            .pricing-section,
            .features-section,
            .cta-section {
                padding-left: 25px;
                padding-right: 25px;
            }
            .stats-bar {
                padding-left: 25px;
                padding-right: 25px;
            }
            .price-amount {
                font-size: 44px;
            }
        }

        /* ============================================
           ENTRY ANIMATIONS
           ============================================ */
        .premium-card {
            opacity: 0;
            transform: translateY(40px);
        }

        .premium-card.animate-in {
            animation: cardEntry 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
        }

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

        /* ============================================
           CUSTOM SCROLLBAR
           ============================================ */
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: var(--dark-bg);
        }
        ::-webkit-scrollbar-thumb {
            background: rgba(212, 175, 55, 0.3);
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: rgba(212, 175, 55, 0.5);
        }
   
        /* ============================================
           SECTION STYLES
           ============================================ */
        .programs-section {
            padding: 120px 0;
            background: linear-gradient(180deg, var(--white) 0%, var(--bg-light) 100%);
            position: relative;
            overflow: hidden;
        }

        /* Decorative Elements */
        .programs-section::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(233,30,99,0.03) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .programs-section::after {
            content: '';
            position: absolute;
            bottom: -150px;
            left: -150px;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(33,150,243,0.03) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        /* ============================================
           SECTION HEADER
           ============================================ */
        .section-header {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
            z-index: 2;
        }

        .section-label {
            display: inline-block;
            font-family: 'Inter', sans-serif;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--text-light);
            margin-bottom: 20px;
            position: relative;
            padding: 0 20px;
        }

        .section-label::before,
        .section-label::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 40px;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--border-light));
        }

        .section-label::before { left: 0; }
        .section-label::after { right: 0; background: linear-gradient(90deg, var(--border-light), transparent); }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(36px, 5vw, 52px);
            font-weight: 600;
            color: var(--primary-dark);
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .section-subtitle {
            font-family: 'Inter', sans-serif;
            font-size: 16px;
            font-weight: 400;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.8;
        }

        /* ============================================
           PROGRAM CARDS GRID
           ============================================ */
        .programs-grid {
            position: relative;
            z-index: 2;
        }

        .program-card {
            background: var(--white);
            border-radius: 20px;
            padding: 50px 40px;
            margin-bottom: 30px;
            position: relative;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid var(--border-light);
            cursor: pointer;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .program-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--card-accent);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .program-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), 
                        rgba(255,255,255,0.8) 0%, 
                        transparent 60%);
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }

        .program-card:hover::before {
            transform: scaleX(1);
        }

        .program-card:hover::after {
            opacity: 1;
        }

        .program-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
            border-color: transparent;
        }

        /* Icon Container */
        .program-icon-wrapper {
            width: 80px;
            height: 80px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 30px;
            position: relative;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            background: var(--icon-bg);
        }

        .program-icon-wrapper i {
            font-size: 32px;
            color: var(--card-accent);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .program-card:hover .program-icon-wrapper {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 10px 30px var(--icon-shadow);
        }

        .program-card:hover .program-icon-wrapper i {
            transform: scale(1.1);
        }

        /* Content */
        .program-title {
            font-family: 'Playfair Display', serif;
            font-size: 24px;
            font-weight: 600;
            color: var(--primary-dark);
            margin-bottom: 15px;
            transition: color 0.3s ease;
        }

        .program-card:hover .program-title {
            color: var(--card-accent);
        }

        .program-description {
   
            font-size: 14px;
            font-weight: 400;
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 25px;
            flex-grow: 1;
        }

        /* Link/Arrow */
        .program-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
   
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--card-accent);
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
        }

        .program-link::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--card-accent);
            transition: width 0.3s ease;
        }

        .program-link:hover::after {
            width: 100%;
        }

        .program-link i {
            transition: transform 0.3s ease;
        }

        .program-link:hover i {
            transform: translateX(5px);
        }

        /* Floating Elements */
        .floating-shape {
            position: absolute;
            opacity: 0.05;
            font-size: 120px;
            color: var(--card-accent);
            top: 20px;
            right: 20px;
            transition: all 0.5s ease;
            pointer-events: none;
        }

        .program-card:hover .floating-shape {
            opacity: 0.1;
            transform: scale(1.2) rotate(10deg);
        }

        /* ============================================
           CATEGORY SPECIFIC COLORS
           ============================================ */
        .card-art {
            --card-accent: var(--art-color);
            --icon-bg: rgba(233,30,99,0.08);
            --icon-shadow: rgba(233,30,99,0.2);
        }

        .card-science {
            --card-accent: var(--science-color);
            --icon-bg: rgba(33,150,243,0.08);
            --icon-shadow: rgba(33,150,243,0.2);
        }

        .card-fashion {
            --card-accent: var(--fashion-color);
            --icon-bg: rgba(156,39,176,0.08);
            --icon-shadow: rgba(156,39,176,0.2);
        }

        .card-film {
            --card-accent: var(--film-color);
            --icon-bg: rgba(255,87,34,0.08);
            --icon-shadow: rgba(255,87,34,0.2);
        }

        .card-society {
            --card-accent: var(--society-color);
            --icon-bg: rgba(76,175,80,0.08);
            --icon-shadow: rgba(76,175,80,0.2);
        }

        .card-writing {
            --card-accent: var(--writing-color);
            --icon-bg: rgba(255,152,0,0.08);
            --icon-shadow: rgba(255,152,0,0.2);
        }

        /* ============================================
           NUMBER BADGE
           ============================================ */
        .program-number {
            position: absolute;
            top: 30px;
            right: 30px;
            font-family: 'Playfair Display', serif;
            font-size: 14px;
            font-weight: 600;
            color: var(--border-light);
            transition: color 0.3s ease;
        }

        .program-card:hover .program-number {
            color: var(--card-accent);
        }

        /* ============================================
           ANIMATION DELAYS
           ============================================ */
        .program-card {
            opacity: 0;
            transform: translateY(30px);
        }

        .program-card.animate-in {
            animation: cardFadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        }

        .program-card:nth-child(1) { animation-delay: 0.1s; }
        .program-card:nth-child(2) { animation-delay: 0.2s; }
        .program-card:nth-child(3) { animation-delay: 0.3s; }
        .program-card:nth-child(4) { animation-delay: 0.4s; }
        .program-card:nth-child(5) { animation-delay: 0.5s; }
        .program-card:nth-child(6) { animation-delay: 0.6s; }

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

        /* ============================================
           RESPONSIVE
           ============================================ */
        @media (max-width: 991px) {
            .programs-section {
                padding: 80px 0;
            }
            .program-card {
                padding: 40px 30px;
            }
        }

        @media (max-width: 767px) {
            .section-title {
                font-size: 32px;
            }
            .program-card {
                padding: 35px 25px;
            }
            .program-icon-wrapper {
                width: 70px;
                height: 70px;
            }
            .program-icon-wrapper i {
                font-size: 28px;
            }
            .program-title {
                font-size: 22px;
            }
        }

        /* ============================================
           LOADING STATE
           ============================================ */
        .program-card.is-loading {
            pointer-events: none;
        }

        /* ============================================
           ACCESSIBILITY
           ============================================ */
        .program-card:focus {
            outline: 3px solid var(--card-accent);
            outline-offset: 2px;
        }

        .program-card:focus-visible {
            outline: 3px solid var(--card-accent);
            outline-offset: 2px;
        }

        /* ============================================
           STEM LABS CARDS – AI & ROBOTICS
           ============================================ */
        .stem-labs-section {
            padding: 7rem 1.5rem;
            background: linear-gradient(160deg, #0a1f3d 0%, #123c70 50%, #0d2b52 100%);
            position: relative;
            overflow: hidden;
        }

        .stem-labs-section::before {
            content: '';
            position: absolute;
            top: -20%;
            left: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(89, 192, 71, 0.06) 0%, transparent 70%);
            border-radius: 50%;
            animation: stemOrbFloat1 12s ease-in-out infinite alternate;
        }

        .stem-labs-section::after {
            content: '';
            position: absolute;
            bottom: -15%;
            right: -8%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(125, 217, 109, 0.05) 0%, transparent 70%);
            border-radius: 50%;
            animation: stemOrbFloat2 10s ease-in-out infinite alternate;
        }

        @keyframes stemOrbFloat1 {
            0%   { transform: translate(0, 0) scale(1); }
            100% { transform: translate(60px, 40px) scale(1.15); }
        }

        @keyframes stemOrbFloat2 {
            0%   { transform: translate(0, 0) scale(1); }
            100% { transform: translate(-50px, -30px) scale(1.1); }
        }

        .stem-labs-section .container {
            position: relative;
            z-index: 2;
        }

        /* Section Header */
        .stem-section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .stem-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: var(--green);
            background: rgba(89, 192, 71, 0.08);
            border: 1px solid rgba(89, 192, 71, 0.25);
            padding: 0.5rem 1.4rem;
            border-radius: 50px;
            margin-bottom: 1.25rem;
        }

        .stem-section-header h2 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(2rem, 4.5vw, 3rem);
            font-weight: 700;
            background: linear-gradient(135deg, #ffffff 0%, #b0c4de 60%, var(--green-light) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
            line-height: 1.15;
        }

        .stem-section-header p {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.7);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.65;
        }

        /* Cards Grid */
        .stem-cards-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Individual Card */
        .stem-card {
            position: relative;
            background: rgba(255, 255, 255, 0.04);
            backdrop-filter: blur(18px) saturate(160%);
            -webkit-backdrop-filter: blur(18px) saturate(160%);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 24px;
            padding: 2.75rem 2rem 2.25rem;
            text-align: center;
            overflow: hidden;
            transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
        }

        /* Glass inner layer */
        .stem-card::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 24px;
            background: linear-gradient(
                160deg,
                rgba(255, 255, 255, 0.06) 0%,
                transparent 50%,
                rgba(255, 255, 255, 0.02) 100%
            );
            pointer-events: none;
            transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* Glow on hover */
        .stem-card::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(
                circle at var(--glow-x, 50%) var(--glow-y, 50%),
                var(--card-glow-color) 0%,
                transparent 60%
            );
            opacity: 0;
            transition: opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1);
            pointer-events: none;
            z-index: 0;
        }

        .stem-card:hover::after {
            opacity: 1;
        }

        .stem-card:hover {
            transform: translateY(-10px) scale(1.02);
            border-color: var(--card-border-glow);
            box-shadow:
                0 20px 60px var(--card-shadow),
                0 0 40px var(--card-glow-subtle),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
        }

        .stem-card:hover::before {
            background: linear-gradient(
                160deg,
                rgba(255, 255, 255, 0.1) 0%,
                transparent 50%,
                rgba(255, 255, 255, 0.03) 100%
            );
        }

        /* Card color themes */
        .stem-card.stem-cyan {
            --card-glow-color: rgba(0, 240, 255, 0.15);
            --card-border-glow: rgba(0, 240, 255, 0.35);
            --card-shadow: rgba(0, 240, 255, 0.12);
            --card-glow-subtle: rgba(0, 240, 255, 0.08);
            --card-accent: #00f0ff;
        }

        .stem-card.stem-green {
            --card-glow-color: rgba(89, 192, 71, 0.15);
            --card-border-glow: rgba(89, 192, 71, 0.35);
            --card-shadow: rgba(89, 192, 71, 0.12);
            --card-glow-subtle: rgba(89, 192, 71, 0.08);
            --card-accent: #59c047;
        }

        .stem-card.stem-purple {
            --card-glow-color: rgba(168, 85, 247, 0.15);
            --card-border-glow: rgba(168, 85, 247, 0.35);
            --card-shadow: rgba(168, 85, 247, 0.12);
            --card-glow-subtle: rgba(168, 85, 247, 0.08);
            --card-accent: #a855f7;
        }

        .stem-card.stem-amber {
            --card-glow-color: rgba(245, 158, 11, 0.15);
            --card-border-glow: rgba(245, 158, 11, 0.35);
            --card-shadow: rgba(245, 158, 11, 0.12);
            --card-glow-subtle: rgba(245, 158, 11, 0.08);
            --card-accent: #f59e0b;
        }

        .stem-card.stem-rose {
            --card-glow-color: rgba(244, 63, 94, 0.15);
            --card-border-glow: rgba(244, 63, 94, 0.35);
            --card-shadow: rgba(244, 63, 94, 0.12);
            --card-glow-subtle: rgba(244, 63, 94, 0.08);
            --card-accent: #f43f5e;
        }

        .stem-card.stem-teal {
            --card-glow-color: rgba(20, 184, 166, 0.15);
            --card-border-glow: rgba(20, 184, 166, 0.35);
            --card-shadow: rgba(20, 184, 166, 0.12);
            --card-glow-subtle: rgba(20, 184, 166, 0.08);
            --card-accent: #14b8a6;
        }

        /* Card number */
        .stem-card-number {
            position: absolute;
            top: 1.25rem;
            right: 1.5rem;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 3.5rem;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.03);
            line-height: 1;
            pointer-events: none;
            transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .stem-card:hover .stem-card-number {
            color: rgba(255, 255, 255, 0.06);
        }

        /* Icon */
        .stem-card-icon {
            position: relative;
            z-index: 1;
            width: 72px;
            height: 72px;
            margin: 0 auto 1.5rem;
            background: linear-gradient(
                135deg,
                var(--card-accent) 0%,
                color-mix(in srgb, var(--card-accent) 60%, white) 100%
            );
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow:
                0 8px 30px color-mix(in srgb, var(--card-accent) 25%, transparent),
                inset 0 1px 0 rgba(255, 255, 255, 0.25);
            transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .stem-card:hover .stem-card-icon {
            transform: rotate(-8deg) scale(1.1);
            box-shadow:
                0 12px 40px color-mix(in srgb, var(--card-accent) 35%, transparent),
                0 0 20px color-mix(in srgb, var(--card-accent) 20%, transparent),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
        }

        .stem-card-icon i {
            font-size: 1.75rem;
            color: #0a1f3d;
        }

        /* Card title */
        .stem-card-title {
            position: relative;
            z-index: 1;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.35rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 0.75rem;
            transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .stem-card:hover .stem-card-title {
            color: var(--card-accent);
        }

        /* Card description */
        .stem-card-desc {
            position: relative;
            z-index: 1;
            font-size: 0.92rem;
            line-height: 1.65;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 1.5rem;
            transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .stem-card:hover .stem-card-desc {
            color: rgba(255, 255, 255, 0.75);
        }

        /* Card link */
        .stem-card-link {
            position: relative;
            z-index: 1;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.88rem;
            font-weight: 600;
            color: var(--card-accent);
            text-decoration: none;
            opacity: 0;
            transform: translateY(8px);
            transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .stem-card:hover .stem-card-link {
            opacity: 1;
            transform: translateY(0);
        }

        .stem-card-link i {
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .stem-card-link:hover i {
            transform: translateX(4px);
        }

        /* Decorative floating particles inside cards */
        .stem-card-particle {
            position: absolute;
            width: 3px;
            height: 3px;
            border-radius: 50%;
            background: var(--card-accent);
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.45s ease;
        }

        .stem-card:hover .stem-card-particle {
            opacity: 0.35;
            animation: stemParticleFloat 3s ease-in-out infinite alternate;
        }

        .stem-card-particle:nth-child(1) { top: 15%; left: 10%; animation-delay: 0s; }
        .stem-card-particle:nth-child(2) { top: 70%; left: 85%; animation-delay: 0.8s; }
        .stem-card-particle:nth-child(3) { top: 40%; left: 90%; animation-delay: 1.6s; }

        @keyframes stemParticleFloat {
            0%   { transform: translate(0, 0) scale(1); }
            100% { transform: translate(8px, -12px) scale(1.5); }
        }

        /* Responsive */
        @media (max-width: 991px) {
            .stem-cards-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }
            .stem-labs-section {
                padding: 5rem 1.25rem;
            }
        }

        @media (max-width: 576px) {
            .stem-cards-grid {
                grid-template-columns: 1fr;
                gap: 1.25rem;
                max-width: 400px;
                margin: 0 auto;
            }
            .stem-card {
                padding: 2.25rem 1.5rem 1.75rem;
            }
            .stem-card-icon {
                width: 64px;
                height: 64px;
            }
            .stem-card-icon i {
                font-size: 1.5rem;
            }
            .stem-card-title {
                font-size: 1.2rem;
            }
            .stem-labs-section {
                padding: 4rem 1rem;
            }
            .stem-section-header {
                margin-bottom: 2.5rem;
            }
            .stem-section-header h2 {
                font-size: 1.75rem;
            }
        }

        /* ============================================
           GLASS STATS COUNTERS – LIGHT THEME
           ============================================ */
        .glass-stats-section {
            background: linear-gradient(160deg, #f8fafc 0%, #eef2f7 40%, #f0f5fa 100%);
            padding: 6rem 1.5rem;
            position: relative;
            overflow: hidden;
        }

        /* Decorative Background Patterns */
        .stats-bg-pattern {
            position: absolute;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            pointer-events: none;
            opacity: 0.4;
            z-index: 0;
            background:
                radial-gradient(circle, rgba(89, 192, 71, 0.06) 0%, transparent 70%),
                radial-gradient(circle at 80% 80%, rgba(18, 60, 112, 0.04) 0%, transparent 60%);
            top: -150px;
            right: -100px;
            animation: statsPattern1 15s ease-in-out infinite alternate;
        }

        .stats-bg-pattern-2 {
            z-index: 0;
            top: auto;
            right: auto;
            bottom: -120px;
            left: -80px;
            width: 400px;
            height: 400px;
            background:
                radial-gradient(circle, rgba(0, 240, 255, 0.04) 0%, transparent 70%),
                radial-gradient(circle at 20% 20%, rgba(168, 85, 247, 0.03) 0%, transparent 60%);
            animation: statsPattern2 12s ease-in-out infinite alternate;
        }

        /* Dot grid pattern overlay */
        .glass-stats-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: radial-gradient(circle, rgba(18, 60, 112, 0.04) 1px, transparent 1px);
            background-size: 24px 24px;
            pointer-events: none;
            z-index: 0;
        }

        /* Top/bottom accent lines */
        .glass-stats-section::after {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--green), transparent);
            border-radius: 3px;
        }

        @keyframes statsPattern1 {
            0%   { transform: translate(0, 0) scale(1); }
            100% { transform: translate(40px, 30px) scale(1.1); }
        }

        @keyframes statsPattern2 {
            0%   { transform: translate(0, 0) scale(1); }
            100% { transform: translate(-30px, -20px) scale(1.15); }
        }

       .glass-stats-section .container {
            position: relative;
            z-index: 2;
            /* max-width: 1200px;
            margin: 0 auto; */
        } 

        /* Section Header */
        .stats-header {
            text-align: center;
            margin-bottom: 3.5rem;
        }

        .stats-header .stats-tag {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--navy);
            background: rgba(18, 60, 112, 0.06);
            border: 1px solid rgba(18, 60, 112, 0.1);
            padding: 0.4rem 1.2rem;
            border-radius: 50px;
            margin-bottom: 1.2rem;
        }

        .stats-header h2 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(2rem, 4.5vw, 2.8rem);
            font-weight: 700;
            color: var(--navy-dark);
            margin-bottom: 0.75rem;
            line-height: 1.15;
        }

        .stats-header h2 span {
            background: linear-gradient(135deg, var(--green) 0%, var(--navy) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stats-header p {
            font-size: 1.05rem;
            color: #64748b;
            max-width: 520px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Cards Grid */
        .stats-cards-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.75rem;
        }

        /* Individual Glass Card */
        .stats-glass-card {
            position: relative;
            background: rgba(255, 255, 255, 0.65);
            backdrop-filter: blur(20px) saturate(150%);
            -webkit-backdrop-filter: blur(20px) saturate(150%);
            border: 1px solid rgba(255, 255, 255, 0.8);
            border-radius: 24px;
            padding: 2.5rem 1.75rem 2rem;
            text-align: center;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: default;
        }

        /* Inner glass texture */
        .stats-card-bg {
            position: absolute;
            inset: 0;
            border-radius: 24px;
            background: linear-gradient(
                160deg,
                rgba(255, 255, 255, 0.5) 0%,
                rgba(255, 255, 255, 0.1) 50%,
                rgba(248, 250, 252, 0.3) 100%
            );
            pointer-events: none;
            transition: all 0.5s ease;
        }

        /* Glow effect on hover */
        .stats-card-glow {
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(
                circle at 50% 50%,
                rgba(89, 192, 71, 0.06) 0%,
                transparent 50%
            );
            opacity: 0;
            transition: opacity 0.5s ease;
            pointer-events: none;
        }

        .stats-glass-card:hover .stats-card-glow {
            opacity: 1;
        }

        .stats-glass-card:hover {
            transform: translateY(-10px) scale(1.03);
            border-color: rgba(89, 192, 71, 0.25);
            box-shadow:
                0 20px 60px rgba(18, 60, 112, 0.08),
                0 8px 20px rgba(89, 192, 71, 0.06),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
        }

        .stats-glass-card:hover .stats-card-bg {
            background: linear-gradient(
                160deg,
                rgba(255, 255, 255, 0.8) 0%,
                rgba(240, 253, 244, 0.4) 50%,
                rgba(255, 255, 255, 0.5) 100%
            );
        }

        /* Card Content */
        .stats-card-content {
            position: relative;
            z-index: 1;
        }

        /* Icon */
        .stats-icon-wrap {
            width: 56px;
            height: 56px;
            margin: 0 auto 1.25rem;
            background: linear-gradient(135deg, rgba(89, 192, 71, 0.1) 0%, rgba(89, 192, 71, 0.04) 100%);
            border: 1px solid rgba(89, 192, 71, 0.15);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .stats-glass-card:hover .stats-icon-wrap {
            background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
            border-color: transparent;
            box-shadow: 0 8px 25px rgba(89, 192, 71, 0.3);
            transform: rotate(-8deg) scale(1.1);
        }

        .stats-icon-wrap i {
            font-size: 1.35rem;
            color: var(--navy);
            transition: all 0.5s ease;
        }

        .stats-glass-card:hover .stats-icon-wrap i {
            color: #ffffff;
        }

        /* Counter Number */
        .stats-number {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 2.75rem;
            font-weight: 700;
            color: var(--navy-dark);
            line-height: 1;
            margin-bottom: 0.5rem;
            transition: all 0.4s ease;
        }

        .stats-number .counter {
            display: inline;
        }

        .stats-glass-card:hover .stats-number {
            color: var(--green);
            transform: scale(1.05);
        }

        /* Label */
        .stats-label {
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--navy-dark);
            margin-bottom: 0.3rem;
        }

        /* Sub-label */
        .stats-sublabel {
            font-size: 0.78rem;
            color: #94a3b8;
            line-height: 1.4;
        }

        /* Card hover stagger icon animation */
        .stats-glass-card:hover .stats-icon-wrap i {
            animation: statsIconBounce 0.6s ease;
        }

        @keyframes statsIconBounce {
            0%, 100% { transform: translateY(0); }
            50%      { transform: translateY(-4px); }
        }

        /* Accent bar at card bottom */
        .stats-glass-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 3px;
            background: linear-gradient(90deg, var(--green), var(--green-light));
            border-radius: 3px;
            opacity: 0;
            transition: all 0.5s ease;
        }

        .stats-glass-card:hover::after {
            width: 60px;
            opacity: 1;
        }

        /* Responsive */
        @media (max-width: 1199px) {
            .stats-cards-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }
            .glass-stats-section {
                padding: 5rem 1.25rem;
            }
        }

        @media (max-width: 576px) {
            .stats-cards-grid {
                grid-template-columns: 1fr;
                max-width: 340px;
                margin: 0 auto;
                gap: 1.25rem;
            }
            .stats-glass-card {
                padding: 2rem 1.5rem 1.75rem;
            }
            .stats-number {
                font-size: 2.25rem;
            }
            .glass-stats-section {
                padding: 4rem 1rem;
            }
            .stats-header h2 {
                font-size: 1.75rem;
            }
        }

        /* ============================================
           MASONRY PROJECT GALLERY
           ============================================ */
        .masonry-gallery-section {
            background: linear-gradient(170deg, #f0f4f8 0%, #e8eef5 50%, #f5f7fa 100%);
            padding: 6rem 1.5rem;
            position: relative;
            overflow: hidden;
        }

        .masonry-gallery-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                radial-gradient(circle at 1px 1px, rgba(18, 60, 112, 0.035) 1px, transparent 0);
            background-size: 32px 32px;
            pointer-events: none;
        }

        /* Top accent line */
        .masonry-gallery-section::after {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--navy), transparent);
            border-radius: 3px;
        }

         .masonry-gallery-section .container {
            position: relative;
            z-index: 2;
            /* max-width: 1300px;
            margin: 0 auto; */
        }  

        /* Section Header */
        .masonry-header {
            text-align: center;
            margin-bottom: 3.5rem;
        }

        .masonry-header .masonry-tag {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--navy);
            background: rgba(18, 60, 112, 0.06);
            border: 1px solid rgba(18, 60, 112, 0.1);
            padding: 0.4rem 1.2rem;
            border-radius: 50px;
            margin-bottom: 1.2rem;
        }

        .masonry-header h2 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(2rem, 4.5vw, 2.8rem);
            font-weight: 700;
            color: var(--navy-dark);
            margin-bottom: 0.75rem;
        }

        .masonry-header h2 span {
            background: linear-gradient(135deg, var(--green) 0%, var(--navy) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .masonry-header p {
            font-size: 1.05rem;
            color: #64748b;
            max-width: 540px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Masonry Grid – CSS columns approach */
        .masonry-grid {
            column-count: 3;
            column-gap: 1.25rem;
        }

        /* Individual Masonry Item */
        .masonry-item {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            margin-bottom: 1.25rem;
            break-inside: avoid;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .masonry-item img {
            width: 100%;
            display: block;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.6s ease;
        }

        /* Tall items */
        .masonry-tall img {
            aspect-ratio: 3/4;
            object-fit: cover;
        }

        /* Wide items */
        .masonry-wide img {
            aspect-ratio: 4/3;
            object-fit: cover;
        }

        /* Default square */
        .masonry-item img {
            aspect-ratio: 1/1;
            object-fit: cover;
        }

        /* Hover lift */
        .masonry-item:hover {
            transform: translateY(-6px);
            box-shadow:
                0 16px 40px rgba(18, 60, 112, 0.12),
                0 6px 16px rgba(89, 192, 71, 0.06);
        }

        /* Zoom image on hover */
        .masonry-item:hover img {
            transform: scale(1.08);
            filter: brightness(0.85) saturate(1.1);
        }

        /* Light Blue Hover Overlay */
        .masonry-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(
                180deg,
                rgba(173, 216, 230, 0) 0%,
                rgba(135, 206, 235, 0.85) 40%,
                rgba(100, 181, 220, 0.95) 100%
            );
            display: flex;
            align-items: flex-end;
            justify-content: flex-start;
            padding: 1.5rem;
            opacity: 0;
            visibility: hidden;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .masonry-item:hover .masonry-overlay {
            opacity: 1;
            visibility: visible;
        }

        /* Overlay Content */
        .masonry-info {
            transform: translateY(20px);
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .masonry-item:hover .masonry-info {
            transform: translateY(0);
        }

        /* Category Badge */
        .masonry-category {
            display: inline-block;
            font-size: 0.65rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--navy-dark);
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
            padding: 0.3rem 0.75rem;
            border-radius: 50px;
            margin-bottom: 0.5rem;
            border: 1px solid rgba(255, 255, 255, 0.5);
        }

        /* Project Name */
        .masonry-project-name {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--navy-dark);
            margin-bottom: 0.25rem;
            line-height: 1.25;
        }

        /* Project Location */
        .masonry-project-location {
            font-size: 0.8rem;
            color: rgba(10, 31, 61, 0.7);
            margin: 0;
            display: flex;
            align-items: center;
            gap: 0.35rem;
        }

        .masonry-project-location::before {
            content: '\f3c5';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            font-size: 0.7rem;
        }

        /* View More Button */
        .masonry-cta {
            text-align: center;
            margin-top: 3rem;
        }

        .masonry-view-more-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem 2.5rem;
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(18, 60, 112, 0.15);
            border-radius: 60px;
            color: var(--navy);
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.95rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .masonry-view-more-btn::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
            opacity: 0;
            transition: opacity 0.45s ease;
            border-radius: 60px;
        }

        .masonry-view-more-btn:hover::before {
            opacity: 1;
        }

        .masonry-view-more-btn:hover {
            color: #ffffff;
            border-color: transparent;
            transform: translateY(-3px);
            box-shadow:
                0 12px 35px rgba(18, 60, 112, 0.2),
                0 4px 12px rgba(89, 192, 71, 0.1);
        }

        .masonry-view-more-btn span,
        .masonry-view-more-btn i {
            position: relative;
            z-index: 1;
        }

        .masonry-view-more-btn i {
            transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .masonry-view-more-btn:hover i {
            transform: translateX(4px);
        }

        /* Responsive */
        @media (max-width: 991px) {
            .masonry-grid {
                column-count: 2;
                column-gap: 1rem;
            }
            .masonry-item {
                margin-bottom: 1rem;
                border-radius: 16px;
            }
            .masonry-gallery-section {
                padding: 5rem 1.25rem;
            }
            .masonry-overlay {
                padding: 1.25rem;
            }
            .masonry-project-name {
                font-size: 0.95rem;
            }
        }

        @media (max-width: 576px) {
            .masonry-grid {
                column-count: 1;
                max-width: 400px;
                margin: 0 auto;
            }
            .masonry-gallery-section {
                padding: 4rem 1rem;
            }
            .masonry-header h2 {
                font-size: 1.75rem;
            }
            .masonry-view-more-btn {
                padding: 0.85rem 2rem;
                font-size: 0.88rem;
            }
        }

        /* ============================================
           CTA SECTION – DARK PARTICLE + ROBOT
           ============================================ */
        .cta-dark-section {
            background: linear-gradient(160deg, #0a0e1a 0%, #0d1b2a 40%, #0a1f3d 100%);
            padding: 7rem 1.5rem;
            position: relative;
            overflow: hidden;
        }

        #ctaParticleCanvas {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .cta-grid-lines {
            position: absolute;
            inset: 0;
            z-index: 0;
            background-image:
                linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
            background-size: 60px 60px;
        }

        /* Ambient glow orbs */
        .cta-dark-section::before {
            content: '';
            position: absolute;
            top: 20%;
            left: -5%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(89, 192, 71, 0.06) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 1;
            animation: ctaOrbFloat1 14s ease-in-out infinite alternate;
        }

        .cta-dark-section::after {
            content: '';
            position: absolute;
            bottom: 10%;
            right: -5%;
            width: 450px;
            height: 450px;
            background: radial-gradient(circle, rgba(0, 240, 255, 0.04) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 1;
            animation: ctaOrbFloat2 12s ease-in-out infinite alternate;
        }

        @keyframes ctaOrbFloat1 {
            0%   { transform: translate(0, 0); }
            100% { transform: translate(50px, 30px); }
        }
        @keyframes ctaOrbFloat2 {
            0%   { transform: translate(0, 0); }
            100% { transform: translate(-40px, -20px); }
        }

        .cta-container {
            position: relative;
            z-index: 3;
            max-width: 1200px;
            margin: 0 auto;
        }

        .cta-grid {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 4rem;
            align-items: center;
        }

        /* CTA Content */
        .cta-tag {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--green);
            background: rgba(89, 192, 71, 0.08);
            border: 1px solid rgba(89, 192, 71, 0.2);
            padding: 0.45rem 1.2rem;
            border-radius: 50px;
            margin-bottom: 1.5rem;
        }

        .cta-heading {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(2rem, 4.5vw, 2.8rem);
            font-weight: 700;
            color: #ffffff;
            line-height: 1.15;
            margin-bottom: 1.25rem;
        }

        .cta-heading span {
            background: linear-gradient(135deg, var(--green) 0%, #00f0ff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .cta-text {
            font-size: 1.08rem;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.7;
            margin-bottom: 2.5rem;
            max-width: 500px;
        }

        /* CTA Buttons */
        .cta-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            margin-bottom: 2.5rem;
        }

        .cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.65rem;
            padding: 1rem 2rem;
            border-radius: 12px;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.95rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .cta-btn-primary {
            background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
            color: #0a1f3d;
            box-shadow: 0 6px 20px rgba(89, 192, 71, 0.3);
        }

        .cta-btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: 0.6s;
        }

        .cta-btn-primary:hover::before {
            left: 100%;
        }

        .cta-btn-primary:hover {
            transform: translateY(-3px);
            box-shadow:
                0 12px 35px rgba(89, 192, 71, 0.4),
                0 0 20px rgba(89, 192, 71, 0.2);
        }

        .cta-btn-outline {
            background: transparent;
            color: #ffffff;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .cta-btn-outline:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 255, 255, 0.4);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }

        /* Trust Indicators */
        .cta-trust {
            display: flex;
            flex-wrap: wrap;
            gap: 1.25rem;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.82rem;
            color: rgba(255, 255, 255, 0.45);
        }

        .trust-item i {
            color: var(--green);
            font-size: 0.9rem;
        }

        /* ============================================
           ROBOT ILLUSTRATION
           ============================================ */
        .cta-visual {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .robot-illustration {
            position: relative;
            width: 100%;
            max-width: 450px;
            aspect-ratio: 1/1;
        }

        /* Platform Glow */
        .platform-glow {
            position: absolute;
            bottom: 5%;
            left: 50%;
            transform: translateX(-50%);
            width: 70%;
            height: 12%;
            background: radial-gradient(ellipse, rgba(89, 192, 71, 0.2) 0%, transparent 70%);
            border-radius: 50%;
            animation: platformPulse 3s ease-in-out infinite alternate;
        }

        @keyframes platformPulse {
            0%   { opacity: 0.5; transform: translateX(-50%) scaleX(1); }
            100% { opacity: 0.8; transform: translateX(-50%) scaleX(1.15); }
        }

        /* Robot Body */
        .robot-body {
            position: absolute;
            inset: 8%;
            display: flex;
            flex-direction: column;
            align-items: center;
            z-index: 2;
            animation: robotFloat 4s ease-in-out infinite;
        }

        @keyframes robotFloat {
            0%, 100% { transform: translateY(0); }
            50%      { transform: translateY(-12px); }
        }

        /* Antenna */
        .robot-antenna {
            position: absolute;
            top: -22px;
            left: 50%;
            transform: translateX(-50%);
            width: 2px;
            height: 18px;
            background: rgba(89, 192, 71, 0.5);
        }

        .antenna-tip {
            position: absolute;
            top: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 8px;
            height: 8px;
            background: var(--green);
            border-radius: 50%;
            box-shadow: 0 0 10px var(--green), 0 0 20px rgba(89, 192, 71, 0.3);
            animation: antennaBlink 2s ease-in-out infinite;
        }

        @keyframes antennaBlink {
            0%, 100% { opacity: 1; transform: translateX(-50%) scale(1); }
            50%      { opacity: 0.4; transform: translateX(-50%) scale(0.7); }
        }

        /* Head */
        .robot-head {
            position: relative;
            width: 65%;
            aspect-ratio: 1.4/1;
            background: linear-gradient(180deg, #1a3a5c 0%, #0d2240 100%);
            border: 2px solid rgba(89, 192, 71, 0.25);
            border-radius: 20px 20px 16px 16px;
            box-shadow:
                inset 0 2px 4px rgba(255, 255, 255, 0.05),
                0 4px 15px rgba(0, 0, 0, 0.3),
                0 0 20px rgba(89, 192, 71, 0.08);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            overflow: visible;
        }

        /* Eyes */
        .robot-eyes {
            display: flex;
            gap: 25%;
            margin-top: 8px;
        }

        .robot-eye {
            width: 28px;
            height: 28px;
            background: radial-gradient(circle, var(--green) 0%, rgba(89, 192, 71, 0.3) 100%);
            border-radius: 50%;
            position: relative;
            box-shadow: 0 0 12px rgba(89, 192, 71, 0.5);
            animation: eyeGlow 3s ease-in-out infinite alternate;
        }

        @keyframes eyeGlow {
            0%   { box-shadow: 0 0 12px rgba(89, 192, 71, 0.5); }
            100% { box-shadow: 0 0 20px rgba(89, 192, 71, 0.8), 0 0 30px rgba(89, 192, 71, 0.3); }
        }

        .eye-pupil {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 10px;
            height: 10px;
            background: #ffffff;
            border-radius: 50%;
            box-shadow: 0 0 6px #ffffff;
            animation: pupilLook 5s ease-in-out infinite;
        }

        @keyframes pupilLook {
            0%, 100% { transform: translate(-50%, -50%); }
            25%      { transform: translate(-30%, -60%); }
            50%      { transform: translate(-70%, -50%); }
            75%      { transform: translate(-40%, -40%); }
        }

        /* Mouth */
        .robot-mouth {
            margin-top: 8px;
            width: 40%;
            height: 6px;
            background: rgba(89, 192, 71, 0.15);
            border-radius: 0 0 20px 20px;
            overflow: hidden;
        }

        .mouth-smile {
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent 0%, var(--green) 50%, transparent 100%);
            border-radius: 0 0 20px 20px;
            animation: mouthTalk 2s ease-in-out infinite;
        }

        @keyframes mouthTalk {
            0%, 100% { height: 100%; }
            50%      { height: 60%; }
        }

        /* Neck */
        .robot-neck {
            width: 25%;
            height: 12px;
            background: linear-gradient(180deg, #0d2240, #1a3a5c);
            border-left: 2px solid rgba(89, 192, 71, 0.2);
            border-right: 2px solid rgba(89, 192, 71, 0.2);
        }

        /* Torso */
        .robot-torso {
            position: relative;
            width: 70%;
            aspect-ratio: 1.1/1;
            background: linear-gradient(180deg, #1a3a5c 0%, #0d2240 100%);
            border: 2px solid rgba(89, 192, 71, 0.2);
            border-radius: 16px;
            box-shadow:
                inset 0 2px 4px rgba(255, 255, 255, 0.04),
                0 4px 15px rgba(0, 0, 0, 0.25);
            display: flex;
            flex-direction: column;
            align-items: center;
            padding-top: 12px;
            gap: 6px;
        }

        .torso-screen {
            width: 60%;
            height: 35%;
            background: rgba(89, 192, 71, 0.08);
            border: 1px solid rgba(89, 192, 71, 0.2);
            border-radius: 6px;
            position: relative;
            overflow: hidden;
        }

        .torso-screen::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 50%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(89, 192, 71, 0.15), transparent);
            animation: screenScan 3s linear infinite;
        }

        @keyframes screenScan {
            0%   { left: -50%; }
            100% { left: 150%; }
        }

        .torso-light {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            animation: torsoBlink 2s ease-in-out infinite;
        }

        .torso-light:nth-child(2) {
            background: var(--green);
            box-shadow: 0 0 8px var(--green);
            animation-delay: 0s;
        }

        .torso-light:nth-child(3) {
            background: #00f0ff;
            box-shadow: 0 0 8px #00f0ff;
            animation-delay: 1s;
        }

        @keyframes torsoBlink {
            0%, 100% { opacity: 1; transform: scale(1); }
            50%      { opacity: 0.3; transform: scale(0.7); }
        }

        /* Arms */
        .robot-arm {
            position: absolute;
            top: 50%;
            width: 12%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .arm-left {
            left: -8%;
        }

        .arm-right {
            right: -8%;
        }

        .arm-joint {
            width: 16px;
            height: 16px;
            background: linear-gradient(135deg, #1a3a5c, #0d2240);
            border: 1px solid rgba(89, 192, 71, 0.3);
            border-radius: 50%;
            margin-bottom: 4px;
            box-shadow: 0 0 6px rgba(89, 192, 71, 0.2);
        }

        .arm-claw {
            position: relative;
            width: 20px;
            height: 16px;
        }

        .claw-left, .claw-right {
            position: absolute;
            width: 3px;
            height: 14px;
            background: rgba(89, 192, 71, 0.4);
            border-radius: 3px;
        }

        .claw-left {
            left: 2px;
            transform: rotate(-15deg);
            animation: clawMove 3s ease-in-out infinite;
        }

        .claw-right {
            right: 2px;
            transform: rotate(15deg);
            animation: clawMove 3s ease-in-out infinite;
        }

        @keyframes clawMove {
            0%, 100% { transform: rotate(var(--claw-rotate, -15deg)); }
            50%      { transform: rotate(0deg); }
        }

        .claw-left { --claw-rotate: -15deg; }
        .claw-right { --claw-rotate: 15deg; }

        /* Base/Tracks */
        .robot-base {
            width: 80%;
            margin-top: 2px;
        }

        .base-track {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: linear-gradient(180deg, #0d2240, #081828);
            border: 1px solid rgba(89, 192, 71, 0.15);
            border-radius: 8px;
            padding: 4px 8px;
        }

        .track-wheel {
            width: 14px;
            height: 14px;
            background: rgba(89, 192, 71, 0.15);
            border: 1px solid rgba(89, 192, 71, 0.25);
            border-radius: 50%;
            animation: wheelSpin 2s linear infinite;
        }

        @keyframes wheelSpin {
            0%   { transform: rotate(0deg); box-shadow: 0 0 4px rgba(89, 192, 71, 0.2); }
            100% { transform: rotate(360deg); box-shadow: 0 0 8px rgba(89, 192, 71, 0.4); }
        }

        /* Floating Tech Icons */
        .floating-icon {
            position: absolute;
            width: 40px;
            height: 40px;
            background: rgba(89, 192, 71, 0.08);
            border: 1px solid rgba(89, 192, 71, 0.15);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1;
        }

        .floating-icon i {
            font-size: 1rem;
            color: var(--green);
        }

        .icon-ai {
            top: 5%;
            right: 5%;
            animation: floatIcon1 5s ease-in-out infinite;
        }

        .icon-code {
            top: 15%;
            left: 0;
            animation: floatIcon2 6s ease-in-out infinite;
        }

        .icon-chip {
            bottom: 20%;
            right: 0;
            animation: floatIcon3 4.5s ease-in-out infinite;
        }

        .icon-signal {
            bottom: 10%;
            left: 5%;
            animation: floatIcon4 5.5s ease-in-out infinite;
        }

        @keyframes floatIcon1 {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50%      { transform: translateY(-15px) rotate(5deg); }
        }
        @keyframes floatIcon2 {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50%      { transform: translateY(12px) rotate(-4deg); }
        }
        @keyframes floatIcon3 {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50%      { transform: translateY(-18px) rotate(6deg); }
        }
        @keyframes floatIcon4 {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50%      { transform: translateY(10px) rotate(-5deg); }
        }

        /* Robot Particles */
        .robot-particle {
            position: absolute;
            border-radius: 50%;
            background: var(--green);
            opacity: 0.3;
        }

        .p1 { width: 4px; height: 4px; top: 10%; left: 15%; animation: rParticle1 6s ease-in-out infinite; }
        .p2 { width: 3px; height: 3px; top: 25%; right: 10%; animation: rParticle2 7s ease-in-out infinite; }
        .p3 { width: 5px; height: 5px; bottom: 15%; left: 20%; animation: rParticle3 5s ease-in-out infinite; }
        .p4 { width: 3px; height: 3px; bottom: 30%; right: 15%; animation: rParticle1 8s ease-in-out infinite; }
        .p5 { width: 4px; height: 4px; top: 40%; left: 5%;  animation: rParticle2 6.5s ease-in-out infinite; }
        .p6 { width: 3px; height: 3px; top: 55%; right: 5%; animation: rParticle3 5.5s ease-in-out infinite; }

        @keyframes rParticle1 {
            0%, 100% { transform: translate(0, 0); opacity: 0.3; }
            50%      { transform: translate(15px, -20px); opacity: 0.6; }
        }
        @keyframes rParticle2 {
            0%, 100% { transform: translate(0, 0); opacity: 0.3; }
            50%      { transform: translate(-12px, 15px); opacity: 0.5; }
        }
        @keyframes rParticle3 {
            0%, 100% { transform: translate(0, 0); opacity: 0.2; }
            50%      { transform: translate(10px, -10px); opacity: 0.7; }
        }

        /* Responsive */
        @media (max-width: 991px) {
            .cta-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
                text-align: center;
            }
            .cta-text { max-width: 100%; margin-left: auto; margin-right: auto; }
            .cta-buttons { justify-content: center; }
            .cta-trust { justify-content: center; }
            .cta-visual { order: -1; }
            .robot-illustration { max-width: 350px; }
            .cta-dark-section { padding: 5rem 1.25rem; }
        }

        @media (max-width: 576px) {
            .cta-heading { font-size: 1.65rem; }
            .cta-text { font-size: 0.95rem; }
            .cta-buttons { flex-direction: column; align-items: center; }
            .cta-btn { width: 100%; max-width: 280px; justify-content: center; }
            .cta-trust { flex-direction: column; align-items: center; gap: 0.75rem; }
            .robot-illustration { max-width: 280px; }
            .cta-dark-section { padding: 4rem 1rem; }
        }
        .premium-footer {
            background: linear-gradient(180deg, #0a1f3d 0%, #060e1a 100%);
            color: rgba(255, 255, 255, 0.7);
            position: relative;
            overflow: hidden;
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        .premium-footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--green), transparent);
        }

        /* Ambient glow */
        .footer-glow-1,
        .footer-glow-2,
        .footer-glow-3 {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            pointer-events: none;
        }

        .footer-glow-1 {
            width: 400px;
            height: 400px;
            top: -100px;
            left: -100px;
            background: rgba(89, 192, 71, 0.04);
            animation: footerGlow1 10s ease-in-out infinite alternate;
        }

        .footer-glow-2 {
            width: 350px;
            height: 350px;
            bottom: -80px;
            right: -80px;
            background: rgba(0, 240, 255, 0.03);
            animation: footerGlow2 12s ease-in-out infinite alternate;
        }

        .footer-glow-3 {
            width: 250px;
            height: 250px;
            top: 40%;
            left: 50%;
            background: rgba(168, 85, 247, 0.03);
            animation: footerGlow3 8s ease-in-out infinite alternate;
        }

        @keyframes footerGlow1 {
            0%   { transform: translate(0, 0) scale(1); opacity: 0.5; }
            100% { transform: translate(50px, 30px) scale(1.2); opacity: 0.8; }
        }
        @keyframes footerGlow2 {
            0%   { transform: translate(0, 0) scale(1); opacity: 0.4; }
            100% { transform: translate(-40px, -20px) scale(1.15); opacity: 0.7; }
        }
        @keyframes footerGlow3 {
            0%   { transform: translate(-50%, 0) scale(1); opacity: 0.3; }
            100% { transform: translate(-50%, -30px) scale(1.1); opacity: 0.6; }
        }

        /* Top wave separator */
        .footer-wave {
            display: block;
            width: 100%;
            height: 80px;
            background: linear-gradient(160deg, #0a1f3d 0%, #0d2b52 100%);
            position: relative;
        }

        .footer-wave::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 40px;
            background: linear-gradient(180deg, transparent 0%, #0a1f3d 100%);
        }

        .footer-main {
            position: relative;
            z-index: 2;
            padding: 4.5rem 1.5rem 3rem;
        }

        /* .footer-main .container {
            max-width: 1200px;
            margin: 0 auto;
        } */

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
            gap: 3rem;
        }

        /* Brand Column */
        .footer-brand {
            padding-right: 1rem;
        }

        .footer-brand-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 1.5rem;
            text-decoration: none;
        }

        .footer-brand-logo .logo-icon {
            width: 44px;
            height: 44px;
            background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(89, 192, 71, 0.3);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .footer-brand-logo:hover .logo-icon {
            transform: rotate(-8deg) scale(1.08);
            box-shadow: 0 8px 25px rgba(89, 192, 71, 0.45);
        }

        .footer-brand-logo .logo-icon i {
            font-size: 1.4rem;
            color: #0a1f3d;
        }

        .footer-brand-logo .logo-text {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.6rem;
            font-weight: 700;
            background: linear-gradient(135deg, #ffffff 0%, #a5b4fc 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .footer-brand-logo .logo-text span {
            background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .footer-brand p {
            font-size: 0.92rem;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.55);
            margin-bottom: 1.5rem;
            max-width: 300px;
        }

        /* Social Icons */
        .footer-socials {
            display: flex;
            gap: 0.75rem;
            flex-wrap: wrap;
        }

        .footer-social-link {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .footer-social-link::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
            opacity: 0;
            transition: opacity 0.35s ease;
            border-radius: 10px;
        }

        .footer-social-link:hover::before {
            opacity: 1;
        }

        .footer-social-link:hover {
            border-color: transparent;
            color: #0a1f3d;
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(89, 192, 71, 0.3);
        }

        .footer-social-link i {
            position: relative;
            z-index: 1;
        }

        /* Footer Columns */
        .footer-col h4 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.75rem;
        }

        .footer-col h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 35px;
            height: 2px;
            background: linear-gradient(90deg, var(--green), transparent);
            border-radius: 2px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 0.65rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.55);
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            position: relative;
            padding-left: 0;
        }

        .footer-links a::before {
            content: '';
            width: 0;
            height: 1px;
            background: var(--green);
            position: absolute;
            bottom: -2px;
            left: 0;
            transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .footer-links a:hover {
            color: var(--green-light);
            padding-left: 8px;
        }

        .footer-links a:hover::before {
            width: 100%;
        }

        /* Contact Column */
        .footer-contact-item {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.25rem;
            align-items: flex-start;
        }

        .footer-contact-icon {
            width: 38px;
            height: 38px;
            background: rgba(89, 192, 71, 0.08);
            border: 1px solid rgba(89, 192, 71, 0.15);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: var(--green);
            font-size: 0.9rem;
            transition: all 0.35s ease;
        }

        .footer-contact-item:hover .footer-contact-icon {
            background: rgba(89, 192, 71, 0.15);
            border-color: rgba(89, 192, 71, 0.3);
            box-shadow: 0 4px 12px rgba(89, 192, 71, 0.2);
        }

        .footer-contact-text h5 {
            font-size: 0.82rem;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.4);
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-bottom: 0.25rem;
        }

        .footer-contact-text p,
        .footer-contact-text a {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            margin: 0;
            line-height: 1.5;
            transition: color 0.3s ease;
        }

        .footer-contact-text a:hover {
            color: var(--green-light);
        }

        /* Newsletter */
        .footer-newsletter {
            margin-top: 1.5rem;
            padding: 1.25rem;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 16px;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .footer-newsletter h5 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--white);
            margin-bottom: 0.5rem;
        }

        .footer-newsletter p {
            font-size: 0.82rem;
            color: rgba(255, 255, 255, 0.5);
            margin-bottom: 0.75rem;
            line-height: 1.5;
        }

        .newsletter-form {
            display: flex;
            gap: 0.5rem;
        }

        .newsletter-input {
            flex: 1;
            padding: 0.7rem 1rem;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            color: var(--white);
            font-size: 0.85rem;
            outline: none;
            transition: all 0.3s ease;
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        .newsletter-input::placeholder {
            color: rgba(255, 255, 255, 0.3);
        }

        .newsletter-input:focus {
            border-color: rgba(89, 192, 71, 0.4);
            background: rgba(255, 255, 255, 0.08);
            box-shadow: 0 0 0 3px rgba(89, 192, 71, 0.1);
        }

        .newsletter-btn {
            padding: 0.7rem 1.25rem;
            background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
            border: none;
            border-radius: 10px;
            color: #0a1f3d;
            font-weight: 700;
            font-size: 0.85rem;
            cursor: pointer;
            transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            white-space: nowrap;
            position: relative;
            overflow: hidden;
        }

        .newsletter-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: 0.6s;
        }

        .newsletter-btn:hover::before {
            left: 100%;
        }

        .newsletter-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(89, 192, 71, 0.4);
        }

        /* Footer Divider */
        .footer-divider {
            position: relative;
            z-index: 2;
            border: none;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
            margin: 0 1.5rem;
        }

        /* Footer Bottom */
        .footer-bottom {
            position: relative;
            z-index: 2;
            padding: 1.5rem;
        }
/* 
        .footer-bottom .container {
            max-width: 1200px;
            margin: 0 auto;
        } */

        .footer-bottom-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer-copyright {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.4);
        }

        .footer-copyright a {
            color: var(--green);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .footer-copyright a:hover {
            color: var(--green-light);
        }

        .footer-bottom-links {
            display: flex;
            gap: 1.5rem;
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-bottom-links a {
            font-size: 0.83rem;
            color: rgba(255, 255, 255, 0.4);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-bottom-links a:hover {
            color: var(--green-light);
        }

        /* Back to top */
        .footer-back-top {
            width: 38px;
            height: 38px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.35s ease;
            text-decoration: none;
        }

        .footer-back-top:hover {
            background: rgba(89, 192, 71, 0.15);
            border-color: rgba(89, 192, 71, 0.3);
            color: var(--green);
            transform: translateY(-3px);
        }

        /* Responsive */
        @media (max-width: 991px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 2.5rem;
            }
            .footer-brand {
                padding-right: 0;
            }
        }

        @media (max-width: 576px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            .footer-main {
                padding: 3rem 1.25rem 2rem;
            }
            .footer-bottom-row {
                flex-direction: column;
                text-align: center;
            }
            .footer-bottom-links {
                flex-wrap: wrap;
                justify-content: center;
            }
            .newsletter-form {
                flex-direction: column;
            }
            .newsletter-btn {
                width: 100%;
            }
            .footer-brand p {
                max-width: 100%;
            }
        }

        /* ============================================
           HORIZONTAL PROCESS STEPS – WHITE / LUXURY
           ============================================ */
        .process-steps-section {
            background: #ffffff;
            padding: 6rem 1.5rem;
            position: relative;
            overflow: hidden;
        }

        .process-steps-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(18, 60, 112, 0.15), transparent);
        }

        .process-steps-section::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(18, 60, 112, 0.15), transparent);
        }

        .process-steps-section .container {
            /* max-width: 1300px;
            margin: 0 auto; */
            position: relative;
            z-index: 2;
        }

        /* Section Header */
        .process-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .process-header .process-tag {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: var(--navy);
            background: rgba(18, 60, 112, 0.06);
            border: 1px solid rgba(18, 60, 112, 0.12);
            padding: 0.45rem 1.3rem;
            border-radius: 50px;
            margin-bottom: 1.25rem;
        }

        .process-header h2 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(2rem, 4.5vw, 2.8rem);
            font-weight: 700;
            color: var(--navy-dark);
            margin-bottom: 1rem;
            line-height: 1.15;
        }

        .process-header h2 span {
            background: linear-gradient(135deg, var(--green) 0%, var(--navy) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .process-header p {
            font-size: 1.08rem;
            color: #6b7280;
            max-width: 580px;
            margin: 0 auto;
            line-height: 1.65;
        }

        /* Steps Track */
        .process-track {
            position: relative;
            width: 100%;
        }

        /* Animated connector line */
        .process-line-wrapper {
            position: absolute;
            top: 60px;
            left: 60px;
            right: 60px;
            height: 2px;
            z-index: 1;
            display: none;
        }

        @media (min-width: 992px) {
            .process-line-wrapper {
                display: block;
            }
        }

        .process-line-bg {
            position: absolute;
            inset: 0;
            background: #e5e7eb;
            border-radius: 2px;
        }

        .process-line-progress {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 0%;
            background: linear-gradient(90deg, var(--green) 0%, var(--navy) 100%);
            border-radius: 2px;
            box-shadow: 0 0 12px rgba(89, 192, 71, 0.3);
        }

        /* Animated dots on the line */
        .process-line-dot {
            position: absolute;
            top: 50%;
            transform: translate(-50%, -50%);
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #e5e7eb;
            border: 2px solid #d1d5db;
            z-index: 2;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .process-line-dot.active {
            background: var(--green);
            border-color: var(--green);
            box-shadow: 0 0 0 4px rgba(89, 192, 71, 0.15);
        }

        /* Steps Grid */
        .process-steps-row {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1.5rem;
            position: relative;
            z-index: 3;
        }

        /* Individual Step Card */
        .process-step-card {
            text-align: center;
            padding: 2rem 1.25rem 1.75rem;
            background: #ffffff;
            border: 1px solid #e5e7eb;
            border-radius: 20px;
            position: relative;
            overflow: hidden;
            transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 0;
            transform: translateY(30px);
        }

        .process-step-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .process-step-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(
                180deg,
                rgba(89, 192, 71, 0.03) 0%,
                transparent 60%
            );
            opacity: 0;
            transition: opacity 0.45s ease;
            border-radius: 20px;
        }

        .process-step-card:hover::before {
            opacity: 1;
        }

        .process-step-card:hover {
            border-color: rgba(89, 192, 71, 0.3);
            box-shadow:
                0 12px 40px rgba(18, 60, 112, 0.08),
                0 4px 12px rgba(89, 192, 71, 0.06);
            transform: translateY(-8px);
        }

        /* Step Number Badge */
        .step-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            background: var(--navy);
            color: #ffffff;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.82rem;
            font-weight: 700;
            border-radius: 50%;
            margin-bottom: 1.25rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            z-index: 1;
        }

        .process-step-card:hover .step-number {
            background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
            color: var(--navy-dark);
            transform: scale(1.15);
            box-shadow: 0 4px 15px rgba(89, 192, 71, 0.35);
        }

        /* Icon Circle */
        .step-icon-wrapper {
            position: relative;
            z-index: 1;
            margin-bottom: 1.25rem;
        }

        .step-icon-circle {
            width: 72px;
            height: 72px;
            margin: 0 auto;
            background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
            border: 1px solid rgba(89, 192, 71, 0.12);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }

        .step-icon-circle::after {
            content: '';
            position: absolute;
            inset: -4px;
            border-radius: 50%;
            border: 1px dashed rgba(89, 192, 71, 0.15);
            opacity: 0;
            transition: opacity 0.45s ease;
        }

        .process-step-card:hover .step-icon-circle::after {
            opacity: 1;
            animation: stepIconSpin 6s linear infinite;
        }

        @keyframes stepIconSpin {
            0%   { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .process-step-card:hover .step-icon-circle {
            background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
            border-color: transparent;
            box-shadow:
                0 8px 25px rgba(89, 192, 71, 0.3),
                0 0 0 6px rgba(89, 192, 71, 0.08);
            transform: scale(1.08);
        }

        .step-icon-circle i {
            font-size: 1.5rem;
            color: var(--navy);
            transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .process-step-card:hover .step-icon-circle i {
            color: #ffffff;
            transform: scale(1.1);
        }

        /* Step Title */
        .step-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--navy-dark);
            margin-bottom: 0.65rem;
            transition: color 0.35s ease;
            position: relative;
            z-index: 1;
        }

        .process-step-card:hover .step-title {
            color: var(--green);
        }

        /* Step Description */
        .step-description {
            font-size: 0.85rem;
            line-height: 1.6;
            color: #6b7280;
            margin-bottom: 0;
            transition: color 0.35s ease;
            position: relative;
            z-index: 1;
        }

        .process-step-card:hover .step-description {
            color: #4b5563;
        }

        /* Arrow connector between steps (desktop) */
        .step-arrow {
            display: none;
        }

        @media (min-width: 992px) {
            .step-arrow {
                display: flex;
                position: absolute;
                top: 60px;
                right: -14px;
                z-index: 4;
                color: #d1d5db;
                font-size: 1.1rem;
                transition: color 0.4s ease;
            }
            .process-step-card:hover .step-arrow {
                color: var(--green);
            }
        }

        /* Responsive */
        @media (max-width: 1199px) {
            .process-steps-row {
                grid-template-columns: repeat(3, 1fr);
                gap: 1.25rem;
            }
        }

        @media (max-width: 767px) {
            .process-steps-row {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }
            .process-steps-section {
                padding: 4rem 1.25rem;
            }
            .process-step-card {
                padding: 1.75rem 1rem 1.5rem;
            }
            .step-icon-circle {
                width: 60px;
                height: 60px;
            }
            .step-icon-circle i {
                font-size: 1.25rem;
            }
        }

        @media (max-width: 480px) {
            .process-steps-row {
                grid-template-columns: 1fr;
                max-width: 320px;
                margin: 0 auto;
            }
            .process-header h2 {
                font-size: 1.65rem;
            }
        }


        /* About Section  */

           /* Unique About Page Classes */
         .about-hero-section {
            position: relative;
            min-height: 100vh;
            min-height: 100dvh;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
            overflow: hidden;
            padding-top: 100px;
         }

         .about-hero-bg-animation {
            position: absolute;
            inset: 0;
            z-index: 0;
         }

         .floating-circuit {
            position: absolute;
            width: 300px;
            height: 300px;
            opacity: 0.1;
            animation: float 6s ease-in-out infinite;
         }

         .floating-circuit:nth-child(1) {
            top: 10%;
            left: 5%;
            animation-delay: 0s;
         }

         .floating-circuit:nth-child(2) {
            bottom: 15%;
            right: 8%;
            width: 250px;
            height: 250px;
            animation-delay: 2s;
         }

         .floating-circuit:nth-child(3) {
            top: 50%;
            right: 20%;
            width: 200px;
            height: 200px;
            animation-delay: 4s;
         }

         @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
         }

         .about-hero-content {
            position: relative;
            z-index: 2;
         }

         .about-hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 10px 24px;
            background: rgba(89, 192, 71, 0.15);
            border: 1px solid rgba(89, 192, 71, 0.3);
            border-radius: 50px;
            color: var(--green-light);
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 2rem;
            backdrop-filter: blur(10px);
         }

         .about-hero-badge i {
            font-size: 1.1rem;
         }

         .about-hero-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 4.5rem;
            font-weight: 700;
            line-height: 1.1;
            color: var(--white);
            margin-bottom: 1.5rem;
            letter-spacing: -1px;
         }

         .about-hero-title span {
            background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
         }

         .about-hero-subtitle {
            font-size: 1.35rem;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            max-width: 650px;
            margin-bottom: 2.5rem;
         }

         .about-hero-stats {
            display: flex;
            gap: 3rem;
            flex-wrap: wrap;
         }

         .about-hero-stat {
            text-align: center;
         }

         .about-hero-stat-number {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 3rem;
            font-weight: 700;
            color: var(--green);
            line-height: 1;
            margin-bottom: 0.5rem;
         }

         .about-hero-stat-label {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.7);
            font-weight: 500;
         }

         .about-hero-visual {
            position: relative;
            z-index: 2;
         }

         .about-hero-image-container {
            position: relative;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
         }

         .about-hero-image {
            width: 100%;
            height: auto;
            display: block;
         }

         .about-hero-image-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(89, 192, 71, 0.2) 0%, rgba(18, 60, 112, 0.3) 100%);
         }

         .about-hero-image-badge {
            position: absolute;
            bottom: 30px;
            left: 30px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 20px 25px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
         }

         .about-hero-image-badge h4 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--navy-dark);
            margin: 0 0 5px 0;
         }

         .about-hero-image-badge p {
            font-size: 0.9rem;
            color: var(--navy);
            margin: 0;
         }

         /* Mission Section */
         .about-mission-section {
            padding: 120px 0;
            background: var(--white);
            position: relative;
         }

         .about-mission-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--green), transparent);
         }

         .about-mission-header {
            text-align: center;
            margin-bottom: 4rem;
         }

         .about-section-label {
            display: inline-block;
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--green);
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 1rem;
         }

         .about-section-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 3rem;
            font-weight: 700;
            color: var(--navy-dark);
            margin-bottom: 1.5rem;
            letter-spacing: -0.5px;
         }

         .about-section-description {
            font-size: 1.15rem;
            color: var(--text-secondary);
            line-height: 1.8;
            max-width: 800px;
            margin: 0 auto;
         }

         .about-mission-cards {
            margin-top: 3rem;
         }

         .about-mission-card {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            border: 1px solid var(--border-light);
            border-radius: 24px;
            padding: 3rem;
            transition: var(--transition-smooth);
            position: relative;
            overflow: hidden;
            height: 100%;
            display: flex;
            flex-direction: column;
         }

         .about-mission-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--green) 0%, var(--green-light) 100%);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.6s var(--ease-premium);
         }

         .about-mission-card:hover::before {
            transform: scaleX(1);
         }

         .about-mission-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
            border-color: rgba(89, 192, 71, 0.3);
         }

         .about-mission-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 2rem;
            box-shadow: 0 8px 25px var(--green-glow);
            transition: var(--transition);
         }

         .about-mission-card:hover .about-mission-icon {
            transform: rotate(-5deg) scale(1.1);
         }

         .about-mission-icon i {
            font-size: 2.5rem;
            color: var(--white);
         }

         .about-mission-card h3 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--navy-dark);
            margin-bottom: 1rem;
         }

         .about-mission-card p {
            font-size: 1.05rem;
            color: var(--text-secondary);
            line-height: 1.7;
            margin: 0;
         }

         /* Journey Timeline Section */
         .about-journey-section {
            padding: 120px 0;
            background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
            position: relative;
         }

         .about-journey-header {
            text-align: center;
            margin-bottom: 5rem;
         }

         .about-timeline {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
         }

         .about-timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 3px;
            height: 100%;
            background: linear-gradient(180deg, var(--green) 0%, var(--navy) 100%);
            border-radius: 3px;
         }

         .about-timeline-item {
            position: relative;
            margin-bottom: 4rem;
         }

         .about-timeline-content {
            width: 45%;
            background: var(--white);
            border: 1px solid var(--border-light);
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: var(--shadow-md);
            transition: var(--transition-smooth);
         }

         .about-timeline-content:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
         }

         .about-timeline-item:nth-child(odd) .about-timeline-content {
            margin-left: auto;
         }

         .about-timeline-dot {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 24px;
            height: 24px;
            background: var(--green);
            border: 4px solid var(--white);
            border-radius: 50%;
            box-shadow: 0 0 0 4px var(--green-glow);
            z-index: 2;
         }

         .about-timeline-year {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--green);
            margin-bottom: 0.75rem;
         }

         .about-timeline-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--navy-dark);
            margin-bottom: 1rem;
         }

         .about-timeline-text {
            font-size: 1rem;
            color: var(--text-secondary);
            line-height: 1.7;
            margin: 0;
         }

         /* Team Values Section */
         .about-values-section {
            padding: 120px 0;
            background: var(--white);
         }

         .about-values-header {
            text-align: center;
            margin-bottom: 4rem;
         }

         .about-values-grid {
            /* Bootstrap 5 grid handles this */
         }

         .about-value-item {
            text-align: center;
            padding: 2.5rem 2rem;
            border-radius: 20px;
            background: linear-gradient(135deg, rgba(89, 192, 71, 0.05) 0%, rgba(18, 60, 112, 0.05) 100%);
            border: 1px solid var(--border-light);
            transition: var(--transition-smooth);
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
         }

         .about-value-item:hover {
            transform: translateY(-8px);
            background: var(--white);
            box-shadow: var(--shadow-hover);
            border-color: rgba(89, 192, 71, 0.3);
         }

         .about-value-icon {
            width: 90px;
            height: 90px;
            margin: 0 auto 2rem;
            background: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
         }

         .about-value-item:hover .about-value-icon {
            background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
            box-shadow: 0 15px 40px var(--green-glow);
         }

         .about-value-icon i {
            font-size: 2.5rem;
            color: var(--green);
            transition: var(--transition);
         }

         .about-value-item:hover .about-value-icon i {
            color: var(--white);
         }

         .about-value-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--navy-dark);
            margin-bottom: 1rem;
         }

         .about-value-text {
            font-size: 1rem;
            color: var(--text-secondary);
            line-height: 1.7;
         }

         /* CTA Section */
         .about-cta-section {
            padding: 120px 0;
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
            position: relative;
            overflow: hidden;
         }

         .about-cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, var(--green-glow) 0%, transparent 70%);
            border-radius: 50%;
         }

         .about-cta-content {
            position: relative;
            z-index: 2;
            text-align: center;
         }

         .about-cta-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 1.5rem;
            letter-spacing: -0.5px;
         }

         .about-cta-text {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.8);
            max-width: 700px;
            margin: 0 auto 3rem;
            line-height: 1.7;
         }

         .about-cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
         }

         .about-btn-primary {
            padding: 1.1rem 3rem;
            background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
            border: none;
            border-radius: 12px;
            color: var(--navy-dark);
            font-weight: 700;
            font-size: 1.1rem;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: var(--transition);
            box-shadow: 0 8px 25px var(--green-glow);
         }

         .about-btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px var(--green-glow);
         }

         .about-btn-secondary {
            padding: 1.1rem 3rem;
            background: transparent;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 12px;
            color: var(--white);
            font-weight: 700;
            font-size: 1.1rem;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: var(--transition);
         }

         .about-btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--white);
            transform: translateY(-3px);
         }

         /* Responsive */
         @media (max-width: 992px) {
            .about-hero-title {
               font-size: 3.5rem;
            }

            .about-timeline::before {
               left: 30px;
            }

            .about-timeline-content {
               width: calc(100% - 80px);
               margin-left: 80px !important;
            }

            .about-timeline-dot {
               left: 30px;
            }

            .about-section-title {
               font-size: 2.5rem;
            }

            .about-cta-title {
               font-size: 2.5rem;
            }
         }

         @media (max-width: 768px) {
            .about-hero-title {
               font-size: 2.5rem;
            }

            .about-hero-stats {
               gap: 2rem;
            }

            .about-hero-stat-number {
               font-size: 2.5rem;
            }

            .about-section-title,
            .about-cta-title {
               font-size: 2rem;
            }

            .about-cta-buttons {
               flex-direction: column;
               align-items: center;
            }

            .about-btn-primary,
            .about-btn-secondary {
               width: 100%;
               justify-content: center;
            }
         }

         @media (max-width: 576px) {
            .about-hero-title {
               font-size: 2rem;
            }

            .about-hero-subtitle {
               font-size: 1.1rem;
            }

            .about-hero-stats {
               flex-direction: column;
               gap: 1.5rem;
            }
         }
 
