    /* ====================
       BASE STYLES & VARIABLES
       ==================== */
    :root {
      /* Color Palette */
      --primary-color: #0c84c0;
      --primary-dark: #0c5e7a;
      --primary-light: #e1f0f7;
      --secondary-color: #10b981;
      --secondary-dark: #0d9c6e;
      --accent-color: #f59e0b;
      --dark-color: #0f172a;
      --darker-color: #0f172a;
      --light-color: #f8fafc;
      --lighter-color: #ffffff;
      --gray-color: #64748b;
      --light-gray: #e2e8f0;
      --border-color: #cbd5e1;
      
      /* Spacing */
      --space-xs: 0.25rem;
      --space-sm: 0.5rem;
      --space-md: 1rem;
      --space-lg: 1.5rem;
      --space-xl: 2rem;
      --space-2xl: 3rem;
      --space-3xl: 4rem;

      /* Typography */
      --text-xs: 0.75rem;
      --text-sm: 0.875rem;
      --text-base: 1rem;
      --text-lg: 1.125rem;
      --text-xl: 1.25rem;
      --text-2xl: 1.5rem;
      --text-3xl: 1.875rem;
      --text-4xl: 2.25rem;
      --text-5xl: 3rem;
      
      /* Effects */
      --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
      --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
      --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
      --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
      --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Base Reset */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
      -webkit-text-size-adjust: 100%;
      -webkit-font-smoothing: antialiased;
    }

    body {
      font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
      line-height: 1.6;
      color: var(--dark-color);
      background-color: var(--lighter-color);
      overflow-x: hidden;
    }
