    /* ---------- RESET & GLOBAL ---------- */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: "Inter", system-ui, -apple-system, sans-serif;
      background: #f0f5fe; /* subtle blue background */
      color: #0e1b31;
      line-height: 1.5;
      overflow-x: hidden;
    }

    /* BOXED LAYOUT CONTAINER */
    .boxed-container {
      max-width: 1280px;
      margin: 0 auto;
      width: 90%;
    }

    /* Full width wrappers for background */
    .full-width-bg {
      width: 100%;
      background: transparent;
    }

    /* premium glassmorphism + advanced gradients */
    .bg-radial {
      background: 
        radial-gradient(circle at 10% 20%, rgba(0, 180, 255, 0.15) 0%, transparent 35%),
        radial-gradient(circle at 95% 70%, rgba(100, 80, 255, 0.12) 0%, transparent 45%),
        #ffffff;
    }

    /* ---------- ADVANCED NAV / OFF-CANVAS (mobile only) ---------- */
    nav {
      position: sticky;
      top: 0;
      z-index: 1000;
      width: 100%;
      background: rgba(255,255,255,0.75);
      backdrop-filter: blur(20px) saturate(180%);
      border-bottom: 1px solid rgba(0,0,0,0.04);
      box-shadow: 0 10px 30px -12px rgba(0,20,50,0.1);
    }

    .nav-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.2rem 0;
      max-width: 1280px;
      margin: 0 auto;
      width: 90%;
    }

    .logo {
      font-size: 1.9rem;
      font-weight: 800;
      letter-spacing: -0.02em;
      background: linear-gradient(135deg, #0b2349, #256eeb);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

.logo-link {
  display: inline-block;
  text-decoration: none;
  line-height: 0;  /* Removes extra space below image */
}

.logo-img {
  height: 30px;  /* Adjust as needed */
  width: auto;
  display: block;
  transition: opacity 0.2s ease;
}

.logo-img:hover {
  opacity: 0.9;  /* Optional: slight hover effect */
}

    /* desktop menu */
    .desktop-menu {
      display: flex;
      gap: 2.5rem;
      align-items: center;
    }
    .desktop-menu a {
      text-decoration: none;
      color: #1a2b44;
      font-weight: 500;
      font-size: 0.98rem;
      transition: 0.2s;
    }
    .desktop-menu a:hover {
      color: #2563eb;
    }
    .desktop-menu .nav-cta {
      background: #0c2647;
      color: white !important;
      padding: 0.7rem 2rem;
      border-radius: 40px;
      font-weight: 600;
      box-shadow: 0 12px 20px -12px #0b2349;
      transition: 0.2s;
    }
    .desktop-menu .nav-cta:hover {
      background: #1e3e70;
      transform: translateY(-2px);
    }

    /* hamburger (hidden on desktop) */
    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
      z-index: 1002;
      background: rgba(255,255,255,0.3);
      padding: 0.5rem;
      border-radius: 14px;
      backdrop-filter: blur(8px);
    }
    .hamburger span {
      width: 28px;
      height: 2px;
      background: #0b2349;
      margin: 4px 0;
      border-radius: 6px;
      transition: 0.2s;
    }

    /* off-canvas overlay + menu */
    .offcanvas-overlay {
      position: fixed;
      top: 0; left: 0; width: 100%; height: 100%;
      background: rgba(0,0,0,0.2);
      backdrop-filter: blur(4px);
      z-index: 1100;
      opacity: 0;
      visibility: hidden;
      transition: 0.3s;
    }
.offcanvas-menu {
  position: fixed;
  top: 0; 
  left: -320px;  /* Changed from right to left */
  width: 300px;
  height: 100vh;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(24px);
  box-shadow: 10px 0 40px -10px rgba(0,25,70,0.3); /* Shadow on right side now */
  z-index: 1101;
  padding: 7rem 2rem 2rem;
  transition: left 0.35s cubic-bezier(0.23, 1, 0.32, 1); /* Changed from right to left */
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  border-right: 1px solid rgba(255,255,255,0.6); /* Changed from border-left to border-right */
  border-left: none;
}
    .offcanvas-menu a {
      text-decoration: none;
      color: #0e1b31;
      font-weight: 600;
      font-size: 1.3rem;
      letter-spacing: -0.02em;
      border-bottom: 2px solid transparent;
      transition: 0.15s;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .offcanvas-menu a i {
      font-size: 1.4rem;
      opacity: 0.7;
    }
    .offcanvas-menu .offcanvas-cta {
      margin-top: 2rem;
      background: #0c2647;
      color: white !important;
      padding: 0.5rem 1.8rem;
      border-radius: 100px;
      font-size: 1rem;
      justify-content: center;
      border: none;
    }
.close-btn {
  position: absolute;
  top: 1.8rem;
  right: 1.8rem; /* Changed from left to right */
  left: auto; /* Added this */
  font-size: 2rem;
  background: #eef3fc;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 5px 12px rgba(0,0,0,0.05);
}

    /* mobile-only classes */
    @media (max-width: 900px) {
      .desktop-menu {
        display: none;
      }
      .hamburger {
        display: flex;
      }
    }

    /* when offcanvas open */
    body.menu-open .offcanvas-overlay {
      opacity: 1;
      visibility: visible;
    }
    body.menu-open .offcanvas-menu {
      left: 0;
    }

    /* ---------- HERO SECTION (advanced) ---------- */
    .hero-wrapper {
      width: 100%;
      background: transparent;
    }
    
    .hero {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 80px 0 60px;
      gap: 4rem;
      flex-wrap: wrap;
      max-width: 1280px;
      margin: 0 auto;
      width: 90%;
    }

    .hero-left {
      flex: 1 1 400px;
    }
    .hero-left h1 {
      font-size: clamp(2.8rem, 6vw, 4.8rem);
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -0.03em;
      background: linear-gradient(150deg, #0a203c, #264d9e);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 1.5rem;
    }
    .hero-left p {
      font-size: 1.25rem;
      color: #2d3b53;
      max-width: 550px;
      margin-bottom: 2.5rem;
    }

    .btn-group {
      display: flex;
      gap: 1.2rem;
      flex-wrap: wrap;
    }
    .btn-primary {
      background: #0f2849;
      color: white;
      padding: 1rem 2.5rem;
      border-radius: 60px;
      font-weight: 600;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      box-shadow: 0 18px 30px -12px #0f2849;
      transition: 0.25s;
      border: 1px solid rgba(255,255,255,0.1);
    }
    .btn-primary i { font-size: 1rem; }
    .btn-primary:hover {
      background: #1b3b6b;
      transform: scale(1.02) translateY(-3px);
      box-shadow: 0 28px 36px -14px #153b70;
    }
    
/* ===== Mobile Hero Buttons Perfect Alignment ===== */
@media (max-width: 600px) {

  .btn-group {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.8rem;
    align-items: stretch;
  }

  .btn-group .btn-primary {
    flex: 1;
    padding: 0.85rem 0.6rem;
    font-size: 0.85rem;
    border-radius: 50px;
    justify-content: center;
    text-align: center;
    white-space: nowrap;   /* text break nahi hoga */
  }

  .btn-group .btn-primary i {
    font-size: 0.85rem;
  }
}
    
    
    .btn-outline {
      background: transparent;
      border: 1.5px solid #bac8dc;
      color: #1a2e4a;
      padding: 1rem 2.5rem;
      border-radius: 60px;
      font-weight: 600;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: 0.2s;
    }
    .btn-outline:hover {
      border-color: #2563eb;
      background: rgba(37,99,235,0.04);
      transform: translateY(-2px);
    }

    /* HERO RIGHT — immersive 3D-like card */
    .hero-right {
      flex: 1 1 380px;
      perspective: 1200px;
    }
    .premium-dash {
      background: rgba(255,255,255,0.6);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(255,255,255,0.8);
      border-radius: 50px;
      padding: 2rem 2rem 2.2rem;
      box-shadow: 0 50px 70px -25px rgba(10,40,80,0.35), inset 0 1px 4px #ffffff;
      transform: rotateY(2deg) rotateX(1deg);
      transition: 0.3s;
    }
    .premium-dash:hover {
      transform: rotateY(0deg) rotateX(0deg) translateY(-6px);
    }
    .dash-header {
      display: flex;
      justify-content: space-between;
      color: #193457;
      font-weight: 600;
    }
    .live-badge {
      background: #dcfce7;
      color: #15803d;
      padding: 0.2rem 1rem;
      border-radius: 60px;
      font-size: 0.8rem;
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .chart-grid {
      display: flex;
      gap: 14px;
      align-items: flex-end;
      height: 180px;
      margin: 30px 0;
    }
    .bar {
      flex: 1;
      background: linear-gradient(0deg, #2563eb, #5699ff);
      border-radius: 20px 20px 10px 10px;
      height: 70px;
      transition: 0.3s;
      box-shadow: 0 -5px 20px rgba(37,99,235,0.25);
    }
    .bar:nth-child(1) { height: 70px; }
    .bar:nth-child(2) { height: 150px; }
    .bar:nth-child(3) { height: 100px; }
    .bar:nth-child(4) { height: 190px; }
    .bar:nth-child(5) { height: 120px; }
    .dash-footer {
      display: flex;
      justify-content: space-between;
      background: #ffffffd0;
      padding: 1.2rem;
      border-radius: 28px;
      border: 1px solid white;
    }
    .metric small { color: #4b6589; font-size: 0.7rem; }

    /* stats row (advanced) */
    .stats-wrapper {
      width: 100%;
      background: rgba(255,255,255,0.5);
      backdrop-filter: blur(8px);
      border-top: 1px solid #ffffff;
      border-bottom: 1px solid #e3ecf9;
    }
    
    .stats-advanced {
      display: flex;
      justify-content: space-around;
      flex-wrap: wrap;
      gap: 2rem 3rem;
      padding: 3rem 0;
      max-width: 1280px;
      margin: 0 auto;
      width: 90%;
    }
    .stat-single {
      text-align: center;
    }
    .stat-num {
      font-size: 3.2rem;
      font-weight: 800;
      background: linear-gradient(130deg, #102b4e, #2563eb);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      line-height: 1.2;
    }
    .stat-desc {
      color: #344e78;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      font-size: 0.8rem;
    }

    /* ---------- PAYMENT GATEWAY SECTION (all logos) ---------- */
/* Payment Gateway Section */
.payment-section {
  width: 100%;
  background: #ffffff;
}

.payment-container {
  max-width: 1280px;
  margin: 0 auto;
  width: 90%;
  padding: 60px 0;
}

.payment-section .section-header {
  text-align: center;
  margin-bottom: 40px;
}

.payment-section .section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0b1d3a;
  margin-bottom: 10px;
}

.payment-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem 4rem;
}

/* Style for both image spans and icon spans */
.payment-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 1.2rem;
  font-weight: 500;
  color: #1d3a5c;
  min-width: 120px;
}

/* Image logos */
.payment-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
}

/* Icon styling */
.payment-grid span i {
  font-size: 2rem;
  color: #1d3a5c;
}

/* Hover effect for all payment items */
.payment-grid span:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

.payment-grid span:hover i {
  color: #2563eb;
}

.payment-grid span:hover .payment-logo {
  filter: brightness(1.1);
}

    /* section headers */
    .section-header {
      text-align: center;
      margin-bottom: 4rem;
    }
    .section-header h2 {
      font-size: clamp(2.4rem, 5vw, 3.6rem);
      font-weight: 800;
      letter-spacing: -0.02em;
      color: #0b1d3a;
    }
    .section-header p {
      color: #3d4f6e;
      font-size: 1.2rem;
    }

    /* CARDS - premium & glass */
    .card-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 2rem;
    }
.glass-card {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 42px;
  padding: 2.5rem 2rem;
  box-shadow: 0 25px 45px -18px #172c4b33;
  transition: 0.25s;
  height: 100%;
}
.glass-card:hover {
  transform: translateY(-12px);
  border-color: #aac8ff;
  box-shadow: 0 35px 50px -20px #1a3f7a;
}
    .glass-card i {
      font-size: 2.3rem;
      background: linear-gradient(140deg, #102b4e, #2575eb);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 0.5rem;
    }
    .glass-card h3 {
      font-size: 1.8rem;
      font-weight: 700;
    }
    .glass-card h4 {
      font-size: 1.5rem;
      font-weight: 700;
    }
    .glass-card p {
      color: #364e6b;
    }

/* split dual cards - FIXED ALIGNMENT */
.split-duo {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.split-duo .glass-card {
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 2.5rem 2rem;
}

.split-duo .glass-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.split-duo .glass-card p {
  color: #364e6b;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  flex-grow: 1;  /* Pushes button to bottom */
}

.login-btn {
  display: inline-block;
  background: #0f2849;
  color: white;
  padding: 0.8rem 1.8rem 0.8rem 1.8rem;  /* Top zyada, bottom kam */
  border-radius: 40px;
  font-weight: 500;
  text-decoration: none;
  font-size: 0.95rem;
  box-shadow: 0 8px 12px -6px #0b2349;
  transition: 0.2s;
  border: none;
  align-self: flex-start;
  letter-spacing: 0.3px;
  white-space: nowrap;
  line-height: 1;  /* Line height bhi adjust karo */
}

.login-btn i { 
  margin-right: 6px; 
  font-size: 0.85rem;
}

.login-btn:hover {
  background: #1f3f72;
  transform: translateY(-2px);
  box-shadow: 0 12px 18px -8px #0b2349;
}

/* For mobile */
@media (max-width: 600px) {
  .split-duo .glass-card {
    padding: 2rem 1.5rem;
  }
  
  .login-btn {
    white-space: normal;  /* Allows wrapping on mobile if needed */
    text-align: center;
  }
}

    /* steps with floating numbers */
    .steps-wrap {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 2rem;
    }
    .step-item {
      background: white;
      border-radius: 40px;
      padding: 2.5rem 2rem;
      flex: 1 1 200px;
      box-shadow: 0 30px 40px -20px #1f3a6030;
      text-align: center;
      font-weight: 600;
      position: relative;
      border: 1px solid rgba(255,255,255,0.7);
    }
    .step-num {
      background: #102b4e;
      color: white;
      width: 48px;
      height: 48px;
      border-radius: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 1.6rem;
      margin: 0 auto 1.5rem;
    }

    /* FAQ grid */
    .faq-grid {
      display: grid;
      grid-template-columns: repeat(3,1fr);
      gap: 1.8rem;
    }
    .faq-card {
      background: white;
      padding: 2rem 2.2rem;
      border-radius: 36px;
      box-shadow: 0 20px 35px -15px #cedff2;
    }
    @media (max-width:700px){
      .faq-grid{ grid-template-columns:1fr; }
    }

    /* ULTRA PREMIUM CTA */
    .cta-block {
      width: 100%;
      background: linear-gradient(145deg, #0f2748, #1f4392);
    }
    
    .cta-container {
      max-width: 1280px;
      margin: 0 auto;
      width: 90%;
      padding: 4.5rem 0;
      text-align: center;
      color: white;
    }
    
    .cta-container h2 {
      font-size: 3.2rem;
      font-weight: 800;
      margin-bottom: 2rem;
    }
    
    .cta-buttons {
      display: flex;
      gap: 1.5rem;
      justify-content: center;
      flex-wrap: wrap;
    }
    .cta-container .btn-primary {
      background: white;
      color: #102b4e;
      box-shadow: 0 15px 30px -5px #020d1e;
    }
    .cta-container .btn-outline {
      border-color: #ffffffaa;
      color: white;
    }
    .cta-container .btn-outline:hover {
      background: #ffffff1a;
    }

/* DARK & BETTER FOOTER (redesigned) */
footer {
  width: 100%;
  background: #0b1425;
  border-top: 1px solid #1e2c42;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  width: 90%;
  padding: 4rem 0 2rem;
  color: #cbd5e1;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px,1fr));
  gap: 2.5rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-col h4 {
  color: white;
  font-weight: 700;
  margin-bottom: 1.3rem;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}

.footer-col a, .footer-col p {
  color: #9aaec9;
  text-decoration: none;
  display: block;
  margin-bottom: 0.7rem;
  transition: 0.2s;
  font-weight: 400;
}

.footer-col a:hover {
  color: #60a5fa;
  transform: translateX(4px);
}

/* Social Icons - FIXED PERFECT CENTER */
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 0.5rem;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: #cbd5e1;
  font-size: 1.4rem;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;

  /* 🔥 Important Fix */
  line-height: 1;
  text-align: center;
}

.social-icon i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  line-height: 1;
}

.social-icon:hover {
  margin-top: -5px;
}

/* Brand colors on hover */
.social-icon[title="LinkedIn"]:hover { background: #0077b5; color: white; }
.social-icon[title="YouTube"]:hover { background: #ff0000; color: white; }
.social-icon[title="Instagram"]:hover { background: linear-gradient(45deg, #f09433, #d62976, #962fbf); color: white; }
.social-icon[title="Telegram"]:hover { background: #0088cc; color: white; }
.social-icon[title="WhatsApp"]:hover { background: #25D366; color: white; }

.copy {
  text-align: center;
  margin-top: 3.5rem;
  color: #6681a2;
  font-size: 0.9rem;
  border-top: 1px solid #1f2f45;
  padding-top: 2rem;
}

    /* Section spacing for boxed content */
    .section-boxed {
      max-width: 1280px;
      margin: 0 auto;
      width: 90%;
      padding: 60px 0;
    }


    /* mobile refinement */
    @media (max-width: 600px) {
      .hero-left h1 { font-size: 3rem; }
      .stat-num { font-size: 2.5rem; }
    }
    
/* exactly 4 rows (4 columns on desktop) */
.features-grid-8 {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* Fixed: 4 columns for 8 cards (2 rows of 4) */
  gap: 2rem;
}

@media (max-width: 700px) {
  .features-grid-8 {
    grid-template-columns: 1fr; /* 1 column on mobile -> 8 rows */
  }
}