/* Header CSS Variables - Matching Index.php Theme */
    :root {
      --primary: #6366f1;
      --primary-dark: #4f46e5;
      --secondary: #0ea5e9;
      --accent: #8b5cf6;
      --dark: #0f172a;
      --light: #f8fafc;
      --gray: #64748b;
      --gray-light: #e2e8f0;
      --success: #10b981;
      --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
      --gradient-dark: linear-gradient(135deg, var(--primary-dark) 0%, #0369a1 100%);
      --shadow: 0 10px 25px -5px rgba(99, 102, 241, 0.1);
      --shadow-lg: 0 20px 40px -10px rgba(99, 102, 241, 0.2);
      --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.3);
      
      --header-height: 80px;
      --header-bg: rgba(248, 250, 252, 0.95);
      --header-shadow: 0 10px 30px rgba(99, 102, 241, 0.08);
      --header-border: rgba(99, 102, 241, 0.1);
      --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      --border-radius: 12px;
    }

    /* Reset */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      overflow-x: hidden;
    }

    body {
      font-family: 'Inter', sans-serif;
      line-height: 1.6;
      color: var(--dark);
      background: var(--light);
      overflow-x: hidden;
      padding-top: var(--header-height);
      position: relative;
    }

    body::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: 
          radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
          radial-gradient(circle at 80% 20%, rgba(14, 165, 233, 0.1) 0%, transparent 50%);
      z-index: -1;
      pointer-events: none;
    }

    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* Buttons - Matching Theme */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 14px 32px;
      border-radius: var(--border-radius);
      font-weight: 600;
      text-decoration: none;
      transition: var(--transition-smooth);
      border: 2px solid transparent;
      cursor: pointer;
      font-size: 16px;
      position: relative;
      overflow: hidden;
      z-index: 1;
      font-family: 'Outfit', sans-serif;
    }

    .btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
      transition: left 0.5s;
      z-index: -1;
    }

    .btn:hover::before {
      left: 100%;
    }

    .btn-primary {
      background: var(--gradient);
      color: white;
      box-shadow: var(--shadow);
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-lg);
      background: var(--gradient-dark);
    }

    .btn-outline {
      background: transparent;
      border: 2px solid var(--primary);
      color: var(--primary);
    }

    .btn-outline:hover {
      background: var(--primary);
      color: white;
      transform: translateY(-3px);
      box-shadow: var(--shadow);
    }

    .btn-hover-effect {
      position: relative;
      overflow: hidden;
    }

    .btn-block {
      width: 100%;
    }

    /* Header Styles - Futuristic Theme */
    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: var(--header-height);
      background: var(--header-bg);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      box-shadow: var(--header-shadow);
      border-bottom: 1px solid var(--header-border);
      z-index: 1000;
      transition: var(--transition-smooth);
    }

    .site-header.scrolled {
      height: 70px;
      box-shadow: 0 10px 40px rgba(99, 102, 241, 0.15);
      background: rgba(248, 250, 252, 0.98);
    }

    .site-header.scrolled-down {
      transform: translateY(-100%);
    }

    .site-header.scrolled-up {
      transform: translateY(0);
    }

    .header-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 100%;
      padding: 0 24px;
      max-width: 1280px;
      margin: 0 auto;
    }

    /* Logo Styles */
    .brand {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      z-index: 1002;
    }

    .logo-link {
      text-decoration: none;
      display: flex;
      align-items: center;
      transition: var(--transition-smooth);
      line-height: 0;
    }

    .logo-img {
      height: 48px;
      width: auto;
      max-width: 200px;
      object-fit: contain;
      transition: var(--transition-smooth);
      filter: drop-shadow(0 4px 8px rgba(99, 102, 241, 0.2));
    }

    .site-header.scrolled .logo-img {
      height: 42px;
      max-width: 180px;
    }

    .logo-link:hover .logo-img {
      transform: scale(1.05);
      filter: drop-shadow(var(--shadow-glow));
    }

    .tagline {
      font-size: 11px;
      color: var(--gray);
      margin-top: 4px;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      font-weight: 500;
      font-family: 'Outfit', sans-serif;
      background: var(--gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* Desktop Navigation */
    .nav-desktop {
      display: none;
    }

    @media (min-width: 992px) {
      .nav-desktop {
        display: block;
      }
      
      .nav-inner {
        display: flex;
        align-items: center;
        gap: 32px;
      }
      
      .nav-link {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 12px 0;
        text-decoration: none;
        color: var(--dark);
        font-weight: 500;
        font-size: 15px;
        position: relative;
        transition: var(--transition-smooth);
        font-family: 'Outfit', sans-serif;
      }
      
      .nav-icon {
        font-size: 18px;
        transition: var(--transition-smooth);
      }
      
      .nav-link:hover {
        color: var(--primary);
      }
      
      .nav-link:hover .nav-icon {
        transform: translateY(-2px);
      }
      
      .nav-link.active {
        color: var(--primary);
        font-weight: 600;
      }
      
      .nav-link.active::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: var(--gradient);
        border-radius: 3px 3px 0 0;
      }
      
      .nav-cta {
        padding: 12px 28px;
        font-size: 15px;
        margin-left: 16px;
        white-space: nowrap;
      }
      
      .cta-icon {
        font-size: 18px;
      }
    }

    /* Mobile Menu Toggle */
    .menu-toggle {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      width: 30px;
      height: 24px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0;
      z-index: 1002;
      position: relative;
    }

    @media (min-width: 992px) {
      .menu-toggle {
        display: none;
      }
    }

    .menu-toggle .bar {
      width: 100%;
      height: 3px;
      background: var(--dark);
      border-radius: 3px;
      transition: var(--transition-smooth);
      transform-origin: left center;
    }

    .menu-toggle.active .bar1 {
      transform: rotate(45deg) translateY(-2px);
      background: var(--primary);
    }

    .menu-toggle.active .bar2 {
      opacity: 0;
      transform: scaleX(0);
    }

    .menu-toggle.active .bar3 {
      transform: rotate(-45deg) translateY(2px);
      background: var(--primary);
    }

    /* Mobile Navigation Overlay */
    .mobile-nav-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(15, 23, 42, 0.7);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      z-index: 998;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .mobile-nav-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    /* Mobile Navigation Menu */
    .mobile-nav {
      position: fixed;
      top: 0;
      right: -100%;
      width: 90%;
      max-width: 400px;
      height: 100%;
      background: rgba(248, 250, 252, 0.98);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      box-shadow: -10px 0 60px rgba(99, 102, 241, 0.2);
      z-index: 999;
      transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      display: flex;
      flex-direction: column;
      overflow-y: auto;
      border-left: 1px solid var(--header-border);
    }

    @media (max-width: 480px) {
      .mobile-nav {
        width: 100%;
        max-width: 100%;
      }
    }

    .mobile-nav.active {
      right: 0;
    }

    .mobile-nav-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 24px;
      border-bottom: 1px solid var(--header-border);
      min-height: 70px;
      background: rgba(248, 250, 252, 0.95);
      position: sticky;
      top: 0;
      z-index: 1;
    }

    .mobile-logo-link {
      display: flex;
      align-items: center;
      text-decoration: none;
      line-height: 0;
    }

    .mobile-logo-img {
      height: 38px;
      width: auto;
      max-width: 160px;
      object-fit: contain;
      filter: drop-shadow(0 4px 8px rgba(99, 102, 241, 0.2));
    }

    .mobile-close {
      background: none;
      border: none;
      font-size: 24px;
      color: var(--dark);
      cursor: pointer;
      padding: 8px;
      transition: var(--transition-smooth);
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(99, 102, 241, 0.1);
    }

    .mobile-close:hover {
      background: var(--primary);
      color: white;
      transform: rotate(90deg);
    }

    .mobile-nav-content {
      flex: 1;
      padding: 24px 0;
    }

    .mobile-nav-link {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 24px;
      text-decoration: none;
      color: var(--dark);
      font-weight: 500;
      font-size: 16px;
      border-left: 4px solid transparent;
      transition: var(--transition-smooth);
      font-family: 'Outfit', sans-serif;
    }

    .mobile-nav-link:hover {
      background: rgba(99, 102, 241, 0.05);
      border-left-color: var(--primary);
      color: var(--primary);
    }

    .mobile-nav-link.active {
      background: rgba(99, 102, 241, 0.1);
      border-left-color: var(--primary);
      color: var(--primary);
      font-weight: 600;
    }

    .mobile-nav-icon {
      font-size: 20px;
      margin-right: 16px;
      width: 24px;
      text-align: center;
    }

    .mobile-nav-text {
      flex: 1;
    }

    .mobile-nav-arrow {
      color: var(--gray);
      font-size: 18px;
      transition: var(--transition-smooth);
    }

    .mobile-nav-link:hover .mobile-nav-arrow {
      color: var(--primary);
      transform: translateX(5px);
    }

    .mobile-nav-footer {
      padding: 24px;
      border-top: 1px solid var(--header-border);
      background: rgba(99, 102, 241, 0.02);
      position: sticky;
      bottom: 0;
      background: rgba(248, 250, 252, 0.95);
    }

    .mobile-contact-link {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 16px;
      text-decoration: none;
      background: white;
      border-radius: var(--border-radius);
      margin-bottom: 12px;
      border: 1px solid var(--header-border);
      transition: var(--transition-smooth);
    }

    .mobile-contact-link:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow);
      border-color: var(--primary);
    }

    .contact-icon {
      font-size: 20px;
      color: var(--primary);
    }

    .contact-text {
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .contact-text small {
      font-size: 12px;
      color: var(--gray);
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .contact-text strong {
      font-size: 14px;
      color: var(--dark);
      margin-top: 4px;
    }

    .mobile-cta {
      margin-top: 16px;
      padding: 16px;
      font-size: 16px;
    }

    .mobile-cta .cta-icon {
      font-size: 20px;
    }

    /* Scroll Progress Bar - Matching Theme */
    .scroll-progress {
      position: fixed;
      top: var(--header-height);
      left: 0;
      width: 100%;
      height: 3px;
      background: transparent;
      z-index: 997;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .scroll-progress.visible {
      opacity: 1;
    }

    .progress-bar {
      height: 100%;
      background: var(--gradient);
      width: 0%;
      transition: width 0.1s ease;
      box-shadow: 0 0 20px var(--primary);
    }

    /* Main Content */
    .main-content {
      min-height: calc(100vh - var(--header-height));
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      :root {
        --header-height: 70px;
      }
      
      .header-container {
        padding: 0 16px;
      }
      
      .logo-img {
        height: 42px;
        max-width: 180px;
      }
      
      .site-header.scrolled .logo-img {
        height: 38px;
        max-width: 160px;
      }
      
      .tagline {
        font-size: 10px;
        margin-top: 3px;
      }
      
      .mobile-nav {
        width: 85%;
      }
    }

    @media (max-width: 480px) {
      .logo-img {
        height: 38px;
        max-width: 160px;
      }
      
      .site-header.scrolled .logo-img {
        height: 34px;
        max-width: 140px;
      }
      
      .mobile-logo-img {
        height: 34px;
        max-width: 140px;
      }
      
      .mobile-nav-header {
        padding: 16px 20px;
      }
      
      .mobile-nav-link {
        padding: 16px 20px;
      }
      
      .mobile-nav-footer {
        padding: 20px;
      }
    }

    /* Body lock when menu is open */
    body.menu-open {
      overflow: hidden;
    }

    body.menu-open .main-content {
      filter: blur(4px);
      transition: filter 0.3s ease;
    }

    /* Logo Animation */
    @keyframes logoAppear {
      0% {
        opacity: 0;
        transform: translateY(-10px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }

    .home-page .logo-img {
      animation: logoAppear 0.8s ease-out;
    }

    /* Premium Glass Loader - Matching Theme */
    .page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;

  /* ✅ Transparent glass background */
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  transition: opacity 0.4s ease, visibility 0.4s ease;
}


    .page-loader.hidden {
      opacity: 0;
      visibility: hidden;
    }

    .glass-loader {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 22px;
      padding: 42px 52px;
      background: rgba(255, 255, 255, 0.4);
      border-radius: 26px;
      box-shadow: 
        0 30px 80px rgba(99, 102, 241, 0.18),
        inset 0 1px 1px rgba(255,255,255,0.6);
      border: 1px solid rgba(99, 102, 241, 0.2);
      animation: float 2s ease-in-out infinite;
    }

    .glass-logo {
      width: 84px;
      border-radius: 18px;
      box-shadow: 0 18px 40px rgba(99, 102, 241, 0.25);
    }

    /* Rainbow Text - Matching Theme */
    .rainbow-text {
      font-size: 15px;
      font-weight: 600;
      letter-spacing: 0.6px;
      font-family: 'Outfit', sans-serif;
      background: linear-gradient(
        270deg,
        var(--primary),
        var(--secondary),
        #8b5cf6,
        var(--primary)
      );
      background-size: 400% 400%;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: rainbowMove 3s linear infinite;
    }

    @keyframes rainbowMove {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    /* Navigation Items Hover Effects */
    .nav-link::before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      width: 0;
      height: 2px;
      background: var(--gradient);
      transition: all 0.3s ease;
      transform: translateX(-50%);
    }

    .nav-link:hover::before {
      width: 100%;
    }

    /* Mobile Menu Animation */
    @keyframes slideInRight {
      from {
        opacity: 0;
        transform: translateX(100px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    .mobile-nav-link {
      animation: slideInRight 0.5s ease-out backwards;
    }

    .mobile-nav-link:nth-child(1) { animation-delay: 0.1s; }
    .mobile-nav-link:nth-child(2) { animation-delay: 0.2s; }
    .mobile-nav-link:nth-child(3) { animation-delay: 0.3s; }
    .mobile-nav-link:nth-child(4) { animation-delay: 0.4s; }
    .mobile-nav-link:nth-child(5) { animation-delay: 0.5s; }
    .mobile-nav-link:nth-child(6) { animation-delay: 0.6s; }

    /* Glowing Effects */
    .nav-cta, .mobile-cta {
      position: relative;
      overflow: hidden;
    }

    .nav-cta::after, .mobile-cta::after {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .nav-cta:hover::after, .mobile-cta:hover::after {
      opacity: 1;
    }

    /* Active State Glow */
    .nav-link.active::after {
      box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
    }

    /* Header Background Animation */
    .site-header::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(99, 102, 241, 0.05) 50%,
        transparent 100%
      );
      opacity: 0;
      transition: opacity 0.5s ease;
      pointer-events: none;
    }

    .site-header:hover::before {
      opacity: 1;
      animation: shimmer 2s infinite linear;
    }

    @keyframes shimmer {
      0% {
        transform: translateX(-100%);
      }
      100% {
        transform: translateX(100%);
      }
    }

    /* Enhanced Logo Hover Effect */
    .logo-link::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 60px;
      height: 60px;
      background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
      border-radius: 50%;
      transform: translate(-50%, -50%) scale(0);
      transition: transform 0.3s ease;
      pointer-events: none;
    }

    .logo-link:hover::after {
      transform: translate(-50%, -50%) scale(1);
    }