@media (max-width: 768px) {
  body.menu-open .hero-legal-hero {
    pointer-events: none;
  }
}
@media (max-width: 768px) {
  .header,
  .mobile-menu,
  .nav-menu {
    position: fixed !important;
    z-index: 100000 !important;
  }
}
@media (max-width: 768px) {
  .hero-legal-hero::before,
  .hero-legal-hero::after {
    pointer-events: none !important;
  }
}
    @media (max-width: 768px) {

  /* ❌ DO NOT touch .hero-content flex-direction */

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta a {
    width: 100%;
    max-width: 320px;
  }

  /* Optional: better mobile spacing */
  .hero-content {
    width: 100%;
  }

  .hero-image img{
    height: auto;
    width: 100%;
    border-radius: 10px;
  }
  section.hero{
    height: auto;
    padding-top: 100px ;
    padding-bottom: 40px;
  }
}
    /* Typography */
    h1, h2, h3, h4, h5, h6 {
      font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: var(--space-md);
    }

    h1 { font-size: var(--text-5xl); }
    h2 { font-size: var(--text-4xl); }
    h3 { font-size: var(--text-3xl); }
    h4 { font-size: var(--text-2xl); }
    h5 { font-size: var(--text-xl); }
    h6 { font-size: var(--text-lg); }

    p {
      margin-bottom: var(--space-md);
      color: var(--gray-color);
    }

    a {
      color: var(--primary-color);
      text-decoration: none;
      transition: var(--transition-fast);
    }

    a:hover {
      color: var(--primary-dark);
      text-decoration: underline;
    }

    /* Utility Classes */
    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
    }

    .section {
      padding: var(--space-3xl) 0;
    }

    .section-header {
      text-align: center;
      margin-bottom: var(--space-2xl);
    }

    .section-subtitle {
      display: inline-block;
      color: var(--primary-color);
      font-weight: 600;
      font-size: var(--text-sm);
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-bottom: var(--space-sm);
    }

    .section-description {
      max-width: 700px;
      margin: 0 auto;
    }

    .text-center { text-align: center; }
    .text-left { text-align: left; }
    .text-right { text-align: right; }

    /* Buttons */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: var(--space-sm) var(--space-lg);
      border-radius: 0.375rem;
      font-weight: 500;
      font-size: var(--text-base);
      transition: var(--transition);
      cursor: pointer;
      border: 1px solid transparent;
      white-space: nowrap;
    }
    .hero.legal-hero .btn-primary{
      background:white;
      color: #007bff;
    }
    .btn-primary {
      background: linear-gradient(135deg, rgb(98, 207, 244), rgb(44, 103, 242));
      color: var(--lighter-color);
    }

    .btn-primary:hover {
      background-color: var(--primary-dark);
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
    }

    .btn-secondary {
      border-radius: 18px;
      background-color: white;
      border: 1px solid #0c85c1;

      font-size: 16px;
      height: 50px;
      width: 150px;
    }

    .btn-secondary:hover {
      background-color: var(--primary-light);
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
    }

    .btn-icon {
      margin-right: var(--space-xs);
    }

    
    /* Hero Section */
    .hero {
      background: linear-gradient(135deg, #007bff, #d9f5ff);
      position: relative;
      overflow: hidden;
      height: auto;
      padding-top: 200px;
      padding-bottom: 100px;
    }

    .hero-content {
      display: flex;
      justify-content: space-between;
      gap: var(--space-2xl);
      position: relative;
      z-index: 1;
      align-items: center;
    }

    .hero-text {
      flex: 1;
      max-width: 600px;
    }

    .hero h1 span {
      color: var(--primary-color);
      display: inline-block;
    }

    .hero .subtitle {
      font-size: var(--text-xl);
      margin-bottom: var(--space-xl);
    }

    .hero-features {
      display: flex;
      align-items: end;
      gap: var(--space-lg);
      margin-bottom: var(--space-xl);
      color: white;
    }

    .feature-item {
      display: flex;
      gap: var(--space-sm);
      font-weight: 500;
    }

    .feature-item i {
      color:#007bff;
      font-size: var(--text-lg);
    }

    .hero-cta {
      display: flex;
      gap: var(--space-md);
      margin-top: var(--space-xl);
    }

    .hero-content .hero-image {
      flex: 0 0 auto;
      position: relative;
      width: auto;
    }

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

/* ===== WHY CHOOSE US ===== */
.why-choose-us {
  padding: 80px 0;
  background-color: #f8fafc;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-subtitle {
  font-size: 13px;
  font-weight: 600;
  color: #2563eb;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: inline-block;
}

.section-header h2 {
  font-size: 32px;
  margin-bottom: 12px;
}

.section-description {
  color: #6b7280;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}
.adv-card1,
.adv-card2,
.adv-card3,
.adv-card4 {
  border: none;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  border: 1px solid #62cff4;
  padding: 40px 0px;
}
.adv-card2{
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}
.adv-card2 .featured-badge{
  margin-top: auto;  
  top: 23px;
  border-radius: 0px;
}
.advantage-icon {
  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin: 0 auto;
  flex-shrink: 0;
}

/* INNER SHARED ICON WRAPPER (CRITICAL FIX) */
.icon-wrapper {
  width: 100%;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
}
.advantage-icon i,
.advantage-icon svg {
  font-size: 22px;    /* or width/height for svg */
  display: block;
}
.advantage-content h3{
  font-size: 18px;
}
.advantage-content p{
  padding: 0px 30px;
}
.para{
  color: white;
}

/* Make advantage links always visible */
.advantage-hover {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
  position: static !important;
  margin-top: 16px;
  display: flex;
  justify-content: center;
}

/* Optional: subtle hover polish */
.advantage-card:hover .advantage-hover {
  transform: none;
}
.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 15px;
  font-weight: 500;
  color: #2563eb;
  text-decoration: none;
}

.btn-text:hover {
  gap: 8px;
  color: #1e40af;
}

.featured-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 32px;
  width: 100%;
  background: linear-gradient(135deg, #62cff4, #2c67f2);
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 0 12px 12px;
}
 /* ===============================
   AI SOLUTIONS SECTION
================================ */

.ai-section {
  padding: var(--space-3xl) 0;
  background-color: var(--lighter-color);
  position: relative;
  overflow: hidden;
}

.ai-solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
}

