
    /* ===== RESET & BASE STYLES ===== */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Poppins', sans-serif;
      overflow-x: hidden;
      background: #f8fafc;
    }

    html {
      scroll-behavior: smooth;
    }
/* ===== ENHANCED MOBILE RESPONSIVE HEADER ===== */
@media (max-width: 768px) {
  .main-header {
    height: 70px;
  }
  
  .main-header.scrolled {
    padding: 0;
  }
  
  .nav-container {
    padding: 0 15px;
    height: 70px;
  }
  
  .nav-logo {
    gap: 8px;
  }
  
  .nav-logo img {
    height:36px !important;
    width: auto;
  }
  
  .logo-text {
    font-size: 18px;
    font-weight: 700;
    white-space: nowrap;
  }
  
  .mobile-toggle {
    display: block !important;
    font-size: 22px;
    padding: 8px;
    z-index: 1001;
  }
  
  .desktop-nav {
    display: none;
  }
  
  .mobile-nav {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 999;
    overflow-y: auto;
  }
  
  .mobile-nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .mobile-links {
    list-style: none;
    margin-bottom: 30px;
  }
  
  .mobile-links li {
    margin-bottom: 5px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .mobile-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 15px;
    text-decoration: none;
    color: #2d3748;
    font-weight: 500;
    font-size: 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
  }
  
  .mobile-links a:hover {
    background: rgba(56, 82, 144, 0.08);
    color: #385290;
  }
  
  .mobile-dropdown-content {
    padding-left: 20px;
    margin-top: 0;
    display: none;
    background: rgba(247, 250, 252, 0.5);
    border-radius: 8px;
    margin: 5px 0;
  }
  
  .mobile-dropdown-content.active {
    display: block;
    animation: slideDown 0.3s ease;
  }
  
  .mobile-dropdown-content a {
    padding: 15px 20px;
    font-size: 15px;
    color: #4a5568;
    border-left: 3px solid transparent;
  }
  
  .mobile-dropdown-content a:hover {
    background: rgba(56, 82, 144, 0.1);
    color: #385290;
    border-left: 3px solid #385290;
  }
  
  .dropdown-arrow {
    transition: transform 0.3s ease;
  }
  
  .dropdown-arrow.rotated {
    transform: rotate(180deg);
  }
  
  .mobile-cta {
    margin-top: 30px;
    padding: 20px;
    background: linear-gradient(135deg, #1f2a44 0%, #385290 100%);
    border-radius: 12px;
    text-align: center;
    color: rgb(251, 251, 251) !important;
  }
  
  .mobile-cta a {
    display: block;
    width: 100%;
    background: white;
    color: #385290;
    padding: 15px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .mobile-cta a:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
  }
  
  /* Mobile hamburger animation */
  .mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #2d3748;
    margin: 5px 0;
    transition: all 0.3s ease;
  }
  
  .mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  
  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}

/* For very small screens */
@media (max-width: 480px) {
  .nav-container {
    padding: 0 12px;
  }
  
  .nav-logo img {
    height: 36px;
  }
  
  .logo-text {
    font-size: 16px;
  }
  
  .mobile-nav {
    padding: 15px;
  }
  
  .mobile-links a {
    padding: 16px 12px;
    font-size: 15px;
  }
}

