      :root {
        --primary: #0a0a0f;
        --secondary: #1a1a2e;
        --tertiary: #16213e;
        --accent: #00d4ff;
        --accent-glow: #00d4ff;
        --accent-secondary: #ff0080;
        --accent-tertiary: #8000ff;
        --neon-blue: #00ffff;
        --neon-pink: #ff00ff;
        --neon-green: #00ff00;
        --text-primary: #ffffff;
        --text-secondary: #b3b3b3;
        --text-muted: #666666;
        --glass: rgba(255, 255, 255, 0.03);
        --glass-border: rgba(0, 212, 255, 0.2);
        --shadow-neon: 0 0 20px rgba(0, 212, 255, 0.3);
        --shadow-heavy: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
        --gradient-primary: linear-gradient(
          135deg,
          #00d4ff 0%,
          #8000ff 50%,
          #ff0080 100%
        );
        --gradient-secondary: linear-gradient(135deg, #ff0080 0%, #00d4ff 100%);
        --gradient-tertiary: linear-gradient(135deg, #8000ff 0%, #00ffff 100%);
        --header-height: 80px; /* Default header height, will be updated by JS */
      }

      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      html {
        scroll-behavior: smooth;
        overflow-x: hidden;
      }

      body {
        font-family: "Inter", sans-serif;
        background: var(--primary);
        color: var(--text-primary);
        line-height: 1.6;
        overflow-x: hidden;
        position: relative;
      }

      /* Optimized Background Effects */
      .bg-matrix {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 1;
        opacity: 0.08;
      }

      .matrix-rain {
        position: absolute;
        color: var(--accent);
        font-family: "JetBrains Mono", monospace;
        font-size: 12px;
        animation: matrixFall linear infinite;
        will-change: transform;
      }

      @keyframes matrixFall {
        0% {
          transform: translate3d(0, -100vh, 0);
          opacity: 0;
        }
        10% {
          opacity: 1;
        }
        90% {
          opacity: 1;
        }
        100% {
          transform: translate3d(0, 100vh, 0);
          opacity: 0;
        }
      }

      /* Advanced Cursor Light Effect */
      .cursor-light {
        position: fixed;
        pointer-events: none;
        z-index: 9999;
        mix-blend-mode: screen;
        transition: opacity 0.3s ease;
      }

      .cursor-light-main {
        width: 200px;
        height: 200px;
        background: radial-gradient(
          circle,
          rgba(0, 212, 255, 0.15) 0%,
          rgba(0, 212, 255, 0.08) 30%,
          rgba(128, 0, 255, 0.05) 60%,
          transparent 100%
        );
        border-radius: 50%;
        transform: translate(-50%, -50%);
        filter: blur(20px);
        animation: mainLightPulse 3s ease-in-out infinite alternate;
      }

      .cursor-light-secondary {
        width: 100px;
        height: 100px;
        background: radial-gradient(
          circle,
          rgba(255, 0, 128, 0.2) 0%,
          rgba(255, 0, 128, 0.1) 40%,
          transparent 70%
        );
        border-radius: 50%;
        transform: translate(-50%, -50%);
        filter: blur(15px);
        animation: secondaryLightPulse 2s ease-in-out infinite alternate;
      }

      .cursor-light-core {
        width: 40px;
        height: 40px;
        background: radial-gradient(
          circle,
          rgba(0, 255, 255, 0.4) 0%,
          rgba(0, 255, 255, 0.2) 50%,
          transparent 80%
        );
        border-radius: 50%;
        transform: translate(-50%, -50%);
        filter: blur(8px);
        animation: coreLightPulse 1.5s ease-in-out infinite alternate;
      }

      .cursor-light-sparkle {
        width: 60px;
        height: 60px;
        background: radial-gradient(
          circle,
          rgba(255, 255, 255, 0.1) 0%,
          transparent 60%
        );
        border-radius: 50%;
        transform: translate(-50%, -50%);
        filter: blur(5px);
        animation: sparklePulse 4s ease-in-out infinite;
      }

      @keyframes mainLightPulse {
        0% {
          transform: translate(-50%, -50%) scale(1);
          opacity: 0.6;
        }
        100% {
          transform: translate(-50%, -50%) scale(1.2);
          opacity: 0.9;
        }
      }

      @keyframes secondaryLightPulse {
        0% {
          transform: translate(-50%, -50%) scale(0.8) rotate(0deg);
          opacity: 0.4;
        }
        100% {
          transform: translate(-50%, -50%) scale(1.1) rotate(180deg);
          opacity: 0.7;
        }
      }

      @keyframes coreLightPulse {
        0% {
          transform: translate(-50%, -50%) scale(1);
          opacity: 0.8;
        }
        100% {
          transform: translate(-50%, -50%) scale(1.3);
          opacity: 1;
        }
      }

      @keyframes sparklePulse {
        0%,
        100% {
          transform: translate(-50%, -50%) scale(0.5) rotate(0deg);
          opacity: 0.2;
        }
        25% {
          transform: translate(-50%, -50%) scale(1) rotate(90deg);
          opacity: 0.6;
        }
        50% {
          transform: translate(-50%, -50%) scale(0.8) rotate(180deg);
          opacity: 0.4;
        }
        75% {
          transform: translate(-50%, -50%) scale(1.2) rotate(270deg);
          opacity: 0.8;
        }
      }

      /* Interactive Elements Glow */
      .btn:hover,
      .card:hover,
      .nav-menu-desktop li a:hover,
      .nav-menu-mobile li a:hover,
      .feature-block:hover {
        box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
      }

      /* Cursor Light Interaction Effects */
      .cursor-light.hover-effect .cursor-light-main {
        background: radial-gradient(
          circle,
          rgba(0, 255, 128, 0.2) 0%,
          rgba(0, 255, 128, 0.1) 30%,
          rgba(0, 212, 255, 0.08) 60%,
          transparent 100%
        );
        transform: translate(-50%, -50%) scale(1.5);
      }

      .cursor-light.hover-effect .cursor-light-secondary {
        background: radial-gradient(
          circle,
          rgba(255, 128, 0, 0.25) 0%,
          rgba(255, 128, 0, 0.15) 40%,
          transparent 70%
        );
        transform: translate(-50%, -50%) scale(1.3);
      }

      .cursor-light.click-effect .cursor-light-core {
        background: radial-gradient(
          circle,
          rgba(255, 255, 255, 0.6) 0%,
          rgba(0, 255, 255, 0.4) 50%,
          transparent 80%
        );
        transform: translate(-50%, -50%) scale(2);
        animation: clickPulse 0.3s ease-out;
      }

      @keyframes clickPulse {
        0% {
          transform: translate(-50%, -50%) scale(1);
        }
        50% {
          transform: translate(-50%, -50%) scale(2.5);
        }
        100% {
          transform: translate(-50%, -50%) scale(2);
        }
      }

      /* Optimized Preloader */
      .quantum-loader {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--primary);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10000;
        transition: all 0.8s ease;
      }

      .quantum-loader.loaded {
        transform: translate3d(0, -100%, 0);
        opacity: 0;
      }

      .loader-container {
        text-align: center;
        position: relative;
      }

      .loader-logo {
        font-family: "Orbitron", monospace;
        font-size: 2.5rem;
        font-weight: 900;
        background: var(--gradient-primary);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 2rem;
        animation: logoGlow 2s ease-in-out infinite alternate;
      }

      .loader-rings {
        position: relative;
        width: 120px;
        height: 120px;
        margin: 0 auto 2rem;
      }

      .loader-ring {
        position: absolute;
        /* Reverted border to transparent */
        border: 2px solid transparent;
        border-radius: 50%;
        animation: ringRotate linear infinite;
        will-change: transform;
      }

      .loader-ring:nth-child(1) {
        width: 120px;
        height: 120px;
        border-top-color: var(--accent);
        animation-duration: 1.5s;
      }

      .loader-ring:nth-child(2) {
        width: 80px;
        height: 80px;
        top: 20px;
        left: 20px;
        border-right-color: var(--accent-secondary);
        animation-duration: 1s;
        animation-direction: reverse;
      }

      .loader-ring:nth-child(3) {
        width: 40px;
        height: 40px;
        top: 40px;
        left: 40px;
        border-bottom-color: var(--accent-tertiary);
        animation-duration: 0.8s;
      }

      .loader-progress {
        width: 200px;
        height: 3px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 2px;
        overflow: hidden;
        position: relative;
        margin: 0 auto; /* Added to center the progress bar */
      }

      .loader-bar {
        height: 100%;
        background: var(--gradient-primary);
        border-radius: 2px;
        animation: progressLoad 2s ease-out;
        box-shadow: 0 0 15px var(--accent);
      }

      .loader-percentage {
        position: absolute;
        top: -20px;
        right: 0;
        font-family: "JetBrains Mono", monospace;
        color: var(--accent);
        font-weight: 600;
        font-size: 0.8rem;
      }

      @keyframes logoGlow {
        0% {
          filter: brightness(1) drop-shadow(0 0 15px rgba(0, 212, 255, 0.3));
        }
        100% {
          filter: brightness(1.3) drop-shadow(0 0 25px rgba(0, 212, 255, 0.6));
        }
      }

      @keyframes ringRotate {
        0% {
          transform: rotate(0deg);
        }
        100% {
          transform: rotate(360deg);
        }
      }

      @keyframes progressLoad {
        0% {
          width: 0%;
        }
        100% {
          width: 100%;
        }
      }

      /* Header */
      .header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        padding: 1.5rem 0;
        background: rgba(10, 10, 15, 0.8);
        backdrop-filter: blur(20px) saturate(180%);
        border-bottom: 1px solid var(--glass-border);
        z-index: 1000;
        transition: all 0.3s ease;
        will-change: transform;
      }

      .header::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 1px;
        background: var(--gradient-primary);
        animation: scanLine 4s linear infinite;
      }

      @keyframes scanLine {
        0% {
          transform: translate3d(-100%, 0, 0);
        }
        100% {
          transform: translate3d(100%, 0, 0);
        }
      }

      .header.scrolled {
        padding: 1rem 0;
        background: rgba(10, 10, 15, 0.95);
        box-shadow: var(--shadow-neon);
        transform: translate3d(0, 0, 0);
      }

      .nav-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 2rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
      }

      .logo {
        font-family: "Orbitron", monospace;
        font-size: 1.4rem;
        font-weight: 900;
        background: var(--gradient-primary);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        position: relative;
      }

      /* Desktop Navigation Styles */
      .nav-menu-desktop {
        display: flex;
        list-style: none;
        gap: 2.5rem;
        align-items: center;
        padding: 0;
        margin: 0;
      }

      .nav-menu-desktop li a {
        text-decoration: none;
        color: var(--text-secondary);
        font-weight: 500;
        font-size: 0.95rem;
        transition: all 0.3s ease;
        position: relative;
        padding: 0.5rem 0;
      }

      .nav-menu-desktop li a::before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background: var(--gradient-primary);
        transition: all 0.3s ease;
        transform: translateX(-50%);
      }

      .nav-menu-desktop li a:hover {
        color: var(--text-primary);
        text-shadow: 0 0 8px var(--accent);
      }

      .nav-menu-desktop li a:hover::before {
        width: 100%;
      }

      /* Mobile Navigation Styles */
      .nav-menu-mobile {
        display: none; /* Hidden by default on desktop */
        position: fixed;
        top: var(--header-height); /* Starts below the header */
        left: 0;
        width: 100%;
        height: calc(
          100vh - var(--header-height)
        ); /* Occupies remaining viewport height */
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 1.5rem; /* Adjusted padding for better mobile fit */
        gap: 1.5rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        border-top: 1px solid var(--glass-border);
        overflow-y: auto; /* Enable scrolling for long menus */
        z-index: 1005; /* Adjusted z-index to be above header */
      }

      .nav-menu-mobile.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
      }

      .nav-menu-mobile li {
        text-align: center;
        list-style: none; /* Remove list bullets */
      }

      .nav-menu-mobile li a {
        text-decoration: none;
        color: var(--text-secondary);
        font-weight: 500;
        font-size: 1.2rem; /* Larger font size for mobile links */
        transition: all 0.3s ease;
        position: relative;
        padding: 0.8rem 0;
        display: block; /* Make links full width */
      }

      .nav-menu-mobile li a::before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background: var(--gradient-primary);
        transition: all 0.3s ease;
        transform: translateX(-50%);
      }

      .nav-menu-mobile li a:hover {
        color: var(--text-primary);
        text-shadow: 0 0 8px var(--accent);
      }

      .nav-menu-mobile li a:hover::before {
        width: 100%;
      }

      /* Mega Dropdown Styles (Desktop) */
      .nav-item-dropdown {
        position: relative;
      }

      .nav-link-dropdown {
        display: flex;
        align-items: center;
        gap: 0.5rem;
      }

      .nav-link-dropdown i {
        font-size: 0.7rem;
        transition: transform 0.3s ease;
      }

      .nav-item-dropdown:hover .nav-link-dropdown i {
        transform: rotate(180deg);
      }

      .mega-dropdown-menu {
        display: none;
        position: absolute;
        top: 100%; /* Position below the "Explore More" link */
        left: 50%; /* Center the dropdown */
        transform: translateX(-50%);
        width: max-content; /* Adjust width based on content */
        max-width: 90vw; /* Max width for responsiveness */
        background: rgba(10, 10, 15, 0.95); /* Same as header background */
        backdrop-filter: blur(20px) saturate(180%);
        border: 1px solid var(--glass-border);
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), var(--shadow-neon);
        padding: 1.5rem;
        margin-top: 1rem; /* Space between nav link and dropdown */
        z-index: 1001; /* Above header */
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        display: flex; /* Use flexbox for columns */
        gap: 2rem;
        flex-wrap: wrap; /* Allow wrapping on smaller screens */
        justify-content: center; /* Center columns when wrapped */
      }

      .nav-item-dropdown:hover .mega-dropdown-menu {
        display: flex; /* Change to flex to show it */
        opacity: 1;
        visibility: visible;
      }

      .mega-dropdown-column {
        flex: 1; /* Distribute space equally */
        min-width: 180px; /* Minimum width for columns */
      }

      .mega-dropdown-column h3 {
        font-size: 1rem;
        font-weight: 700;
        color: var(--accent);
        margin-bottom: 1rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        border-bottom: 1px solid rgba(0, 212, 255, 0.1);
        padding-bottom: 0.5rem;
      }

      .mega-dropdown-column ul {
        list-style: none;
        padding: 0;
        margin: 0;
      }

      .mega-dropdown-column ul li {
        margin-bottom: 0.7rem;
      }

      .mega-dropdown-column ul li:last-child {
        margin-bottom: 0;
      }

      .mega-dropdown-column ul li a {
        color: var(--text-secondary);
        text-decoration: none;
        font-size: 0.9rem;
        transition: all 0.2s ease;
        display: block; /* Make links block level for better click area */
        padding: 0.2rem 0;
      }

      .mega-dropdown-column ul li a:hover {
        color: var(--accent);
        transform: translateX(5px);
        text-shadow: 0 0 5px rgba(0, 212, 255, 0.2);
      }

      .nav-cta {
        background: var(--gradient-primary);
        color: white;
        padding: 0.75rem 1.5rem;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-size: 0.9rem;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
      }

      .nav-cta:hover {
        transform: translate3d(0, -2px, 0);
        box-shadow: 0 0 25px rgba(0, 212, 255, 0.5);
      }

      .nav-toggle {
        display: none; /* Hidden by default on desktop */
        flex-direction: column;
        cursor: pointer;
        gap: 4px;
        padding: 0.5rem;
        z-index: 1010; /* Adjusted z-index to be highest */
      }

      .nav-toggle span {
        width: 25px;
        height: 2px;
        background: var(--text-primary);
        transition: all 0.3s ease;
        transform-origin: center;
      }

      .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
      }

      .nav-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
      }

      .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
      }

      /* Hero Section */
      .hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        position: relative;
        overflow: hidden;
        background: radial-gradient(
          ellipse at center,
          rgba(0, 212, 255, 0.08) 0%,
          transparent 70%
        );
      }

      .hero::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(
            circle at 20% 80%,
            rgba(128, 0, 255, 0.15) 0%,
            transparent 50%
          ),
          radial-gradient(
            circle at 80% 20%,
            rgba(255, 0, 128, 0.15) 0%,
            transparent 50%
          );
        animation: heroShift 12s ease-in-out infinite;
      }

      @keyframes heroShift {
        0%,
        100% {
          opacity: 1;
          transform: scale(1);
        }
        50% {
          opacity: 0.8;
          transform: scale(1.05);
        }
      }

      .hero-grid {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: linear-gradient(
            rgba(0, 212, 255, 0.08) 1px,
            transparent 1px
          ),
          linear-gradient(90deg, rgba(0, 212, 255, 0.08) 1px, transparent 1px);
        background-size: 40px 40px;
        animation: gridMove 15s linear infinite;
        will-change: transform;
      }

      @keyframes gridMove {
        0% {
          transform: translate3d(0, 0, 0);
        }
        100% {
          transform: translate3d(40px, 40px, 0);
        }
      }

      .hero-container {
        max-width: 1400px;
        margin: 100px auto;
        padding: 0 2rem;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
        position: relative;
        z-index: 2;
      }

      .hero-content {
        animation: slideInLeft 1s ease-out;
      }

      .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: var(--glass);
        border: 1px solid var(--glass-border);
        padding: 0.5rem 1rem;
        border-radius: 50px;
        font-size: 0.85rem;
        color: var(--accent);
        margin-bottom: 2rem;
        backdrop-filter: blur(10px);
        animation: badgeFloat 3s ease-in-out infinite;
      }

      .badge-dot {
        width: 8px;
        height: 8px;
        background: var(--accent);
        border-radius: 50%;
        animation: pulse 2s infinite;
      }

      @keyframes pulse {
        0%,
        100% {
          opacity: 1;
          transform: scale(1);
        }
        50% {
          opacity: 0.6;
          transform: scale(1.2);
        }
      }

      @keyframes badgeFloat {
        0%,
        100% {
          transform: translate3d(0, 0, 0);
        }
        50% {
          transform: translate3d(0, -5px, 0);
        }
      }

      .hero-title {
        font-size: clamp(2.5rem, 5vw, 4rem);
        font-weight: 900;
        line-height: 1.1;
        margin-bottom: 1.5rem;
        background: var(--gradient-primary);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: titleGlow 3s ease-in-out infinite alternate;
      }

      @keyframes titleGlow {
        0% {
          filter: brightness(1);
        }
        100% {
          filter: brightness(1.2);
        }
      }

      .hero-subtitle {
        font-size: 1.2rem;
        color: var(--text-secondary);
        margin-bottom: 2.5rem;
        line-height: 1.6;
        max-width: 500px;
        animation: fadeInUp 1s ease-out 0.3s both;
      }

      .hero-buttons {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
        margin-bottom: 3rem;
        animation: fadeInUp 1s ease-out 0.6s both;
      }

      .btn {
        padding: 1rem 2rem;
        border: none;
        border-radius: 50px;
        font-weight: 600;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        transition: all 0.3s ease;
        cursor: pointer;
        position: relative;
        overflow: hidden;
        font-size: 0.95rem;
        will-change: transform;
      }

      .btn-primary {
        background: var(--gradient-primary);
        color: white;
        box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
      }

      .btn-primary:hover {
        transform: translate3d(0, -3px, 0) scale(1.02);
        box-shadow: 0 15px 35px rgba(0, 212, 255, 0.4);
      }

      .btn-secondary {
        background: var(--glass);
        color: var(--text-primary);
        border: 1px solid var(--glass-border);
        backdrop-filter: blur(10px);
      }

      .btn-secondary:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: translate3d(0, -3px, 0);
      }

      .hero-stats {
        display: flex;
        gap: 2rem;
        flex-wrap: wrap;
        animation: fadeInUp 1s ease-out 0.9s both;
      }

      .stat-item {
        text-align: center;
      }

      .stat-number {
        font-size: 2rem;
        font-weight: 800;
        background: var(--gradient-primary);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        display: block;
      }

      .stat-label {
        font-size: 0.85rem;
        color: var(--text-muted);
        margin-top: 0.25rem;
      }

      /* Hero Visual */
      .hero-visual {
        position: relative;
        animation: slideInRight 1s ease-out;
      }

      .hero-card {
        background: var(--glass);
        border: 1px solid var(--glass-border);
        border-radius: 20px;
        padding: 2rem;
        backdrop-filter: blur(20px);
        position: relative;
        overflow: hidden;
        animation: cardFloat 4s ease-in-out infinite;
        box-shadow: 0 0 40px rgba(0, 212, 255, 0.2);
        will-change: transform;
      }

      .hero-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background: var(--gradient-primary);
        animation: cardScan 3s linear infinite;
      }

      @keyframes cardFloat {
        0%,
        100% {
          transform: translate3d(0, 0, 0) rotateY(0deg);
        }
        50% {
          transform: translate3d(0, -15px, 0) rotateY(2deg);
        }
      }

      @keyframes cardScan {
        0% {
          transform: translate3d(-100%, 0, 0);
        }
        100% {
          transform: translate3d(100%, 0, 0);
        }
      }

      .card-header {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1.5rem;
      }

      .card-avatar {
        width: 50px;
        height: 50px;
        background: var(--gradient-primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.5rem;
        animation: avatarPulse 2s ease-in-out infinite;
      }

      @keyframes avatarPulse {
        0%,
        100% {
          transform: scale(1);
        }
        50% {
          transform: scale(1.05);
        }
      }

      .card-info h3 {
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 0.25rem;
      }

      .card-info p {
        font-size: 0.85rem;
        color: var(--text-secondary);
      }

      .card-metrics {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
      }

      .metric {
        text-align: center;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 10px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
      }

      .metric:hover {
        background: rgba(255, 255, 255, 0.08);
        transform: translate3d(0, -2px, 0);
      }

      .metric-value {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--accent);
        display: block;
      }

      .metric-label {
        font-size: 0.75rem;
        color: var(--text-muted);
        margin-top: 0.25rem;
      }

      /* Sections */
      .section {
        padding: 8rem 0;
        position: relative;
        will-change: transform;
      }

      .section-alt {
        background: var(--secondary);
      }

      .container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 2rem;
      }

      .section-header {
        text-align: center;
        margin-bottom: 5rem;
        position: relative;
      }

      .section-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: var(--glass);
        border: 1px solid var(--glass-border);
        padding: 0.5rem 1rem;
        border-radius: 50px;
        font-size: 0.85rem;
        color: var(--accent);
        margin-bottom: 1.5rem;
        backdrop-filter: blur(10px);
      }

      .section-title {
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 800;
        margin-bottom: 1.5rem;
        background: var(--gradient-primary);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }

      .section-subtitle {
        font-size: 1.1rem;
        color: var(--text-secondary);
        max-width: 600px;
        margin: 0 auto;
        line-height: 1.6;
      }

      /* Cards Grid (for initial 3 cards and Services section) */
      .cards-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
        margin-top: 4rem;
      }

      .card {
        background: var(--glass);
        border: 1px solid var(--glass-border);
        border-radius: 20px;
        padding: 2.5rem;
        backdrop-filter: blur(20px);
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
        box-shadow: 0 0 25px rgba(0, 212, 255, 0.1);
        will-change: transform;
      }

      .card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background: var(--gradient-primary);
        transform: scaleX(0);
        transition: transform 0.4s ease;
      }

      .card:hover::before {
        transform: scaleX(1);
      }

      .card:hover {
        transform: translate3d(0, -8px, 0) rotateX(5deg);
        box-shadow: 0 0 50px rgba(0, 212, 255, 0.3);
        border-color: var(--accent);
      }

      .card-icon {
        width: 60px;
        height: 60px;
        background: var(--gradient-primary);
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
        color: white;
        font-size: 1.5rem;
        transition: all 0.4s ease;
        box-shadow: 0 0 15px rgba(0, 255, 255, 0.5),
          0 0 25px rgba(0, 255, 255, 0.3);
      }

      .card:hover .card-icon {
        transform: scale(1.1) rotate(5deg);
      }

      .card-title {
        font-size: 1.3rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: var(--text-primary);
      }

      .card-description {
        color: var(--text-secondary);
        line-height: 1.6;
        margin-bottom: 1.5rem;
      }

      .card-link {
        color: var(--accent);
        text-decoration: none;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        transition: all 0.3s ease;
      }

      .card-link:hover {
        gap: 1rem;
        color: var(--text-primary);
      }

      /* New Section for Unique Features in About Us */
      .about-unique-features {
        display: grid;
        grid-template-columns: repeat(
          auto-fit,
          minmax(300px, 1fr)
        ); /* Responsive grid */
        gap: 2.5rem; /* Slightly larger gap */
        margin-top: 4rem; /* Space from previous section */
        padding-top: 2rem; /* Internal padding */
        border-top: 1px solid rgba(0, 212, 255, 0.1); /* Subtle separator */
      }

      .feature-block {
        background: var(--tertiary); /* Slightly darker background */
        border: 1px solid var(--glass-border); /* Uniform border */
        border-radius: 25px; /* More rounded corners */
        padding: 3rem; /* More padding */
        backdrop-filter: blur(25px); /* More blur */
        transition: all 0.5s ease;
        position: relative;
        overflow: hidden;
        box-shadow: 0 0 15px rgba(0, 212, 255, 0.1); /* Subtle initial shadow */
        display: flex; /* Use flex for internal alignment */
        flex-direction: column;
        justify-content: space-between; /* Push link to bottom */
      }

      .feature-block:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 0 60px rgba(0, 212, 255, 0.4); /* Uniform hover shadow */
        border-color: var(--accent); /* Uniform hover border color */
      }

      .feature-icon {
        width: 70px; /* Larger icon */
        height: 70px;
        background: var(--gradient-primary);
        border-radius: 50%; /* Circular icon */
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 2rem;
        color: white;
        font-size: 2rem; /* Larger icon size */
        /* Added initial glow for the icon */
        box-shadow: 0 0 15px rgba(0, 255, 255, 0.5),
          0 0 25px rgba(0, 255, 255, 0.3);
        position: relative;
        z-index: 1; /* Ensure icon is above pseudo-element */
      }

      .feature-title {
        font-size: 1.5rem; /* Larger title */
        font-weight: 800;
        margin-bottom: 1.2rem;
        color: var(--text-primary);
        background: var(
          --gradient-secondary
        ); /* Different gradient for title */
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        position: relative;
        z-index: 1;
      }

      .feature-description {
        color: var(--text-secondary);
        line-height: 1.7;
        margin-bottom: 2rem; /* More space before link */
        flex-grow: 1; /* Allow description to take available space */
        position: relative;
        z-index: 1;
      }

      .feature-link {
        color: var(--neon-green); /* Different accent color for link */
        text-decoration: none;
        font-weight: 700;
        display: inline-flex;
        align-items: center;
        gap: 0.8rem;
        transition: all 0.3s ease;
        position: relative;
        z-index: 1;
      }

      .feature-link:hover {
        gap: 1.2rem;
        color: var(--text-primary);
        text-shadow: 0 0 10px var(--neon-green);
      }

      /* Project Showcase */
      .project-showcase {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: 2rem;
        margin-top: 4rem;
      }

      .project-card {
        background: var(--glass);
        border: 1px solid var(--glass-border);
        border-radius: 20px;
        overflow: hidden;
        backdrop-filter: blur(20px);
        transition: all 0.4s ease;
        position: relative;
        box-shadow: 0 0 25px rgba(0, 212, 255, 0.1);
        will-change: transform;
      }

      .project-card:hover {
        transform: translate3d(0, -8px, 0) rotateY(3deg);
        box-shadow: 0 0 60px rgba(0, 212, 255, 0.4);
      }

      .project-image {
        height: 250px;
        background: var(--gradient-primary);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 3rem;
        position: relative;
        overflow: hidden;
      }

      .project-image::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(
          45deg,
          transparent 30%,
          rgba(255, 255, 255, 0.2) 50%,
          transparent 70%
        );
        transform: translate3d(-100%, 0, 0);
        transition: transform 0.6s ease;
      }

      .project-card:hover .project-image::before {
        transform: translate3d(100%, 0, 0);
      }

      .project-content {
        padding: 2rem;
      }

      .project-title {
        font-size: 1.3rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: var(--text-primary);
      }

      .project-description {
        color: var(--text-secondary);
        margin-bottom: 1.5rem;
        line-height: 1.6;
      }

      .tech-stack {
        display: flex;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
        flex-wrap: wrap;
      }

      .tech-tag {
        background: rgba(0, 212, 255, 0.1);
        color: var(--accent);
        padding: 0.3rem 0.8rem;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 500;
        border: 1px solid rgba(0, 212, 255, 0.2);
        transition: all 0.3s ease;
      }

      .tech-tag:hover {
        background: rgba(0, 212, 255, 0.2);
        transform: translate3d(0, -2px, 0);
      }

      /* Testimonials */
      .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
        margin-top: 4rem;
      }

      .testimonial-card {
        background: var(--glass);
        border: 1px solid var(--glass-border);
        border-radius: 20px;
        padding: 2.5rem;
        backdrop-filter: blur(20px);
        position: relative;
        transition: all 0.4s ease;
        box-shadow: 0 0 25px rgba(0, 212, 255, 0.1);
        will-change: transform;
      }

      .testimonial-card::before {
        content: '"';
        position: absolute;
        top: -10px;
        left: 20px;
        font-size: 4rem;
        color: var(--accent);
        font-family: serif;
        opacity: 0.3;
      }

      .testimonial-card:hover {
        transform: translate3d(0, -5px, 0);
        box-shadow: 0 0 40px rgba(0, 212, 255, 0.3);
      }

      .testimonial-text {
        font-style: italic;
        color: var(--text-secondary);
        margin-bottom: 2rem;
        line-height: 1.6;
        font-size: 1.05rem;
      }

      .testimonial-author {
        display: flex;
        align-items: center;
        gap: 1rem;
      }

      .author-avatar {
        width: 50px;
        height: 50px;
        background: var(--gradient-primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: 600;
      }

      .author-info h4 {
        font-weight: 600;
        color: var(--text-primary);
        margin-bottom: 0.25rem;
      }

      .author-info p {
        font-size: 0.9rem;
        color: var(--text-muted);
      }

      /* CTA Section */
      .cta-section {
        background: var(--gradient-primary);
        position: relative;
        overflow: hidden;
      }

      .cta-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        animation: ctaFloat 8s ease-in-out infinite;
      }

      @keyframes ctaFloat {
        0%,
        100% {
          transform: translate3d(0, 0, 0);
        }
        50% {
          transform: translate3d(0, -15px, 0);
        }
      }

      .cta-content {
        text-align: center;
        position: relative;
        z-index: 2;
      }

      .cta-title {
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 800;
        margin-bottom: 1.5rem;
        color: white;
      }

      .cta-subtitle {
        font-size: 1.2rem;
        margin-bottom: 2.5rem;
        color: rgba(255, 255, 255, 0.9);
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
      }

      .cta-buttons {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
      }

      .btn-white {
        background: white;
        color: var(--primary);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
      }

      .btn-white:hover {
        transform: translate3d(0, -3px, 0);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
      }

      .btn-outline {
        background: transparent;
        color: white;
        border: 2px solid rgba(255, 255, 255, 0.3);
        backdrop-filter: blur(10px);
      }

      .btn-outline:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.5);
        transform: translate3d(0, -3px, 0);
      }

      /* Contact Form */
      .contact-section {
        background: var(--secondary);
      }

      .contact-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        margin-top: 4rem;
      }

      .contact-form {
        background: var(--glass);
        border: 1px solid var(--glass-border);
        border-radius: 20px;
        padding: 2.5rem;
        backdrop-filter: blur(20px);
        box-shadow: 0 0 25px rgba(0, 212, 255, 0.1);
      }

      .form-group {
        margin-bottom: 1.5rem;
      }

      .form-label {
        display: block;
        margin-bottom: 0.5rem;
        font-weight: 600;
        color: var(--text-primary);
        font-size: 0.9rem;
      }

      .form-input {
        width: 100%;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid var(--glass-border);
        border-radius: 10px;
        color: var(--text-primary);
        font-size: 1rem;
        transition: all 0.3s ease;
      }

      .form-input:focus {
        outline: none;
        border-color: var(--accent);
        background: rgba(255, 255, 255, 0.08);
        box-shadow: 0 0 15px rgba(0, 212, 255, 0.2);
      }

      .form-input::placeholder {
        color: var(--text-muted);
      }

      .form-textarea {
        resize: vertical;
        min-height: 120px;
      }

      .contact-info {
        padding: 2rem 0;
      }

      .contact-item {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 2rem;
        padding: 1.5rem;
        background: var(--glass);
        border: 1px solid var(--glass-border);
        border-radius: 15px;
        backdrop-filter: blur(20px);
        transition: all 0.3s ease;
        box-shadow: 0 0 15px rgba(0, 212, 255, 0.1);
      }

      .contact-item:hover {
        background: rgba(255, 255, 255, 0.08);
        transform: translate3d(5px, 0, 0);
      }

      .contact-icon {
        width: 50px;
        height: 50px;
        background: var(--gradient-primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.2rem;
      }

      .contact-details h4 {
        font-weight: 600;
        color: var(--text-primary);
        margin-bottom: 0.25rem;
      }

      .contact-details p {
        color: var(--text-secondary);
        font-size: 0.95rem;
      }

      /* Footer */
      .footer {
        background: var(--primary);
        border-top: 1px solid var(--glass-border);
        padding: 4rem 0 2rem;
        position: relative;
      }

      .footer::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 1px;
        background: var(--gradient-primary);
        animation: footerScan 6s linear infinite;
      }

      @keyframes footerScan {
        0% {
          transform: translate3d(-100%, 0, 0);
        }
        100% {
          transform: translate3d(100%, 0, 0);
        }
      }

      .footer-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 3rem;
        margin-bottom: 3rem;
      }

      .footer-section h3 {
        font-size: 1.2rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        color: var(--text-primary);
      }

      .footer-section p,
      .footer-section a {
        color: var(--text-secondary);
        text-decoration: none;
        line-height: 1.8;
        transition: color 0.3s ease;
        display: block;
        margin-bottom: 0.5rem;
      }

      .footer-section a:hover {
        color: var(--accent);
      }

      .social-links {
        display: flex;
        justify-content: center; /* Added to center the icons */
        gap: 1rem;
        margin-top: 1.5rem;
      }

      .social-link {
        width: 45px;
        height: 45px;
        background: var(--glass);
        border: 1px solid var(--glass-border);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-secondary);
        text-decoration: none;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
      }

      .social-link:hover {
        background: var(--accent);
        color: white;
        transform: translate3d(0, -3px, 0);
        box-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
      }

      .footer-bottom {
        text-align: center;
        padding-top: 2rem;
        border-top: 1px solid var(--glass-border);
        color: var(--text-muted);
        font-size: 0.9rem;
      }

      /* Optimized Animations */
      @keyframes slideInLeft {
        0% {
          opacity: 0;
          transform: translate3d(-30px, 0, 0);
        }
        100% {
          opacity: 1;
          transform: translate3d(0, 0, 0);
        }
      }

      @keyframes slideInRight {
        0% {
          opacity: 0;
          transform: translate3d(30px, 0, 0);
        }
        100% {
          opacity: 1;
          transform: translate3d(0, 0, 0);
        }
      }

      @keyframes fadeInUp {
        0% {
          opacity: 0;
          transform: translate3d(0, 20px, 0);
        }
        100% {
          opacity: 1;
          transform: translate3d(0, 0, 0);
        }
      }

      /* Scroll Animations */
      .fade-in {
        opacity: 0;
        transform: translate3d(0, 30px, 0);
        transition: all 0.6s ease;
      }

      .fade-in.visible {
        opacity: 1;
        transform: translate3d(0, 0, 0);
      }

      .slide-in-left {
        opacity: 0;
        transform: translate3d(-40px, 0, 0);
        transition: all 0.6s ease;
      }

      .slide-in-left.visible {
        opacity: 1;
        transform: translate3d(0, 0, 0);
      }

      .slide-in-right {
        opacity: 0;
        transform: translate3d(40px, 0, 0);
        transition: all 0.6s ease;
      }

      .slide-in-right.visible {
        opacity: 1;
        transform: translate3d(0, 0, 0);
      }

      .scale-in {
        opacity: 0;
        transform: scale(0.9);
        transition: all 0.6s ease;
      }

      .scale-in.visible {
        opacity: 1;
        transform: scale(1);
      }

      /* 3D Floating Elements */
      .floating-particle {
        position: absolute;
        width: 4px;
        height: 4px;
        background: var(--accent);
        border-radius: 50%;
        pointer-events: none;
        animation: floatParticle 6s ease-in-out infinite;
        box-shadow: 0 0 8px var(--accent);
      }

      @keyframes floatParticle {
        0%,
        100% {
          transform: translate3d(0, 0, 0) scale(1);
          opacity: 0.6;
        }
        25% {
          transform: translate3d(30px, -30px, 20px) scale(1.2);
          opacity: 1;
        }
        50% {
          transform: translate3d(0, -60px, 40px) scale(0.8);
          opacity: 0.4;
        }
        75% {
          transform: translate3d(-30px, -30px, 20px) scale(1.1);
          opacity: 0.8;
        }
      }

      /* Responsive Design */
      @media (max-width: 1024px) {
        .hero-container {
          grid-template-columns: 1fr;
          text-align: center;
          padding: 0 0.7rem;
          gap: 3rem;
        }

        .contact-container {
          grid-template-columns: 1fr;
          gap: 3rem;
        }

        /* Adjust for tablets - two columns for cards and feature blocks */
        .cards-grid,
        .about-unique-features {
          grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        }
      }

      @media (max-width: 768px) {
        /* Hide desktop menu on mobile */
        .nav-menu-desktop {
          display: none;
        }

        /* Show mobile menu on mobile */
        .nav-menu-mobile {
          display: flex;
          padding: 1.5rem; /* Slightly increased padding for better touch targets */
        }

        .nav-toggle {
          display: flex;
        }

        .nav-cta {
          margin-top: 1rem;
        }

        .hero-buttons {
          justify-content: center;
        }

        .cta-buttons {
          flex-direction: column;
          align-items: center;
        }

        /* Single column on mobile for cards and feature blocks */
        .cards-grid,
        .about-unique-features {
          grid-template-columns: 1fr;
        }

        .project-showcase {
          grid-template-columns: 1fr;
        }

        .testimonials-grid {
          grid-template-columns: 1fr;
        }

        .section {
          padding: 5rem 0;
        }

        .hero-stats {
          justify-content: center;
        }
        .header {
          padding: 1rem 0;
        }
        .logo {
          font-size: 1.2rem;
          font-weight: 700;
          color: var(--text-primary);
        }

        /* Responsive adjustments for mobile menu mega dropdown */
        .nav-menu-mobile .nav-item-dropdown {
          width: 100%; /* Full width for dropdown item in mobile */
          text-align: center; /* Center "Explore More" */
        }

        .nav-menu-mobile .mega-dropdown-menu {
          position: static; /* Position normally within the flow */
          transform: none;
          width: 100%;
          max-width: none;
          margin-top: 1rem;
          padding: 0.8rem; /* Adjusted padding for mobile dropdown */
          box-shadow: none;
          border: none;
          background: rgba(
            255,
            255,
            255,
            0.05
          ); /* Slightly different background for nested dropdown */
          border-radius: 10px;
          flex-direction: column; /* Stack columns vertically */
          gap: 1rem; /* Adjusted gap for mobile dropdown */
          display: none; /* Hidden by default in mobile, toggled by JS */
        }

        /* For mobile, the dropdown should show when the parent nav-item-dropdown is clicked */
        .nav-menu-mobile .nav-item-dropdown.active .mega-dropdown-menu {
          display: flex;
        }

        .feature-block {
          padding: 2rem;
        }
        .feature-icon {
          width: 60px;
          height: 60px;
          font-size: 1.8rem;
          margin-bottom: 1.5rem;
        }
        .feature-title {
          font-size: 1.3rem;
        }
        .feature-description {
          margin-bottom: 1.5rem;
        }
      }

      @media (max-width: 480px) {
        .container {
          padding: 0 1rem;
        }

        .nav-container {
          padding: 0 1rem;
        }

        .hero-title {
          font-size: 2.5rem;
        }

        .section-title {
          font-size: 2rem;
        }

        .cta-title {
          font-size: 2rem;
        }

        .btn {
          padding: 0.8rem 1.5rem;
          font-size: 0.9rem;
        }

        .card,
        .contact-form {
          padding: 1.5rem;
        }
      }

      /* Custom Scrollbar */
      ::-webkit-scrollbar {
        width: 6px;
      }

      ::-webkit-scrollbar-track {
        background: var(--primary);
      }

      ::-webkit-scrollbar-thumb {
        background: var(--gradient-primary);
        border-radius: 3px;
      }

      ::-webkit-scrollbar-thumb:hover {
        background: var(--accent);
      }

      /* Modal Styles */
      .modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(10px);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2000;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
      }

      .modal-overlay.active {
        opacity: 1;
        visibility: visible;
      }

      .modal-content {
        background: var(--secondary);
        border: 1px solid var(--glass-border);
        border-radius: 20px;
        padding: 2.5rem;
        max-width: 700px;
        width: 90%;
        max-height: 90vh;
        overflow-y: auto;
        position: relative;
        transform: translateY(20px);
        opacity: 0;
        transition: transform 0.3s ease, opacity 0.3s ease;
        box-shadow: 0 0 50px rgba(0, 212, 255, 0.4);
      }

      .modal-overlay.active .modal-content {
        transform: translateY(0);
        opacity: 1;
      }

      .modal-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1.5rem;
        border-bottom: 1px solid rgba(0, 212, 255, 0.2);
        padding-bottom: 1rem;
      }

      .modal-header h3 {
        font-size: 1.8rem;
        font-weight: 700;
        background: var(--gradient-primary);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }

      .modal-close-btn {
        background: none;
        border: none;
        font-size: 2rem;
        color: var(--text-secondary);
        cursor: pointer;
        transition: color 0.3s ease, transform 0.3s ease;
      }

      .modal-close-btn:hover {
        color: var(--accent);
        transform: rotate(90deg);
      }

      .modal-body {
        font-size: 1.1rem;
        color: var(--text-secondary);
        line-height: 1.7;
      }

      .modal-body p {
        margin-bottom: 1rem;
      }

      .modal-body p:last-child {
        margin-bottom: 0;
      }
    