/* ===============================
   AI CARD (STABLE)
================================ */

.ai-card {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 8px 30px rgba(0,0,0,0.05);
  padding: 32px;

  display: flex;
  flex-direction: column;
  position: relative;

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Highlighted card */
.ai-card.highlighted {
  border-color: #3699da;
}

/* Hover lift ONLY (no size change) */
.ai-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.ai-card.highlighted:hover {
  transform: translateY(-5px);
}

/* ===============================
   CONTENT
================================ */

.ai-card-description {
  color: var(--gray-color);
  margin-bottom: var(--space-lg);
}

.ai-benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 64px; /* 🔥 PERMANENT reserved space */
}

.ai-benefits li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

/* ===============================
   FOOTER (OVERLAY, NO LAYOUT IMPACT)
================================ */

/* Always show AI card CTA */
.ai-card-footer {
  opacity: 1 !important;
  transform: none !important;
  pointer-events: auto !important;
}

/* Show button on hover */
.ai-card:hover .ai-card-footer {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* ===============================
   BUTTON
================================ */

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

/* ===============================
   BADGE
================================ */

.highlight-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 30px;
  width: 100%;
  background: linear-gradient(135deg, #62cff4, #2c67f2);
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 0 0 12px 12px;
}
    /* Stats Section */
    .ai-stats-container {
      background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
      border-radius: var(--rounded-lg);
      padding: var(--space-2xl);
      margin-bottom: var(--space-3xl);
      color: white;
    }

    .ai-stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: var(--space-lg);
      color: white;
    }

    .stat-item {
      text-align: center;
      padding: var(--space-md);
      color: white;
    }

    .stat-number {
      font-size: var(--text-4xl);
      font-weight: 700;
      margin-bottom: var(--space-sm);
      color: white;
    }

    .stat-label {
      font-size: var(--text-sm);
      color: white;
    }

    /* CTA Section */
    .cta-section {
      background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
      color: white;
      padding: 5rem 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="rgba(255,255,255,0.05)" d="M0,0 L100,0 L100,100 L0,100 Z" /></svg>');
      background-size: cover;
      z-index: 1;
    }

    .cta-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      margin: 0 auto;
    }

    .cta-section h2 {
      font-size: 2.5rem;
      margin-bottom: 1.5rem;
      font-weight: 700;
    }

    .cta-section p {
      font-size: 1.2rem;
      margin-bottom: 2.5rem;
      opacity: 0.9;
    }

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

    .btn-large {
      padding: var(--space-md) var(--space-xl);
      font-size: var(--text-lg);
    }
    .section-cta{
      margin-top: 100px;
    }
    .btn-secondary.btn-large{
      height: 61px;
      width: 280px;
    }
/* FOOTER BASE */
.footer {
  background: linear-gradient(180deg, #0b1628 0%, #0a1222 100%);
  color: #cfd6e4;
  padding: 70px 0 25px;
  font-size: 14px;
}

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

/* GRID */
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 50px;
}

/* LOGO + ABOUT */
.footer-about {
  margin-top: 18px;
  line-height: 1.6;
  color: #aeb7c6;
}

/* HEADINGS */
.footer h3 {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 16px;
  font-weight: 600;
}

/* LISTS */
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  color: #8fa3c8;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer ul li a:hover {
  color: #4da3ff;
}

/* NEWSLETTER */
.newsletter {
  margin-top: 25px;
}

.newsletter-form {
  display: flex;
  margin-top: 10px;
  margin-right: 10px;
}
.footer-email {
  flex: 1;
  padding: 8px 10px;
  border-radius: 0;
  border: none;
  outline: none;
  font-size: 15px;
  height: 30px;
}

.footer-button {
  background: #ffffff;
  border: none;
  padding: 0 12px;
  cursor: pointer;
  border-radius: 0;
  height: 30px;
}

.footer-button i {
  color: #0b1628;
}

/* SOCIAL ICONS */
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.social-links a {
  width: 34px;
  height: 34px;
  background: #007bff;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  background: #4aa84a;
}