/* Animation for dropdown */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
    .nav-logo img {
        WIDTH: 183PX !important;
        height: 66px !important;
    }
}
    /* ===== HEADER NAVIGATION ===== */
    .main-header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
      transition: all 0.4s ease;
    }

    .main-header.scrolled {
      background: rgba(255, 255, 255, 0.98);
      box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
      padding: 5px 0;
    }

    .nav-container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 30px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      height: 80px;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .nav-logo img {
      height: 88px !important;
      width: auto;
    }

    .logo-text {
      font-size: 22px;
      font-weight: 700;
      background: linear-gradient(135deg, #1f2a44 0%, #385290 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .desktop-nav {
      display: flex;
      align-items: center;
      gap: 40px;
    }

    .nav-links {
      display: flex;
      list-style: none;
      gap: 35px;
    }

    .nav-links li {
      position: relative;
    }

    .nav-links a {
      text-decoration: none;
      color: #2d3748;
      font-weight: 500;
      font-size: 16px;
      padding: 8px 0;
      position: relative;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .nav-links a:hover {
      color: #385290;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: linear-gradient(135deg, #1f2a44 0%, #385290 100%);
      transition: width 0.3s ease;
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    /* Services Dropdown */
    .dropdown {
      position: relative;
    }

    .dropdown-content {
      position: absolute;
      top: 100%;
      left: 0;
      width: 280px;
      background: white;
      border-radius: 12px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
      padding: 15px 0;
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: all 0.3s ease;
      z-index: 1000;
    }

    .dropdown:hover .dropdown-content {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .dropdown-content a {
      padding: 12px 25px;
      display: flex;
      align-items: center;
      gap: 12px;
      color: #4a5568;
      font-size: 14.5px;
      border-left: 3px solid transparent;
      transition: all 0.2s ease;
    }

    .dropdown-content a:hover {
      background: #f7fafc;
      color: #385290;
      border-left: 3px solid #385290;
      padding-left: 30px;
    }

    .dropdown-content i {
      width: 18px;
      color: #718096;
    }

    .dropdown-content a:hover i {
      color: #385290;
    }

    .dropdown-arrow {
      font-size: 18px;
      transition: transform 0.3s ease;
    }

    .dropdown:hover .dropdown-arrow {
      transform: rotate(180deg);
    }

    /* Mobile Menu Toggle */
    .mobile-toggle {
      display: none;
      background: none;
      border: none;
      font-size: 24px;
      color: #2d3748;
      cursor: pointer;
      padding: 5px;
    }

    /* Mobile Navigation */
    .mobile-nav {
      position: fixed;
      top: 80px;
      left: 0;
      width: 100%;
      background: white;
      padding: 20px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      transform: translateY(-100%);
      opacity: 0;
      visibility: hidden;
      transition: all 0.4s ease;
      z-index: 999;
    }

    .mobile-nav.active {
      transform: translateY(0);
      opacity: 1;
      visibility: visible;
    }

    .mobile-links {
      list-style: none;
    }

    .mobile-links li {
      margin-bottom: 10px;
    }

    .mobile-links a {
      display: block;
      padding: 15px;
      text-decoration: none;
      color: #0a2f58;
      font-weight: 500;
      border-radius: 8px;
      transition: all 0.3s ease;
    }
       .mobile-links {
      display: block;
      padding: 15px;
      text-decoration: none;
      color: #ffffff;
      font-weight: 500;
      border-radius: 8px;
      transition: all 0.3s ease;
    }

    .mobile-links a:hover {
      background: #f7fafc;
      color: #385290;
    }

    .mobile-dropdown-content {
      padding-left: 20px;
      margin-top: 5px;
      display: none;
    }

    .mobile-dropdown-content.active {
      display: block;
    }

    /* CTA Button */
    .nav-cta {
      background: linear-gradient(135deg, #1f2a44 0%, #385290 100%);
      color: white;
      padding: 12px 28px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      font-size: 15px;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(56, 82, 144, 0.3);
    }

    .nav-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(56, 82, 144, 0.4);
      background: linear-gradient(135deg, #385290 0%, #1f2a44 100%);
    }

    /* ===== HERO SECTION STYLES ===== */
    .hero-section {
      position: relative;
      height: 100vh;
      overflow: hidden;
    }

    .carousel-container {
      position: relative;
      width: 100%;
      height: 100%;
    }

    .carousel-slide {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      opacity: 0;
      transition: opacity 1s ease;
    }

    .carousel-slide.active {
      opacity: 1;
    }

    .slide-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
    }

    .slide-content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: white;
      text-align: center;
      max-width: 800px;
      padding: 0 20px;
    }

    .slide-content h3 {
      font-size: 18px;
      font-weight: 500;
      color: #e2e8f0;
      margin-bottom: 15px;
      letter-spacing: 2px;
      text-transform: uppercase;
    }

    .slide-content h1 {
      font-size: 48px;
      font-weight: 700;
      margin-bottom: 20px;
      line-height: 1.2;
    }

    .slide-content p {
      font-size: 18px;
      line-height: 1.6;
      color: #cbd5e0;
    }

    .carousel-nav {
      position: absolute;
      top: 50%;
      width: 100%;
      display: flex;
      justify-content: space-between;
      padding: 0 30px;
      transform: translateY(-50%);
    }

    .nav-btn {
      background: rgba(255, 255, 255, 0.2);
      border: none;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      color: white;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      backdrop-filter: blur(10px);
      transition: all 0.3s ease;
    }

    .nav-btn:hover {
      background: rgba(255, 255, 255, 0.3);
      transform: scale(1.1);
    }

    .carousel-indicators {
      position: absolute;
      bottom: 40px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 10px;
    }

    .indicator {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.5);
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .indicator.active {
      background: white;
      transform: scale(1.2);
    }

    .scroll-indicator {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      color: white;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 5px;
      cursor: pointer;
      animation: bounce 2s infinite;
    }

    @keyframes bounce {
      0%, 20%, 50%, 80%, 100% {transform: translateY(0) translateX(-50%);}
      40% {transform: translateY(-10px) translateX(-50%);}
      60% {transform: translateY(-5px) translateX(-50%);}
    }

    .hero-card {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: rgba(255, 255, 255, 0);
      backdrop-filter: blur(7px);
      border-radius: 20px;
      padding: 40px;
      width: 100%;
      max-width: 600px;
      text-align: center;
      border: 1px solid rgba(255, 255, 255, 0.2);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
      
    }
    
   .hero-cardtwo {
      position: absolute;
      top: 24%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: rgba(255, 255, 255, 0.235);
      backdrop-filter: blur(10px);
      border-radius: 20px;
      padding: 10px;
      width: 50%;
      max-width: 300px;
      text-align: center;
      border: 1px solid rgba(255, 255, 255, 0.2);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    }
  .logo-box img {
    height: 96px;
    margin-bottom: -3px;
}
    .title {
      font-size: 32px;
      font-weight: 700;
      color: white;
      margin-bottom: 5px;
    }

    .subtitle {
      font-size: 24px;
      font-weight: 600;
      color: #e2e8f0;
      margin-bottom: 25px;
    }
 /* === LOADING ANIMATION === */
        .preloader-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #0a1931 0%, #1a2c4f 100%);
            z-index: 9999;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .pulse-loader {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57);
            animation: pulseExpand 1.5s infinite alternate, rotateColors 3s infinite linear;
            position: relative;
        }

        .pulse-loader::after {
            content: '';
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            border-radius: 50%;
            border: 3px solid rgba(255, 107, 107, 0.2);
            animation: ripple 2s infinite;
        }

        @keyframes pulseExpand {
            0% { transform: scale(1); }
            100% { transform: scale(1.2); }
        }

        @keyframes rotateColors {
            0% { filter: hue-rotate(0deg); }
            100% { filter: hue-rotate(360deg); }
        }

        @keyframes ripple {
            0% { transform: scale(0.8); opacity: 1; }
            100% { transform: scale(1.5); opacity: 0; }
        }

        /* === PAGE TRANSITIONS === */
        .page-transition {
            animation: pageSlideIn 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        @keyframes pageSlideIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* === TERMS PAGE STYLES - UNIQUE CLASSES === */
        .terms-page-wrapper {
            background: #f8fafc;
            min-height: 100vh;
            padding-top: 80px;
        }

        /* Header Banner */
        .terms-header-banner {
            background: linear-gradient(135deg, 
                rgba(10, 25, 49, 0.95) 0%, 
                rgba(26, 44, 79, 0.95) 50%,
                rgba(42, 67, 113, 0.95) 100%),
                url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            padding: 100px 0 60px;
            position: relative;
            overflow: hidden;
        }

        .terms-header-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 50%, rgba(74, 144, 226, 0.1) 0%, transparent 70%),
                       radial-gradient(circle at 70% 20%, rgba(255, 107, 107, 0.08) 0%, transparent 60%);
        }

        .banner-content-container {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            animation: contentFloatUp 1s ease-out;
        }

        @keyframes contentFloatUp {
            from { opacity: 0; transform: translateY(40px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .terms-main-title {
            font-size: 3.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, #fff 0%, #a0c8ff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 20px;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            animation: titleGlow 3s infinite alternate;
        }

        @keyframes titleGlow {
            0% { filter: drop-shadow(0 0 10px rgba(160, 200, 255, 0.3)); }
            100% { filter: drop-shadow(0 0 20px rgba(160, 200, 255, 0.6)); }
        }

        .terms-subtitle {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 30px;
            line-height: 1.6;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            animation: fadeInUp 1s ease 0.3s both;
        }

        .last-update-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 12px 25px;
            border-radius: 50px;
            font-size: 0.95rem;
            color: #fff;
            animation: badgePulse 2s infinite;
        }

        @keyframes badgePulse {
            0%, 100% { box-shadow: 0 0 0 0 rgba(74, 144, 226, 0.4); }
            50% { box-shadow: 0 0 0 10px rgba(74, 144, 226, 0); }
        }

        /* Main Content Layout */
        .terms-main-content {
            display: grid;
            grid-template-columns: 280px 1fr;
            gap: 50px;
            max-width: 1400px;
            margin: 60px auto;
            padding: 0 30px;
        }

        /* Navigation Sidebar */
        .terms-nav-sidebar {
            position: sticky;
            top: 120px;
            height: fit-content;
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 10px 40px rgba(10, 25, 49, 0.08);
            border: 1px solid #e1e8f0;
            transition: transform 0.3s ease;
        }

        .terms-nav-sidebar:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 50px rgba(10, 25, 49, 0.12);
        }

        .nav-title-wrapper {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 2px solid #f1f5f9;
        }

        .nav-icon-circle {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            animation: iconFloat 3s infinite ease-in-out;
        }

        @keyframes iconFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .nav-heading-text {
            font-size: 1.3rem;
            font-weight: 700;
            color: #0a1931;
            margin: 0;
        }

        .terms-nav-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .terms-nav-item {
            margin-bottom: 12px;
        }

        .terms-nav-link {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 15px 20px;
            text-decoration: none;
            color: #64748b;
            border-radius: 12px;
            border-left: 4px solid transparent;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .terms-nav-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(74, 144, 226, 0.1), transparent);
            transition: left 0.6s;
        }

        .terms-nav-link:hover::before {
            left: 100%;
        }

        .terms-nav-link:hover,
        .terms-nav-link.active {
            background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
            color: #0a1931;
            border-left-color: #4a90e2;
            transform: translateX(5px);
        }

        .nav-link-icon {
            width: 20px;
            text-align: center;
            color: #94a3b8;
        }

        .terms-nav-link:hover .nav-link-icon,
        .terms-nav-link.active .nav-link-icon {
            color: #4a90e2;
            animation: iconBounce 0.5s;
        }

        @keyframes iconBounce {
            0%, 100% { transform: translateX(0); }
            50% { transform: translateX(3px); }
        }

        /* Content Area */
        .terms-document-area {
            background: white;
            border-radius: 20px;
            padding: 50px;
            box-shadow: 0 10px 40px rgba(10, 25, 49, 0.08);
            border: 1px solid #e1e8f0;
        }

        .document-intro-box {
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 40px;
            border-left: 5px solid #4a90e2;
            animation: fadeInLeft 0.8s ease;
        }

        @keyframes fadeInLeft {
            from { opacity: 0; transform: translateX(-20px); }
            to { opacity: 1; transform: translateX(0); }
        }

        .document-main-heading {
            font-size: 2.2rem;
            color: #0a1931;
            margin-bottom: 15px;
            position: relative;
            padding-bottom: 15px;
        }

        .document-main-heading::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, #4a90e2, #ff6b6b);
            border-radius: 3px;
        }

        .document-intro-text {
            font-size: 1.1rem;
            color: #475569;
            line-height: 1.7;
            margin-bottom: 0;
        }

        /* Terms Sections */
        .terms-section-block {
            margin-bottom: 70px;
            padding-bottom: 50px;
            border-bottom: 2px dashed #e2e8f0;
            position: relative;
            animation: sectionReveal 0.8s ease both;
            animation-play-state: paused;
        }

        .terms-section-block.in-view {
            animation-play-state: running;
        }

        @keyframes sectionReveal {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .section-header-wrapper {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 30px;
            padding: 20px;
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            border-radius: 15px;
            border-left: 5px solid #4a90e2;
        }

        .section-icon-container {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            animation: iconSpin 20s infinite linear;
        }

        @keyframes iconSpin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .section-title-heading {
            font-size: 1.8rem;
            color: #0a1931;
            margin: 0;
            flex: 1;
        }

        .section-content-wrapper {
            padding: 0 20px;
        }

        .content-paragraph {
            font-size: 1.05rem;
            color: #475569;
            line-height: 1.8;
            margin-bottom: 25px;
            position: relative;
            padding-left: 20px;
        }

        .content-paragraph::before {
            content: '•';
            position: absolute;
            left: 0;
            color: #4a90e2;
            font-size: 1.5rem;
            line-height: 1;
        }

        /* Info Boxes */
        .highlight-panel {
            background: linear-gradient(135deg, rgba(74, 144, 226, 0.1) 0%, rgba(53, 122, 189, 0.05) 100%);
            border-radius: 15px;
            padding: 30px;
            margin: 30px 0;
            border-left: 5px solid #4a90e2;
            position: relative;
            overflow: hidden;
            animation: panelGlow 3s infinite alternate;
        }

        @keyframes panelGlow {
            0% { box-shadow: 0 5px 20px rgba(74, 144, 226, 0.1); }
            100% { box-shadow: 0 5px 30px rgba(74, 144, 226, 0.2); }
        }

        .highlight-panel::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent 60%, rgba(255, 255, 255, 0.3) 100%);
            pointer-events: none;
        }

        .panel-title {
            display: flex;
            align-items: center;
            gap: 12px;
            color: #1e40af;
            font-size: 1.3rem;
            margin-bottom: 20px;
        }

        .panel-icon {
            color: #4a90e2;
        }

        .warning-panel {
            background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(220, 38, 38, 0.05) 100%);
            border-left: 5px solid #ef4444;
            animation: warningPulse 2s infinite;
        }

        @keyframes warningPulse {
            0%, 100% { box-shadow: 0 5px 20px rgba(239, 68, 68, 0.1); }
            50% { box-shadow: 0 5px 30px rgba(239, 68, 68, 0.2); }
        }

        .warning-panel .panel-title {
            color: #dc2626;
        }

        .warning-panel .panel-icon {
            color: #ef4444;
        }

        /* List Styles */
        .feature-list-container {
            margin: 25px 0;
            padding: 0;
            list-style: none;
        }

        .feature-list-item {
            padding: 15px 15px 15px 45px;
            margin-bottom: 12px;
            background: white;
            border-radius: 10px;
            border: 1px solid #e2e8f0;
            position: relative;
            transition: all 0.3s ease;
            animation: listItemSlideIn 0.5s ease both;
            animation-play-state: paused;
        }

        .terms-section-block.in-view .feature-list-item {
            animation-play-state: running;
        }

        @keyframes listItemSlideIn {
            from { opacity: 0; transform: translateX(-20px); }
            to { opacity: 1; transform: translateX(0); }
        }

        .feature-list-item:hover {
            transform: translateX(10px);
            box-shadow: 0 5px 15px rgba(74, 144, 226, 0.1);
            border-color: #4a90e2;
        }

        .feature-list-item::before {
            content: '✓';
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            width: 24px;
            height: 24px;
            background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 0.9rem;
        }

        /* Contact Section */
        .contact-action-section {
            background: linear-gradient(135deg, #0a1931 0%, #1a2c4f 100%);
            border-radius: 20px;
            padding: 60px;
            text-align: center;
            margin-top: 80px;
            position: relative;
            overflow: hidden;
            animation: contactReveal 1s ease;
        }

        @keyframes contactReveal {
            from { opacity: 0; transform: translateY(40px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .contact-action-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
            background-size: 30px 30px;
            animation: patternMove 20s linear infinite;
            pointer-events: none;
        }

        @keyframes patternMove {
            0% { transform: translate(0, 0) rotate(0deg); }
            100% { transform: translate(-30px, -30px) rotate(1deg); }
        }

        .contact-heading {
            color: white;
            font-size: 2.2rem;
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
        }

        .contact-description {
            color: rgba(255, 255, 255, 0.85);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto 30px;
            line-height: 1.6;
            position: relative;
            z-index: 2;
        }

        .contact-action-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
            color: white;
            padding: 16px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            z-index: 2;
            overflow: hidden;
        }

        .contact-action-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.6s;
        }

        .contact-action-btn:hover::before {
            left: 100%;
        }

        .contact-action-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(74, 144, 226, 0.3);
        }

        /* Scroll Progress */
        .scroll-progress-container {
            position: fixed;
            top: 80px;
            left: 0;
            width: 100%;
            height: 4px;
            background: rgba(10, 25, 49, 0.1);
            z-index: 1000;
        }

        .scroll-progress-bar {
            height: 100%;
            background: linear-gradient(90deg, #4a90e2, #ff6b6b, #4ecdc4);
            width: 0%;
            transition: width 0.3s ease;
        }

        /* Back to Top */
        .back-to-top-btn {
            position: fixed;
            bottom: 40px;
            right: 40px;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #0a1931 0%, #1a2c4f 100%);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 999;
            box-shadow: 0 10px 30px rgba(10, 25, 49, 0.3);
            animation: btnFloat 3s infinite ease-in-out;
        }

        @keyframes btnFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .back-to-top-btn.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .back-to-top-btn:hover {
            background: linear-gradient(135deg, #1a2c4f 0%, #2a4371 100%);
            transform: scale(1.1);
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .terms-main-content {
                grid-template-columns: 250px 1fr;
                gap: 40px;
            }
        }

        @media (max-width: 992px) {
            .terms-main-content {
                grid-template-columns: 1fr;
            }
            
            .terms-nav-sidebar {
                position: static;
                margin-bottom: 40px;
            }
            
            .terms-main-title {
                font-size: 2.8rem;
            }
            
            .terms-header-banner {
                padding: 80px 0 50px;
            }
        }

        @media (max-width: 768px) {
            .terms-main-title {
                font-size: 2.2rem;
            }
            
            .terms-document-area {
                padding: 30px;
            }
            
            .contact-action-section {
                padding: 40px 25px;
            }
            
            .section-title-heading {
                font-size: 1.5rem;
            }
            
            .document-main-heading {
                font-size: 1.8rem;
            }
        }

        @media (max-width: 576px) {
            .terms-main-content {
                padding: 0 20px;
                margin: 40px auto;
            }
            
            .terms-document-area {
                padding: 25px 20px;
            }
            
            .section-header-wrapper {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }
            
            .contact-action-btn {
                padding: 14px 30px;
                font-size: 1rem;
            }
            
            .back-to-top-btn {
                bottom: 20px;
                right: 20px;
                width: 50px;
                height: 50px;
            }
        }

        /* === CAREER MODAL STYLES === */
        .career-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(10, 25, 49, 0.95);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .career-modal-overlay.active {
            display: flex;
            opacity: 1;
            animation: modalFadeIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        @keyframes modalFadeIn {
            from { opacity: 0; backdrop-filter: blur(0px); }
            to { opacity: 1; backdrop-filter: blur(10px); }
        }

        .career-modal {
            background: white;
            border-radius: 25px;
            width: 90%;
            max-width: 800px;
            max-height: 90vh;
            overflow-y: auto;
            transform: translateY(30px);
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            animation: modalSlideUp 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        @keyframes modalSlideUp {
            from { transform: translateY(100px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        .career-modal-overlay.active .career-modal {
            transform: translateY(0);
        }

        .modal-header {
            background: linear-gradient(135deg, #0a1931 0%, #1a2c4f 100%);
            color: white;
            padding: 20px;
            border-radius: 25px 25px 0 0;
            position: relative;
        }

        .modal-close {
            position: absolute;
            top: 25px;
            right: 25px;
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-close:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: rotate(90deg);
        }

       

        .modal-header p {
            color: rgba(255, 255, 255, 0.85);
            font-size: 1.1rem;
        }

        .modal-body {
            padding: 40px;
        }

        .career-form {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
        }

        .form-group {
            position: relative;
        }

        .form-group.full-width {
            grid-column: span 2;
        }

        .form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #0a1931;
        }

        .form-label span {
            color: #ef4444;
        }

        .form-input,
        .form-select,
        .form-textarea {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: white;
        }

        .form-input:focus,
        .form-select:focus,
        .form-textarea:focus {
            outline: none;
            border-color: #4a90e2;
            box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
            transform: translateY(-2px);
        }

        .phone-input-group {
            display: flex;
            gap: 10px;
        }

        .country-code {
            flex: 0 0 120px;
        }

        .phone-number {
            flex: 1;
        }

        .file-upload {
            grid-column: span 2;
            border: 3px dashed #e2e8f0;
            border-radius: 15px;
            padding: 40px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .file-upload:hover {
            border-color: #4a90e2;
            background: rgba(74, 144, 226, 0.05);
            transform: translateY(-5px);
        }

        .file-upload-icon {
            font-size: 3rem;
            color: #4a90e2;
            margin-bottom: 15px;
            animation: uploadFloat 2s infinite ease-in-out;
        }

        @keyframes uploadFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .file-upload-text {
            color: #64748b;
        }

        .file-upload-text strong {
            color: #0a1931;
        }

        .form-buttons {
            grid-column: span 2;
            display: flex;
            gap: 20px;
            justify-content: flex-end;
            margin-top: 30px;
        }

        .cancel-btn,
        .submit-btn {
            padding: 14px 40px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
        }

        .cancel-btn {
            background: #f1f5f9;
            color: #64748b;
        }

        .cancel-btn:hover {
            background: #e2e8f0;
            transform: translateY(-2px);
        }

        .submit-btn {
            background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(74, 144, 226, 0.3);
        }

        /* Responsive for modal */
        @media (max-width: 768px) {
            .career-form {
                grid-template-columns: 1fr;
            }
            
            .form-group.full-width {
                grid-column: span 1;
            }
            
            .file-upload {
                grid-column: span 1;
            }
            
            .form-buttons {
                grid-column: span 1;
                flex-direction: column;
            }
            
            .modal-body {
                padding: 25px;
            }
        }
    .countries {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
      margin: 25px 0;
      margin-top: 121px;
    }

    .country-tag {
      background: rgba(255, 255, 255, 0.15);
      padding: 8px 16px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 500;
      color: white;
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .cta-btn {
      background: linear-gradient(135deg, #1f2a44 0%, #385290 100%);
      color: white;
      border: none;
      padding: 16px 32px;
      border-radius: 50px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin: 0 auto;
      transition: all 0.3s ease;
      box-shadow: 0 8px 25px rgba(56, 82, 144, 0.4);
    }

    .cta-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 30px rgba(56, 82, 144, 0.5);
    }

    .floating-particles {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
    }

    .particle {
      position: absolute;
      background: white;
      border-radius: 50%;
      opacity: 0.3;
      animation: float 15s infinite linear;
    }

    @keyframes float {
      0% {
        transform: translateY(100vh) translateX(0);
      }
      100% {
        transform: translateY(-100px) translateX(20px);
      }
    }

    /* ===== ABOUT SECTION ===== */
    .about-section {
      padding: 100px 20px;
      background: white;
      position: relative;
      overflow: hidden;
    }

    .bg-element {
      position: absolute;
      border-radius: 50%;
      background: linear-gradient(135deg, #1f2a4420 0%, #38529020 100%);
      z-index: 0;
    }

    .bg-1 {
      width: 300px;
      height: 300px;
      top: -150px;
      right: -150px;
    }

    .bg-2 {
      width: 200px;
      height: 200px;
      bottom: -100px;
      left: -100px;
    }

    .about-container {
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .section-header {
      text-align: center;
      max-width: 800px;
      margin: 0 auto 60px;
    }

    .section-header h1 {
      font-size: 36px;
      font-weight: 700;
      color: #1a202c;
      background: linear-gradient(135deg, #1f2a44 0%, #385290 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .section-header p {
      font-size: 18px;
      color: #4a5568;
      line-height: 1.6;
    }

    .mission-vision {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-bottom: 60px;
    }

    .card {
      background: white;
      border-radius: 20px;
      padding: 40px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    }

    .mv-icon {
      font-size: 40px;
      color: #385290;
      margin-bottom: 20px;
    }

    .mv-title {
      font-size: 24px;
      font-weight: 600;
      color: #1a202c;
      margin-bottom: 15px;
    }

    .mv-text {
      color: #4a5568;
      line-height: 1.6;
    }

    .stats-row {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 30px;
    }

    .stat-card {
      text-align: center;
      padding: 30px;
      background: white;
      border-radius: 15px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
      transition: all 0.3s ease;
    }

    .stat-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    }

    .stat-icon {
      font-size: 32px;
      color: #385290;
      margin-bottom: 15px;
    }

    .stat-number {
      font-size: 40px;
      font-weight: 700;
      color: #1a202c;
      margin-bottom: 5px;
    }

    .stat-label {
      color: #4a5568;
      font-size: 16px;
    }

    /* ===== IMPACT SECTION ===== */
    .impact-section {
      padding: 100px 20px;
      background: linear-gradient(135deg, #1f2a44 0%, #385290 100%);
      position: relative;
      overflow: hidden;
    }

    .impact-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('https://images.pexels.com/photos/3184460/pexels-photo-3184460.jpeg?auto=compress&cs=tinysrgb&w=1920');
      background-size: cover;
      background-position: center;
      opacity: 0.1;
    }

    .impact-container {
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .impact-title {
      text-align: center;
      font-size: 36px;
      font-weight: 700;
      color: white;
      margin-bottom: 15px;
    }

    .impact-sub {
      text-align: center;
      font-size: 18px;
      color: #e2e8f0;
      margin-bottom: 60px;
    }

    .impact-stats {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
    }

    .impact-card {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      border-radius: 15px;
      padding: 40px 20px;
      text-align: center;
      border: 1px solid rgba(255, 255, 255, 0.2);
      transition: all 0.3s ease;
    }

    .impact-card:hover {
      background: rgba(255, 255, 255, 0.15);
      transform: translateY(-5px);
    }

    .impact-icon {
      font-size: 40px;
      color: white;
      margin-bottom: 20px;
    }

    .impact-card h3 {
      font-size: 40px;
      font-weight: 700;
      color: white;
      margin-bottom: 10px;
    }

    .impact-card p {
      color: #e2e8f0;
      font-size: 16px;
    }

    /* ===== SERVICES SECTION ===== */
    .services-section {
      padding: 100px 20px;
      background: white;
    }

    .services-tabs {
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
      justify-content: center;
      margin-bottom: 50px;
    }

    .tab {
      background: #f7fafc;
      border: 2px solid #e2e8f0;
      padding: 15px 25px;
      border-radius: 12px;
      font-size: 15px;
      font-weight: 500;
      color: #4a5568;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 10px;
      transition: all 0.3s ease;
    }

    .tab:hover {
      background: #edf2f7;
      border-color: #cbd5e0;
    }

    .tab.active {
      background: linear-gradient(135deg, #1f2a44 0%, #385290 100%);
      color: white;
      border-color: #385290;
    }

    .services-content {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      align-items: center;
    }

    .services-image img {
      width: 100%;
      height: 400px;
      object-fit: cover;
      border-radius: 20px;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }

    .services-card {
      background: white;
      border-radius: 20px;
      padding: 40px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }

    .services-card h3 {
      font-size: 28px;
      font-weight: 600;
      color: #1a202c;
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .blue-icon {
      color: #385290;
    }

    .service-desc {
      font-size: 18px;
      color: #4a5568;
      margin-bottom: 30px;
      line-height: 1.6;
    }

    .service-list {
      list-style: none;
    }

    .service-list li {
      padding: 10px 0;
      padding-left: 30px;
      position: relative;
      color: #4a5568;
    }

    .service-list li:before {
      content: '✓';
      position: absolute;
      left: 0;
      color: #385290;
      font-weight: bold;
    }

    /* ===== TRUST SECTION ===== */
    .trust-section {
      padding: 100px 20px;
      background: #f7fafc;
    }

    .special {
      color: #1a202c !important;
    }

    .certifications {
      max-width: 800px;
      margin: 0 auto 60px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .cert-card {
      background: white;
      border-radius: 15px;
      padding: 40px;
      text-align: center;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
      transition: all 0.3s ease;
    }

    .cert-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    }

    .cert-card .icon {
      font-size: 48px;
      color: #385290;
      margin-bottom: 20px;
    }

    .cert-card h2 {
      font-size: 24px;
      font-weight: 600;
      color: #1a202c;
      margin-bottom: 10px;
    }

    .cert-card p {
      color: #4a5568;
    }

    .security-measures {
      max-width: 1000px;
      margin: 0 auto;
      background: white;
      border-radius: 20px;
      padding: 40px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }

    .security-header {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-bottom: 30px;
    }

    .icontwo {
      font-size: 32px;
      color: #385290;
    }

    .security-header h2 {
      font-size: 28px;
      font-weight: 600;
      color: #1a202c;
    }

    .security-list {
      list-style: none;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
    }

    .security-list li {
      padding: 12px 0;
      padding-left: 40px;
      position: relative;
      color: #4a5568;
    }

    .tick {
      position: absolute;
      left: 0;
      color: #385290;
      font-size: 20px;
    }

    /* ===== CONTACT SECTION ===== */
    .contact-section {
      padding: 60px 20px;
      background: white;
    }

    .sub-heading {
      font-size: 18px;
      color: #4a5568;
      max-width: 600px;
      margin: 0 auto;
      text-align: center;
    }

    .contact-container {
      max-width: 1200px;
      margin: 60px auto 0;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
    }

    .info-side {
      display: flex;
      flex-direction: column;
      gap: 25px;
    }

    .info-card {
      background: white;
      border-radius: 15px;
      padding: 30px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
      display: flex;
      align-items: flex-start;
      gap: 20px;
      transition: all 0.3s ease;
    }

    .info-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    }

    .info-card .icon {
      font-size: 24px;
      color: #385290;
      background: #f7fafc;
      width: 50px;
      height: 50px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .info-content h4 {
      font-size: 18px;
      font-weight: 600;
      color: #1a202c;
      margin-bottom: 10px;
    }

    .info-content p {
      color: #4a5568;
      font-size: 15px;
      line-height: 1.5;
      margin-bottom: 5px;
    }

    .form-side {
      background: white;
      border-radius: 20px;
      padding: 40px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }

    form label {
      display: block;
      font-weight: 500;
      color: #1a202c;
      margin-bottom: 8px;
      margin-top: 20px;
    }

    form label span {
      color: #e53e3e;
    }

    input, select, textarea {
      width: 100%;
      padding: 14px;
      border: 2px solid #e2e8f0;
      border-radius: 10px;
      font-size: 15px;
      color: #4a5568;
      transition: all 0.3s ease;
      background: white;
    }

    input:focus, select:focus, textarea:focus {
      outline: none;
      border-color: #385290;
      box-shadow: 0 0 0 3px rgba(56, 82, 144, 0.1);
    }

    textarea {
      height: 150px;
      resize: vertical;
    }

    .send-btn, .view-btn {
      width: 100%;
      padding: 16px;
      border-radius: 10px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin-top: 30px;
      transition: all 0.3s ease;
    }

    .send-btn {
      background: linear-gradient(135deg, #1f2a44 0%, #385290 100%);
      color: white;
      border: none;
    }

    .view-btn {
      background: #f7fafc;
      color: #385290;
      border: 2px solid #385290;
    }

    .send-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(56, 82, 144, 0.3);
    }

    .view-btn:hover {
      background: #385290;
      color: white;
    }

    .download-note {
      display: block;
      text-align: center;
      margin-top: 15px;
      color: #718096;
      font-size: 14px;
    }
 /* Additional CSS for country tabs and maps */
    .country-tabs-section {
      padding: 80px 20px;
      background: linear-gradient(135deg, #0d636853 0%, #243355ab 100%);
      position: relative;
      overflow: hidden;
    }

    .country-tabs-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('https://images.unsplash.com/photo-1557683316-973673baf926?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80') center/cover;
      opacity: 0.1;
    }

    .section-header {
      text-align: center;
      position: relative;
      z-index: 1;
    }

    .section-header h2 {
      font-size: 2.8rem;
      color: #2c3e69;
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    }

    .section-header .sub-heading {
      color: rgba(255,255,255,0.9);
      font-size: 1.2rem;
      max-width: 600px;
      margin: 0 auto;
    }

    .country-tabs-container {
      max-width: 1200px;
      margin: 0 auto;
      background: white;
      border-radius: 20px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.3);
      overflow: hidden;
      position: relative;
      z-index: 1;
    }

    .country-tabs-header {
      display: flex;
      flex-wrap: wrap;
      background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
      padding: 10px;
      gap: 5px;
    }

    .country-tab {
      flex: 1;
      min-width: 120px;
      padding: 15px 20px;
      background: transparent;
      border: none;
      color: rgba(255,255,255,0.7);
      font-family: 'Poppins', sans-serif;
      font-size: 1rem;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.3s ease;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }

    .country-tab i {
      font-size: 1.2rem;
    }

    .country-tab:hover {
      background: rgba(255,255,255,0.1);
      color: white;
    }

    .country-tab.active {
      background: white;
      color: #1a237e;
      font-weight: 600;
      box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    }

    .tab-content {
      display: none;
      padding: 40px;
    }

    .tab-content.active {
      display: block;
      animation: fadeIn 0.5s ease;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .tab-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: start;
    }

    .office-details {
      background: #f8f9fa;
      padding: 30px;
      border-radius: 15px;
      border-left: 5px solid #667eea;
    }

    .office-details h3 {
      color: #1a237e;
      font-size: 1.8rem;
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .office-details h3 i {
      color: #667eea;
    }

    .address-list {
      list-style: none;
      padding: 0;
      margin: 0 0 30px 0;
    }

    .address-list li {
      padding: 15px 0;
      border-bottom: 1px solid #e0e0e0;
      display: flex;
      gap: 15px;
      align-items: flex-start;
    }

    .address-list li:last-child {
      border-bottom: none;
    }

    .address-list li i {
      color: #667eea;
      margin-top: 3px;
      min-width: 20px;
    }

    .address-text {
      flex: 1;
    }

    .address-text strong {
      display: block;
      color: #333;
      margin-bottom: 5px;
      font-weight: 600;
    }

    .address-text p {
      color: #666;
      margin: 0;
      line-height: 1.6;
    }

    .contact-info {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 15px;
      margin-top: 20px;
    }

    .contact-item {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 12px;
      background: white;
      border-radius: 8px;
      border: 1px solid #e0e0e0;
    }

    .contact-item i {
      color: #667eea;
      font-size: 1.2rem;
    }

    .contact-details h4 {
      margin: 0;
      color: #333;
      font-size: 0.9rem;
      font-weight: 600;
    }

    .contact-details p {
      margin: 3px 0 0 0;
      color: #666;
      font-size: 0.9rem;
    }

    .map-container {
      height: 500px;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0,0,0,0.2);
      position: relative;
    }

    .map-container iframe {
      width: 100%;
      height: 100%;
      border: 0;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
      .tab-inner {
        grid-template-columns: 1fr;
      }
      
      .map-container {
        height: 400px;
      }
      
      .country-tab {
        min-width: 100px;
        padding: 12px 15px;
        font-size: 0.9rem;
      }
    }

    @media (max-width: 768px) {
      .country-tabs-header {
        flex-direction: column;
        gap: 5px;
      }
      
      .country-tab {
        width: 100%;
      }
        /* Hero Section */
        .hero-section {
            background: linear-gradient(rgba(0, 55, 128, 0.9), rgba(4, 21, 68, 0.9)), url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 120px 0 80px;
            position: relative;
        }
        
        .hero-content {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }
        
        .hero-subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .stats-container {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 40px;
            margin-top: 60px;
        }
        
        .stat-box {
            text-align: center;
            padding: 20px;
            min-width: 150px;
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--accent-gold);
            margin-bottom: 5px;
        }
        
        .stat-label {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            opacity: 0.8;
        }
        
        /* Filter Tabs */
        .category-filter {
            padding: 60px 0 40px;
            background-color: var(--light-bg);
        }
        
        .filter-tabs {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 40px;
        }
        
        .filter-btn {
            background: white;
            border: 2px solid #32487e;
            color: var(--primary-blue);
            padding: 12px 24px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .filter-btn:hover, .filter-btn.active {
            background:#32487e;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 55, 128, 0.2);
        }
        
        /* Clients Grid */
        .clients-grid-section {
            padding: 40px 0 80px;
        }
        
        .clients-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .client-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
            opacity: 0;
            transform: translateY(20px);
        }
        
        .client-card.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .client-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 55, 128, 0.15);
        }
        
        .client-logo-container {
            height: 180px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 30px;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }
        
        .client-logo {
            max-width: 180px;
            max-height: 120px;
            object-fit: contain;
            transition: transform 0.3s ease;
        }
        
        .client-card:hover .client-logo {
            transform: scale(1.05);
        }
        
        .client-info {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .client-category {
            display: inline-block;
            background: rgba(0, 55, 128, 0.1);
            color: #32487e;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 15px;
            align-self: flex-start;
        }
        
        .client-name {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--dark-text);
        }
        
        .client-description {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.5;
            margin-bottom: 20px;
            flex-grow: 1;
        }
        
        .client-services {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: auto;
        }
        
        .service-tag {
            background: #f1f5f9;
            color: #475569;
            padding: 5px 10px;
            border-radius: 15px;
            font-size: 0.8rem;
        }
        
        /* CTA Section */
        .cta-section {
            padding: 80px 0;
            background: var(--light-bg);
            text-align: center;
        }
        
        .cta-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: #32487e;
        }
        
        .cta-subtitle {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 40px;
            color: #666;
        }
        
        .cta-button {
            background: #32487e;
            color: white;
            padding: 15px 40px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1.1rem;
            display: inline-block;
            transition: all 0.3s ease;
            text-decoration: none;
            border: none;
        }
        
        .cta-button:hover {
            background: var(--secondary-blue);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 55, 128, 0.3);
        }
       .policy-links {
            display: flex;
            list-style: none;
            padding: 0;
            margin: 0;
            gap: 20px;
        }
        
        .policy-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }
        
        .policy-links a:hover {
            color: var(--accent-gold);
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .hero-title {
                font-size: 2.8rem;
            }
            
            .clients-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
            
            .desktop-nav {
                display: none;
            }
            
            .mobile-toggle {
                display: block;
            }
        }
        
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.2rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
            }
            
            .cta-title {
                font-size: 2rem;
            }
            
            .clients-grid {
                grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
                gap: 20px;
            }
            
            .stats-container {
                gap: 20px;
            }
            
            .stat-box {
                min-width: 120px;
            }
            
            .stat-number {
                font-size: 2rem;
            }
            
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }
        
        @media (max-width: 576px) {
            .hero-title {
                font-size: 1.8rem;
            }
            
            .clients-grid {
                grid-template-columns: 1fr;
            }
            
            .filter-tabs {
                justify-content: flex-start;
                overflow-x: auto;
                padding-bottom: 10px;
                flex-wrap: nowrap;
            }
            
            .filter-btn {
                padding: 10px 18px;
                font-size: 0.9rem;
                white-space: nowrap;
            }
            
            .nav-container {
                padding: 0 15px;
            }
            
            .footer-container {
                grid-template-columns: 1fr;
            }
        }
        
        /* Image Fallback Styling */
        .client-logo-container::after {
            content: attr(data-fallback);
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: #32487e;
            font-weight: bold;
            font-size: 1.2rem;
            text-align: center;
            display: none;
        }
             :root {
            --mim-primary-blue: #003780;
            --mim-secondary-blue: #32487e;
            --mim-accent-gold: #FFD700;
            --mim-light-bg: #f8f9fa;
            --mim-dark-text: #333333;
        }
     
        /* Clients Page Hero Section */
        .clients-hero-area {
            background: linear-gradient(rgba(0, 55, 128, 0.9), rgba(4, 21, 68, 0.9)), url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 120px 0 80px;
            position: relative;
        }
        
        .clients-hero-content {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .clients-hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }
        
        .clients-hero-subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .clients-stats-wrapper {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 40px;
            margin-top: 60px;
        }
        
        .clients-stat-item {
            text-align: center;
            padding: 20px;
            min-width: 150px;
        }
        
        .clients-stat-value {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--mim-accent-gold);
            margin-bottom: 5px;
        }
        
        .clients-stat-label {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            opacity: 0.8;
        }
        
        /* Filter Tabs */
        .clients-filter-section {
            padding: 60px 0 40px;
            background-color: var(--mim-light-bg);
        }
        
        .clients-filter-tabs {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 40px;
        }
        
        .clients-filter-tab {
            background: white;
            border: 2px solid var(--mim-secondary-blue);
            color: var(--mim-secondary-blue);
            padding: 12px 24px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .clients-filter-tab:hover, .clients-filter-tab.active-tab {
            background: var(--mim-secondary-blue);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 55, 128, 0.2);
        }
        
        /* Clients Grid */
        .clients-portfolio-section {
            padding: 40px 0 80px;
        }
        
        .clients-portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .client-portfolio-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
            opacity: 0;
            transform: translateY(20px);
        }
        
        .client-portfolio-card.card-visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .client-portfolio-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 55, 128, 0.15);
        }
        
        .client-portfolio-logo {
            height: 180px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 30px;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }
        
        .client-portfolio-img {
            max-width: 180px;
            max-height: 120px;
            object-fit: contain;
            transition: transform 0.3s ease;
        }
        
        .client-portfolio-card:hover .client-portfolio-img {
            transform: scale(1.05);
        }
        
        .client-portfolio-info {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .client-portfolio-category {
            display: inline-block;
            background: rgba(0, 55, 128, 0.1);
            color: var(--mim-secondary-blue);
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 15px;
            align-self: flex-start;
        }
        
        .client-portfolio-name {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--mim-dark-text);
        }
        
        .client-portfolio-desc {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.5;
            margin-bottom: 20px;
            flex-grow: 1;
        }
        
        .client-portfolio-services {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: auto;
        }
        
        .portfolio-service-tag {
            background: #f1f5f9;
            color: #475569;
            padding: 5px 10px;
            border-radius: 15px;
            font-size: 0.8rem;
        }
        
        /* CTA Section */
        .clients-cta-section {
            padding: 80px 0;
            background: var(--mim-light-bg);
            text-align: center;
        }
        
        .clients-cta-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--mim-secondary-blue);
        }
        
        .clients-cta-subtitle {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 40px;
            color: #666;
        }
        
        .clients-cta-button {
            background: var(--mim-secondary-blue);
            color: white;
            padding: 15px 40px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1.1rem;
            display: inline-block;
            transition: all 0.3s ease;
            text-decoration: none;
            border: none;
        }
        
        .clients-cta-button:hover {
            background: var(--mim-primary-blue);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 55, 128, 0.3);
        }
        
        /* Loading Overlay */
        #clientsTransitionOverlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: white;
            z-index: 9999;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: opacity 0.5s ease;
        }
        
        .clients-loader {
            width: 50px;
            height: 50px;
            border: 5px solid #f3f3f3;
            border-top: 5px solid var(--mim-primary-blue);
            border-radius: 50%;
            animation: clients-spin 1s linear infinite;
        }
        
        @keyframes clients-spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        /* Image Fallback Styling */
        .client-portfolio-logo::after {
            content: attr(data-fallback);
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: var(--mim-secondary-blue);
            font-weight: bold;
            font-size: 1.2rem;
            text-align: center;
            display: none;
        }
        
        .client-portfolio-logo.fallback-active::after {
            display: block;
        }
        
        .client-portfolio-logo.fallback-active img {
            display: none;
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .clients-hero-title {
                font-size: 2.8rem;
            }
            
            .clients-portfolio-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
        }
        
        @media (max-width: 768px) {
            .clients-hero-title {
                font-size: 2.2rem;
            }
            
            .clients-hero-subtitle {
                font-size: 1rem;
            }
            
            .clients-cta-title {
                font-size: 2rem;
            }
            
            .clients-portfolio-grid {
                grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
                gap: 20px;
            }
            
            .clients-stats-wrapper {
                gap: 20px;
            }
            
            .clients-stat-item {
                min-width: 120px;
            }
            
            .clients-stat-value {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 576px) {
            .clients-hero-title {
                font-size: 1.8rem;
            }
            
            .clients-portfolio-grid {
                grid-template-columns: 1fr;
            }
            
            .clients-filter-tabs {
                justify-content: flex-start;
                overflow-x: auto;
                padding-bottom: 10px;
                flex-wrap: nowrap;
            }
            
            .clients-filter-tab {
                padding: 10px 18px;
                font-size: 0.9rem;
                white-space: nowrap;
            }
        }
          
        /* Loading Overlay */
        #transitionOverlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #32487e 0%, #003780 100%);
            z-index: 9999;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: opacity 0.5s ease;
        }
        
        .loader {
            width: 50px;
            height: 50px;
            border: 5px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            border-top-color: white;
            animation: spin 1s ease-in-out infinite;
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
       
        
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, rgba(0, 55, 128, 0.95) 0%, rgba(4, 21, 68, 0.95) 100%), 
                        url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
            padding: 160px 0 80px;
            position: relative;
            margin-top: 80px;
            overflow: hidden;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
            opacity: 0.5;
        }
        
        .hero-content {
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        
        .hero-title {
            font-size: 3.2rem;
            font-weight: 800;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            animation: fadeInUp 1s ease;
        }
        
        .hero-subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-bottom: 40px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            animation: fadeInUp 1s ease 0.2s both;
            font-weight: 300;
        }
        
        .last-updated {
            display: inline-block;
            background: rgba(255, 255, 255, 0.15);
            padding: 10px 20px;
            border-radius: 30px;
            font-size: 0.9rem;
            animation: fadeInUp 1s ease 0.4s both;
            backdrop-filter: blur(10px);
        }
        
        /* Main Content */
        .terms-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 20px;
            display: grid;
            grid-template-columns: 300px 1fr;
            gap: 60px;
        }
        
        /* Table of Contents */
        .toc-sidebar {
            position: sticky;
            top: 120px;
            height: fit-content;
            background: white;
            border-radius: 16px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border: 1px solid #f0f0f0;
        }
        
        .toc-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--light-blue);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .toc-title i {
            color: var(--accent-gold);
        }
        
        .toc-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .toc-list li {
            margin-bottom: 12px;
        }
        
        .toc-list a {
            text-decoration: none;
            color: #555;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            padding: 10px 15px;
            border-radius: 8px;
            transition: all 0.3s ease;
            border-left: 3px solid transparent;
        }
        
        .toc-list a:hover, .toc-list a.active {
            background: var(--light-blue);
            color: var(--primary-blue);
            border-left-color: var(--primary-blue);
        }
        
        .toc-list a i {
            margin-right: 10px;
            font-size: 0.8rem;
            color: var(--medium-blue);
        }
        
        /* Terms Content */
        .terms-content {
            background: white;
            border-radius: 16px;
            padding: 50px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border: 1px solid #f0f0f0;
        }
        
        .terms-header {
            margin-bottom: 40px;
            padding-bottom: 30px;
            border-bottom: 2px solid var(--light-blue);
        }
        
        .terms-intro {
            font-size: 1.1rem;
            color: #555;
            line-height: 1.8;
            margin-bottom: 30px;
        }
        
        .terms-section {
            margin-bottom: 60px;
            scroll-margin-top: 100px;
        }
        
        .terms-section h2 {
            font-size: 1.8rem;
            margin-bottom: 25px;
            color: var(--primary-blue);
            padding-bottom: 15px;
            border-bottom: 2px solid var(--light-blue);
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .terms-section h2 i {
            color: var(--accent-gold);
            background: rgba(255, 179, 71, 0.1);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
        }
        
        .terms-section h3 {
            font-size: 1.4rem;
            margin: 30px 0 20px;
            color: var(--dark-text);
        }
        
        .terms-section p {
            margin-bottom: 20px;
            color: #555;
            line-height: 1.8;
        }
        
        .highlight-box {
            background: var(--light-blue);
            border-left: 4px solid var(--primary-blue);
            padding: 25px;
            border-radius: 8px;
            margin: 25px 0;
        }
        
        .highlight-box h4 {
            color: var(--primary-blue);
            margin-bottom: 15px;
            font-size: 1.2rem;
        }
        
        .info-box {
            background: #fff9e6;
            border-left: 4px solid var(--accent-gold);
            padding: 25px;
            border-radius: 8px;
            margin: 25px 0;
        }
        
        .info-box h4 {
            color: #b88c00;
            margin-bottom: 15px;
            font-size: 1.2rem;
        }
        
        .terms-list {
            list-style: none;
            padding-left: 0;
            margin: 20px 0;
        }
        
        .terms-list li {
            margin-bottom: 15px;
            padding-left: 30px;
            position: relative;
            color: #555;
        }
        
        .terms-list li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--accent-gold);
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        .warning-box {
            background: #ffeaea;
            border-left: 4px solid #e74c3c;
            padding: 25px;
            border-radius: 8px;
            margin: 25px 0;
        }
        
        .warning-box h4 {
            color: #c0392b;
            margin-bottom: 15px;
            font-size: 1.2rem;
        }
        
        /* Accordion for Mobile */
        .accordion-item {
            border: 1px solid #eaeaea;
            border-radius: 10px;
            margin-bottom: 15px;
            overflow: hidden;
        }
        
        .accordion-header {
            padding: 20px;
            background: #f9f9f9;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: var(--primary-blue);
        }
        
        .accordion-content {
            padding: 0;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        
        .accordion-content.active {
            padding: 20px;
            max-height: 1000px;
        }
        
        /* Quick Links Bar */
        .quick-links-bar {
            background: var(--light-blue);
            padding: 20px;
            border-radius: 12px;
            margin-bottom: 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .quick-links-title {
            font-weight: 600;
            color: var(--primary-blue);
        }
        
        .quick-links {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }
        
        .quick-link {
            background: white;
            border: 1px solid #ddd;
            padding: 8px 18px;
            border-radius: 30px;
            text-decoration: none;
            color: #555;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        
        .quick-link:hover {
            background: var(--primary-blue);
            color: white;
            border-color: var(--primary-blue);
        }
        
        /* Contact CTA */
        .contact-cta {
            background: linear-gradient(135deg, #32487e 0%, #003780 100%);
            color: white;
            padding: 40px;
            border-radius: 16px;
            text-align: center;
            margin-top: 60px;
        }
        
        .contact-cta h3 {
            color: white;
            font-size: 1.8rem;
            margin-bottom: 15px;
        }
        
        .contact-cta p {
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 25px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .contact-cta .btn {
            background: white;
            color: var(--primary-blue);
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
        }
        
        .contact-cta .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        /* Footer */
        .footer {
            background: #0a1638;
            color: white;
            padding: 60px 0 20px;
        }
        
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
        }
        
        .footer-box h4 {
            color: white;
            margin-bottom: 25px;
            font-size: 1.2rem;
            font-weight: 600;
        }
        
        .footer-box ul {
            list-style: none;
            padding: 0;
        }
        
        .footer-box ul li {
            margin-bottom: 12px;
        }
        
      
        
        .hero-content {
            display: flex;
            align-items: center;
            gap: 50px;
            position: relative;
            z-index: 1;
        }

        .hero-text {
            flex: 1;
            animation: fadeInUp 1s ease-out;
        }

        .hero-text h1 {
            font-size: 3.2rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero-text p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .hero-visual {
            flex: 1;
            display: flex;
            justify-content: center;
            animation: fadeIn 1s ease-out 0.5s both;
        }

        .phone-mockup {
            position: relative;
            width: 280px;
            height: 500px;
            background: var(--white);
            border-radius: 30px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
            overflow: hidden;
            border: 8px solid #111;
        }

        .phone-screen {
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, #ECE5DD 0%, #D5DBDB 100%);
            padding: 15px;
            overflow: hidden;
            position: relative;
        }

        .chat-bubble {
            position: absolute;
            background: var(--white);
            border-radius: 18px;
            padding: 12px 15px;
            max-width: 70%;
            font-size: 14px;
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
            animation: messageIn 0.5s ease-out forwards;
            opacity: 0;
        }

        .chat-bubble.left {
            left: 15px;
            background: var(--white);
            border-top-left-radius: 5px;
        }

        .chat-bubble.right {
            right: 15px;
            background: var(--whatsapp-chat);
            border-top-right-radius: 5px;
        }

        .chat-bubble:nth-child(1) {
            top: 40px;
            animation-delay: 0.8s;
        }

        .chat-bubble:nth-child(2) {
            top: 100px;
            animation-delay: 1.5s;
        }

        .chat-bubble:nth-child(3) {
            top: 160px;
            animation-delay: 2.2s;
        }

        .chat-bubble:nth-child(4) {
            top: 220px;
            animation-delay: 2.9s;
        }

        /* Features Section */
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--whatsapp-dark);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            width: 70px;
            height: 4px;
            background: var(--whatsapp-green);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .section-title p {
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
        }

        .features {
            padding: 100px 0;
            background-color: var(--white);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .feature-card {
            background: var(--white);
            border-radius: 15px;
            padding: 35px 25px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.4s ease;
            border: 1px solid rgba(0, 0, 0, 0.05);
            position: relative;
            overflow: hidden;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(37, 211, 102, 0.15);
            border-color: rgba(37, 211, 102, 0.2);
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 0;
            background: var(--whatsapp-green);
            transition: height 0.4s ease;
        }

        .feature-card:hover::before {
            height: 100%;
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background: rgba(37, 211, 102, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            color: var(--whatsapp-green);
            font-size: 30px;
            transition: all 0.3s ease;
        }

        .feature-card:hover .feature-icon {
            background: var(--whatsapp-green);
            color: white;
            transform: scale(1.1);
        }

        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--whatsapp-dark);
        }

        .feature-card p {
            color: var(--text-light);
        }

        /* Reasons Section */
        .reasons {
            padding: 100px 0;
            background-color: var(--bg-light);
        }

        .reasons-container {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        .reason-item {
            display: flex;
            align-items: center;
            gap: 40px;
            background: var(--white);
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.4s ease;
            opacity: 0;
            transform: translateY(30px);
        }

        .reason-item.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .reason-item:nth-child(even) {
            flex-direction: row-reverse;
        }

        .reason-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .reason-icon {
            flex-shrink: 0;
            width: 100px;
            height: 100px;
            background: rgba(37, 211, 102, 0.1);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--whatsapp-green);
            font-size: 40px;
            transition: all 0.3s ease;
        }

        .reason-item:hover .reason-icon {
            background: var(--whatsapp-green);
            color: white;
            transform: rotate(5deg) scale(1.1);
        }

        .reason-content {
            flex: 1;
        }

        .reason-content h3 {
            font-size: 1.6rem;
            margin-bottom: 10px;
            color: var(--whatsapp-dark);
        }

        .reason-content p {
            color: var(--text-light);
        }

        /* Contact Section */
        .contact {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--whatsapp-dark) 0%, var(--whatsapp-light) 100%);
            color: var(--white);
            text-align: center;
        }

        .contact .section-title h2 {
            color: var(--white);
        }

        .contact .section-title h2::after {
            background: var(--white);
        }

        .contact .section-title p {
            color: rgba(255, 255, 255, 0.8);
        }

        .contact-btn {
            display: inline-block;
            background: var(--whatsapp-green);
            color: white;
            padding: 18px 40px;
            font-size: 1.2rem;
            font-weight: 600;
            border-radius: 50px;
            text-decoration: none;
            margin-top: 30px;
            transition: all 0.3s ease;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            border: 2px solid var(--whatsapp-green);
        }

        .contact-btn:hover {
            background: transparent;
            color: var(--whatsapp-green);
            transform: translateY(-5px);
            box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
        }

        /* Footer */
        footer {
            background: var(--whatsapp-dark);
            color: rgba(255, 255, 255, 0.7);
            padding: 60px 0 30px;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column {
            flex: 1;
            min-width: 250px;
        }

        .footer-column h3 {
            color: var(--white);
            margin-bottom: 25px;
            font-size: 1.3rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--whatsapp-green);
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-icons a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: all 0.3s ease;
        }

        .social-icons a:hover {
            background: var(--whatsapp-green);
            transform: translateY(-5px);
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.5);
        }

        /* Animations */
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes messageIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .hero-content {
                flex-direction: column;
                text-align: center;
            }
            
            .hero-text h1 {
                font-size: 2.8rem;
            }
            
            .reason-item, .reason-item:nth-child(even) {
                flex-direction: column;
                text-align: center;
            }
        }

        @media (max-width: 768px) {
           
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero-text h1 {
                font-size: 2.3rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .phone-mockup {
                width: 240px;
                height: 430px;
            }
        }
        

        @media (max-width: 576px) {
            .hero {
                padding: 70px 0;
            }
            
            .features, .reasons, .contact {
                padding: 70px 0;
            }
            
            .feature-card {
                padding: 25px 20px;
            }
            
            .reason-item {
                padding: 20px;
            }
            
            .contact-fbtn {
                padding: 15px 30px;
                font-size: 1rem;
            }
        }
        
            .pageRoot {
            background: linear-gradient(135deg, #1a1f3c 0%, #2d3b5e 100%);
            min-height: 100vh;
            display: grid;
            place-items: center;
            padding: 1.5rem;
        }
        
        .pageContainer {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            width: 100%;
            max-width: 440px;
        }
        
        .brandHeader {
            text-align: center;
            color: #ffffff;
        }
        
        .brandTitle {
            font-size: 3rem;
            font-weight: 900;
            margin-bottom: 0.5rem;
            letter-spacing: -0.5px;
            background: linear-gradient(90deg, #ff6b6b, #ffd93d);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .brandSubtitle {
            color: #a0aec0;
            font-size: 1rem;
            font-weight: 500;
        }
        
        .authPanel {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            padding: 2.5rem 2rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .authPanelHeading {
            color: #2d3748;
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 2rem;
            text-align: center;
        }
        
        .formGroup {
            margin-bottom: 1.5rem;
        }
        
        .formLabel {
            display: block;
            margin-bottom: 0.5rem;
            color: #4a5568;
            font-weight: 600;
            font-size: 0.875rem;
        }
        
        .inputContainer {
            position: relative;
        }
        
        .formInput {
            width: 100%;
            padding: 1rem 1rem 1rem 3rem;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            font-size: 1rem;
            transition: all 0.25s;
            background-color: #f8fafc;
        }
        
        .formInput:focus {
            border-color: #667eea;
            background-color: white;
            outline: none;
            box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.15);
        }
        
        .inputIcon {
            position: absolute;
            left: 1rem;
            top: 50%;
            transform: translateY(-50%);
            color: #94a3b8;
            font-size: 1.125rem;
        }
        
        .formOptions {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
        }
        
        .rememberOption {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .rememberCheckbox {
            width: 1.125rem;
            height: 1.125rem;
            border-radius: 4px;
            accent-color: #667eea;
        }
        
        .rememberLabel {
            color: #4a5568;
            font-size: 0.875rem;
            font-weight: 500;
        }
        
        .forgotLink {
            color: #667eea;
            text-decoration: none;
            font-size: 0.875rem;
            font-weight: 600;
            transition: color 0.2s;
        }
        
        .forgotLink:hover {
            color: #5a67d8;
            text-decoration: underline;
        }
        
        .submitButton {
            width: 100%;
            padding: 1rem;
            background: linear-gradient(90deg, #667eea, #764ba2);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
            margin-bottom: 1.5rem;
        }
        
        .submitButton:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
        }
        
        .submitButton:active {
            transform: translateY(0);
        }
        
        .divider {
            display: flex;
            align-items: center;
            margin: 1.5rem 0;
            color: #94a3b8;
        }
        
        .divider::before,
        .divider::after {
            content: "";
            flex: 1;
            height: 1px;
            background-color: #e2e8f0;
        }
        
        .dividerText {
            padding: 0 1rem;
            font-size: 0.875rem;
        }
        
        .socialAuth {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }
        
        .socialButton {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.875rem;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            background: white;
            color: #4a5568;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
        }
        
        .socialButton:hover {
            border-color: #cbd5e0;
            background-color: #f7fafc;
        }
        
        .footerNote {
            text-align: center;
            color: #a0aec0;
            font-size: 0.875rem;
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid #e2e8f0;
        }
        
        /* Modal Styles with Different Classes */
        .popupBackground {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            animation: fadeIn 0.3s ease-out;
        }
        
        .popupCard {
            background: white;
            border-radius: 16px;
            width: 90%;
            max-width: 500px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
            animation: slideUp 0.4s ease-out;
            overflow: hidden;
        }
        
        .popupHeader {
            padding: 1.5rem 1.5rem 1rem;
            border-bottom: 1px solid #e2e8f0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .popupTitle {
            font-size: 1.5rem;
            font-weight: 700;
            color: #2d3748;
            margin: 0;
        }
        
        .popupCloseBtn {
            background: none;
            border: none;
            font-size: 2rem;
            color: #94a3b8;
            cursor: pointer;
            line-height: 1;
            padding: 0;
            width: 2rem;
            height: 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.2s;
        }
        
        .popupCloseBtn:hover {
            background-color: #f7fafc;
            color: #4a5568;
        }
        
        .popupContent {
            padding: 1.5rem;
        }
        
        .popupMessage {
            color: #4a5568;
            line-height: 1.6;
            margin: 0;
            font-size: 1.125rem;
        }
        
        .popupActions {
            padding: 1rem 1.5rem 1.5rem;
            border-top: 1px solid #e2e8f0;
            display: flex;
            justify-content: flex-end;
            gap: 1rem;
        }
        
        .actionBtn {
            padding: 0.75rem 1.5rem;
            border-radius: 10px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            border: 2px solid transparent;
        }
        
        .actionBtnSecondary {
            background-color: #f7fafc;
            color: #4a5568;
            border-color: #e2e8f0;
        }
        
        .actionBtnSecondary:hover {
            background-color: #edf2f7;
        }
        
        .actionBtnPrimary {
            background: linear-gradient(90deg, #667eea, #764ba2);
            color: white;
            border: none;
            box-shadow: 0 4px 10px rgba(102, 126, 234, 0.3);
        }
        
        .actionBtnPrimary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(102, 126, 234, 0.4);
        }
        
        .demoTrigger {
            display: block;
            text-align: center;
            margin-top: 2rem;
            color: #a0aec0;
            font-size: 0.875rem;
        }
        
        .demoTrigger a {
            color: #667eea;
            text-decoration: none;
            font-weight: 600;
        }
        
        .demoTrigger a:hover {
            text-decoration: underline;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @media (max-width: 480px) {
            .pageContainer {
                max-width: 100%;
            }
            
            .authPanel {
                padding: 2rem 1.5rem;
            }
            
            .brandTitle {
                font-size: 2.5rem;
            }
            
            .formOptions {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }
            
            .socialAuth {
                grid-template-columns: 1fr;
            }
            
            .popupCard {
                width: 95%;
            }
        }
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }
        
        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .client-logo-container.fallback::after {
            display: block;
        }
        
        .client-logo-container.fallback img {
            display: none;
        }
      .tab-content {
        padding: 20px;
      }
      
      .contact-info {
        grid-template-columns: 1fr;
      }
      
      .section-header h2 {
        font-size: 2.2rem;
      }
    }
    /* ===== FLOATING ACTION BUTTON ===== */
    .fab {
      width: 60px;
      height: 48px;
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      cursor: pointer;
      z-index: 999;
      aspect-ratio: 1/1;
    }

    /* ===== CAREER MODAL ===== */
    .career-modal-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.8);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 2000;
      opacity: 0;
      visibility: hidden;
      transition: all 0.4s ease;
      backdrop-filter: blur(10px);
    }

    .career-modal-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    .career-modal {
      background: white;
      border-radius: 20px;
      width: 90%;
      max-width: 800px;
      max-height: 90vh;
      overflow-y: auto;
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
      transform: translateY(20px);
      transition: transform 0.4s ease;
    }

    .career-modal-overlay.active .career-modal {
      transform: translateY(0);
    }

    .modal-header {
      padding: 10px;
      border-bottom: 1px solid #e2e8f0;
      position: relative;
    }

    .modal-close {
      position: absolute;
      top: 25px;
      right: 25px;
      background: none;
      border: none;
      font-size: 28px;
      color: #718096;
      cursor: pointer;
      transition: color 0.3s ease;
    }

    .modal-close:hover {
      color: #e53e3e;
    }

    .modal-header h2 {
      font-size: 32px;
      font-weight: 700;
      color: white !important;
    }

    .modal-header p {
      color: #4a5568;
    }

    .modal-body {
      padding: 30px;
    }

    .career-form {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }

    .form-group {
      margin-bottom: 20px;
    }

    .full-width {
      grid-column: 1 / -1;
    }

    .form-label {
      display: block;
      font-weight: 500;
      color: #1a202c;
      margin-bottom: 8px;
    }

    .form-label span {
      color: #e53e3e;
    }

    .form-input, .form-select, .form-textarea {
      width: 100%;
      padding: 12px;
      border: 2px solid #e2e8f0;
      border-radius: 10px;
      font-size: 15px;
      color: #4a5568;
      transition: all 0.3s ease;
    }

    .form-input:focus, .form-select:focus, .form-textarea:focus {
      outline: none;
      border-color: #385290;
      box-shadow: 0 0 0 3px rgba(56, 82, 144, 0.1);
    }

    .phone-input-group {
      display: flex;
      gap: 10px;
    }

    .country-code {
      width: 120px;
    }

    .phone-number {
      flex: 1;
    }

    .file-upload {
      grid-column: 1 / -1;
      border: 2px dashed #cbd5e0;
      border-radius: 10px;
      padding: 30px;
      text-align: center;
      cursor: pointer;
      transition: all 0.3s ease;
      background: #f7fafc;
    }

    .file-upload:hover {
      border-color: #385290;
      background: #edf2f7;
    }

    .file-upload-icon {
      font-size: 40px;
      color: #718096;
      margin-bottom: 15px;
    }

    .file-upload-text {
      color: #4a5568;
    }

    .file-upload-text strong {
      color: #385290;
    }

    .form-buttons {
      grid-column: 1 / -1;
      display: flex;
      gap: 20px;
      margin-top: 20px;
    }

    .cancel-btn, .submit-btn {
      flex: 1;
      padding: 16px;
      border-radius: 10px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      transition: all 0.3s ease;
    }

    .cancel-btn {
      background: #f7fafc;
      color: #718096;
      border: 2px solid #e2e8f0;
    }

    .cancel-btn:hover {
      background: #e2e8f0;
    }

    .submit-btn {
      background: linear-gradient(45deg, #4CAF50, #2E7D32);
      color: white;
      border: none;
    }

    .submit-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(76, 175, 80, 0.3);
    }

    /* ===== FOOTER ===== */
    .footer {
      background: #1a202c;
      color: white;
      padding: 70px 20px 30px;
    }

    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
    }

    .footer-box h4 {
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 25px;
      color: white;
    }

    .footer-logo {
      height: 50px;
      margin-bottom: 20px;
    }

    .about p {
      color: #cbd5e0;
      line-height: 1.6;
      margin-bottom: 25px;
    }

    .social-icons {
      display: flex;
      gap: 15px;
    }

    .social-icons a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      color: white;
      text-decoration: none;
      transition: all 0.3s ease;
      background: #385290;
      transform: translateY(-3px);
    }

    .footer-box ul {
      list-style: none;
    }

    .footer-box ul li {
      margin-bottom: 15px;
    }

    .footer-box ul li a {
      color: #cbd5e0;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .footer-box ul li a:hover {
      color: white;
      padding-left: 5px;
    }

    .footer-box p {
      color: #cbd5e0;
      margin-bottom: 15px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .footer-line {
      border: none;
      height: 1px;
      background: rgba(255, 255, 255, 0.1);
      margin: 60px 0 30px;
    }

    .footer-bottom {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
    }

    .footer-bottom p {
      color: #cbd5e0;
      font-size: 14px;
    }

    .policy-links {
      display: flex;
      gap: 20px;
      list-style: none;
    }

    .policy-links a {
      color: #cbd5e0;
      text-decoration: none;
      font-size: 14px;
      transition: color 0.3s ease;
    }

    .policy-links a:hover {
      color: white;
    }

    /* ===== RESPONSIVE STYLES ===== */
    @media (max-width: 992px) {
      .services-content {
        grid-template-columns: 1fr;
      }
      
      .contact-container {
        grid-template-columns: 1fr;
      }
      
      .career-form {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 768px) {
      /* Navigation */
      .desktop-nav {
        display: none;
      }
      
      .mobile-toggle {
        display: block;
      }
      
      .nav-container {
        padding: 0 20px;
        height: 70px;
      }
      
      .nav-logo img {
        height: 35px;
      }
      
      .logo-text {
        font-size: 18px;
      }
      
      /* Hero Section */
      .hero-card {
        padding: 30px 20px;
        width: 95%;
      }
      
      .title {
        font-size: 24px;
      }
      
      .subtitle {
        font-size: 18px;
      }
      
      .slide-content h1 {
        font-size: 32px;
      }
      
      .slide-content p {
        font-size: 16px;
      }
      
      /* Sections */
      .section-header h1 {
        font-size: 28px;
      }
      
      .section-header p {
        font-size: 16px;
      }
      
      .mission-vision {
        grid-template-columns: 1fr;
      }
      
      .stats-row {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .impact-stats {
        grid-template-columns: repeat(2, 1fr);
      }
      
      /* Services Tabs */
      .services-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding-bottom: 10px;
      }
      
      .tab {
        white-space: nowrap;
      }
      
      /* Footer */
      .footer-bottom {
        flex-direction: column;
        text-align: center;
      }
      
      .policy-links {
        justify-content: center;
      }
    }

    @media (max-width: 480px) {
      .stats-row {
        grid-template-columns: 1fr;
      }
      
      .impact-stats {
        grid-template-columns: 1fr;
      }
      
      .certifications {
        grid-template-columns: 1fr;
      }
      
      .security-list {
        grid-template-columns: 1fr;
      }
      
      .tab {
        padding: 12px 20px;
        font-size: 14px;
      }
      
      .form-buttons {
        flex-direction: column;
      }
    }

    /* Loading Overlay */
    #transitionOverlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: #1f2a44;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 9999;
      transition: opacity 0.8s ease, visibility 0.8s ease;
    }

    .loader {
      width: 50px;
      height: 50px;
      border: 3px solid rgba(255, 255, 255, 0.3);
      border-radius: 50%;
      border-top-color: white;
      animation: spin 1s ease-in-out infinite;
    }

    @keyframes spin {
      to { transform: rotate(360deg); }
    }

    /* Smooth Fade-in Animation */
    .section-visible {
      animation: fadeInUp 0.8s ease forwards;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
 .footer-logo{
    width: 80%;
    height: 40%;
 }
 /* aboiut */
 
        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-blue: #2a5bd7;
            --primary-dark-blue: #1a49b0;
            --accent-teal: #00c9a7;
            --dark-charcoal: #222831;
            --light-white: #f8f9fa;
            --medium-gray: #6c757d;
            --light-gray-bg: #e9ecef;
            --shadow-effect: 0 5px 15px rgba(0, 0, 0, 0.08);
            --transition-all: all 0.3s ease;
        }

       

        h1, h2, h3, h4 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            line-height: 1.3;
            margin-bottom: 1rem;
            color: var(--dark-charcoal);
        }

        h1 {
            font-size: 2.8rem;
            font-weight: 700;
        }

        h2 {
            font-size: 2.2rem;
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 2rem;
        }

        p {
            margin-bottom: 1.2rem;
            color: var(--medium-gray);
        }

        .mim-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .mim-button {
            display: inline-block;
            padding: 12px 28px;
            background-color:#2d406e;
            color: white;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 500;
            border: none;
            cursor: pointer;
            transition: var(--transition-all);
            font-family: 'Poppins', sans-serif;
        }

        .mim-button:hover {
            background-color: var(--primary-dark-blue);
            transform: translateY(-2px);
            box-shadow: var(--shadow-effect);
        }

        .mim-button-teal {
            background-color:#2d406e;
        }

        .mim-button-teal:hover {
            background-color: #00b394;
        }

        /* Header Section */
        .mim-header-section {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

        .mim-header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }

        .mim-logo-wrapper {
            display: flex;
            align-items: center;
        }

        .mim-logo-text {
            font-size: 1.8rem;
            color: var(--primary-blue);
            margin-bottom: 0;
        }

        .mim-logo-accent {
            color: var(--accent-teal);
        }

        .mim-navigation-menu {
            display: flex;
            list-style: none;
        }

        .mim-nav-item {
            margin-left: 30px;
        }

        .mim-nav-link {
            text-decoration: none;
            color: var(--dark-charcoal);
            font-weight: 500;
            transition: var(--transition-all);
            font-family: 'Poppins', sans-serif;
        }

        .mim-nav-link:hover {
            color: var(--primary-blue);
        }

        .mim-mobile-toggle {
            display: none;
            font-size: 1.5rem;
            background: none;
            border: none;
            color: var(--primary-blue);
            cursor: pointer;
        }

        /* Hero Banner */
        .mim-hero-banner {
            background: linear-gradient(#182e67cf, #243152b2), url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 160px 0 100px;
            text-align: center;
        }
#mimhead{
    color: white;
}
        .mim-hero-title {
            color: white;
            font-size: 3.2rem;
            margin-bottom: 1.5rem;
        }
        .mim-hero-titletwo {
            color: white;
            font-size: 1.4rem;
            margin-bottom: 1.5rem;
        }

        .mim-hero-description {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 2.5rem;
            color: rgba(255, 255, 255, 0.9);
        }

        /* About Company */
        .mim-about-company {
            padding: 100px 0;
            background-color: var(--light-gray-bg);
        }

        .mim-section-heading {
            font-size: 2.2rem;
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 2rem;
        }

        .mim-section-heading:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 70px;
            height: 4px;
            background-color: var(--primary-blue);
        }

        .mim-about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .mim-stats-container {
            display: flex;
            margin-top: 30px;
        }

        .mim-stat-item {
            margin-right: 40px;
        }

        .mim-stat-number {
            font-size: 2.5rem;
            color: var(--primary-blue);
            margin-bottom: 5px;
        }

        .mim-stat-label {
            margin-bottom: 0;
            font-weight: 500;
        }

        /* Mission Vision */
        .mim-mission-vision {
            padding: 100px 0;
        }

        .mim-mv-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }

        .mim-mission-card, .mim-vision-card {
            background-color: white;
            padding: 40px;
            border-radius: 8px;
            box-shadow: var(--shadow-effect);
            transition: var(--transition-all);
        }

        .mim-mission-card:hover, .mim-vision-card:hover {
            transform: translateY(-10px);
        }

        .mim-icon-wrapper {
            font-size: 2.5rem;
            color: var(--primary-blue);
            margin-bottom: 20px;
            background-color: rgba(42, 91, 215, 0.1);
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .mim-vision-icon {
            color: var(--accent-teal);
            background-color: rgba(0, 201, 167, 0.1);
        }

        /* Features Section */
        .mim-features-section {
            padding: 100px 0;
            background-color: #2d406e;
        }

        .mim-features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 50px;
        }

        .mim-feature-box {
            background-color: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: var(--shadow-effect);
            transition: var(--transition-all);
        }

        .mim-feature-box:hover {
            transform: translateY(-5px);
        }

        .mim-feature-icon {
            font-size: 2.2rem;
            color: var(--primary-blue);
            margin-bottom: 20px;
        }

        /* Advantages Section */
        .mim-advantages-section {
            padding: 100px 0;
        }

        .mim-advantages-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 50px;
        }

        .mim-advantage-item {
            text-align: center;
            padding: 30px;
            border-radius: 8px;
            background-color: white;
            box-shadow: var(--shadow-effect);
            transition: var(--transition-all);
        }

        .mim-advantage-item:hover {
            transform: translateY(-5px);
        }

        .mim-advantage-icon {
            font-size: 3rem;
            color: var(--primary-blue);
            margin-bottom: 20px;
        }

        
      
        /* Responsive Design */
        @media (max-width: 992px) {
            .mim-about-content, .mim-mv-grid, .mim-features-grid, .mim-advantages-grid, .mim-footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .mim-hero-title {
                font-size: 2.8rem;
            }
        }


        @media (max-width: 576px) {
            .mim-about-content, .mim-mv-grid, .mim-features-grid, .mim-advantages-grid, .mim-footer-content {
                grid-template-columns: 1fr;
            }
            
            .mim-hero-title {
                font-size: 2rem;
            }
            
            .mim-hero-description {
                font-size: 1rem;
            }
            
            .mim-stats-container {
                flex-direction: column;
            }
            
            .mim-stat-item {
                margin-right: 0;
                margin-bottom: 20px;
            }
        }
   