/* DIVIDER */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #8fa3c8;
}

/* BOTTOM LINKS */
.footer-links a {
  color: #8fa3c8;
  margin-left: 15px;
  text-decoration: none;
}

.footer-links a:hover {
  color: #ffffff;
}

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

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .footer-links a {
    margin-left: 0;
    margin-right: 10px;
  }
}
    /* Animation for Stats Counter */
    @keyframes countUp {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .stat-number.animated {
      animation: countUp 0.5s ease forwards;
    }

    /* Pulse Animation */
    .pulse-animation {
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
      }
      70% {
        box-shadow: 0 0 0 10px rgba(76, 175, 80, 0);
      }
      100% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
      }
    }

    /* Legal Page Specific Styles */
    
    .legal-hero .hero-text h1 {
      color: white;
    }
    
    .legal-hero .subtitle {
      color: rgba(255,255,255,0.9);
      font-size: 1.25rem;
    }
    
    .legal-value .advantage-card {
      min-height: 300px;
    }
    
    .process-steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      margin: 3rem 0;
    }
    
    .process-step {
      position: relative;
      padding: 2rem;
      background: white;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      border:1px solid 
    }
    
    .step-number {
      position: absolute;
      top: -20px;
      left: 20px;
      width: 40px;
      height: 40px;
      background: var(--primary-color);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      font-size: 1.2rem;
    }
    
    .benefits-tabs {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin-bottom: 2rem;
      flex-wrap: wrap;
    }
    
    .benefits-tab {
      padding: 0.75rem 1.5rem;
      background: #f0f0f0;
      border: none;
      border-radius: 30px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .benefits-tab.active {
      background: var(--primary-color);
      color: white;
    }
    
    .benefits-content {
      display: none;
    }
    
    .benefits-content.active {
      display: block;
      animation: fadeIn 0.5s ease;
    }
    
    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1.5rem;
    }
    
    .benefit-card {
      padding: 1.5rem;
      background: white;
      border-radius: 8px;
      box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    }
    
    .benefit-card h3 {
      font-size: 1.1rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--primary-color);
    }
    
    .partner-logos {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      gap: 3rem;
      margin: 3rem 0;
    }
    
    .partner-logos img {
      height: 50px;
      width: auto;
      filter: grayscale(100%);
      opacity: 0.7;
      transition: all 0.3s ease;
    }
    
    .partner-logos img:hover {
      filter: grayscale(0);
      opacity: 1;
    }
    
    .network-features {
      display: flex;
      justify-content: center;
      gap: 2rem;
      flex-wrap: wrap;
      margin-top: 2rem;
    }
    
    .network-feature {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-weight: 500;
    }
    
    .network-feature i {
      color: var(--secondary-color);
    }
    
    .faq-container {
      max-width: 800px;
      margin: 0 auto;
    }
    
    .faq-item {
      margin-bottom: 1rem;
      border-bottom: 1px solid #eee;
    }
    
    .faq-question {
      width: 100%;
      text-align: left;
      padding: 1.5rem 0;
      background: none;
      border: none;
      font-weight: 600;
      font-size: 1.1rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
    }
    
    .faq-question i {
      transition: transform 0.3s ease;
    }
    
    .faq-question.active i {
      transform: rotate(180deg);
    }
    
    .faq-answer {
      padding: 0 0 1.5rem;
      display: none;
    }
    
    .faq-answer.active {
      display: block;
    }
    
    /* Responsive Styles */
    @media (max-width: 1024px) {
      h1 {
        font-size: 2.5rem;
      }
    }
    
    @media (max-width: 768px) {
      .process-steps {
        grid-template-columns: 1fr;
      }
      
      .partner-logos {
        gap: 2rem;
      }
      
      .partner-logos img {
        height: 40px;
      }
      
      .cta-buttons {
        flex-direction: column;
        align-items: center;
      }
    }


    /* Animations */
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    @keyframes spin {
      to { transform: rotate(360deg); }
    }
 