/* Section1-hero   */
  
  * { margin: 0; padding: 0; box-sizing: border-box; }

  .hero-section {
    position: relative;
    min-height: 100vh;
    background-color: #0a0a0f;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 80px 20px;
  }

  /* Background dots */
  .hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px);
    background-size: 36px 36px;
    pointer-events: none;
    z-index: 0;
  }

  /* Glow blobs */
  .hero-section::after {
    content: '';
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(80, 80, 220, 0.18) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
  }

  .hero-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
  }

  /* Badge */
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #3b4fd8;
    border: 1px solid #5b6ef5;
    border-radius: 999px;
    padding: 8px 20px;
    margin-bottom: 32px;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    animation: fadeDown 0.5s ease both;
    box-shadow: 0 0 18px rgba(79,95,240,0.35);
  }

  .hero-badge .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fff;
    display: inline-block;
    flex-shrink: 0;
    animation: blink 1.2s ease-in-out infinite;
  }

  @keyframes blink {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.2; transform: scale(0.7); }
  }

  /* H1 */
  .hero-h1 {
    font-size: clamp(0.8rem, 1.4vw, 1rem);
    font-weight: 600;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 16px;
    animation: fadeDown 0.5s 0.07s ease both;
  }

  /* H2 */
  .hero-h2 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin-bottom: 28px;
    animation: fadeDown 0.55s 0.12s ease both;
    white-space: nowrap
  }

  .hero-h2 .accent-line {
    display: block;
    background: linear-gradient(90deg, #5b6ef5, #7c8fff, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  /* Paragraph */
  .hero-p {
    font-size: clamp(0.95rem, 1.6vw, 1.1rem);
    font-weight: 400;
    color: rgba(255,255,255,0.52);
    line-height: 1.75;
    max-width: 600px;
    margin: 0 auto 44px;
    animation: fadeDown 0.55s 0.18s ease both;
  }

  /* Buttons */
  .hero-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeDown 0.55s 0.24s ease both;
  }

  .btn-primary-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #4f5ff0;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 10px;
    border: none;
    text-decoration: none;
    transition: background 0.22s, transform 0.2s, box-shadow 0.22s;
    box-shadow: 0 4px 24px rgba(79,95,240,0.35);
  }
  .btn-primary-hero:hover {
    background: #3d4ddf;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(79,95,240,0.5);
    color: #fff;
  }

  .btn-secondary-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.07);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.15);
    text-decoration: none;
    transition: background 0.22s, transform 0.2s;
  }
  .btn-secondary-hero:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-2px);
    color: #fff;
  }

  /* Keyframes */
  @keyframes fadeDown {
    from { opacity: 0; transform: translateY(-18px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* Responsive */
  @media (max-width: 576px) {
    .hero-section { padding: 60px 16px; }
    .hero-h2 { font-size: 2.2rem; }
    .btn-primary-hero,
    .btn-secondary-hero { width: 100%; justify-content: center; }
    .hero-btns { flex-direction: column; }
  }
  @media (max-width: 640px) {
  .hero-h2 br {
    display: none;
  }
  .hero-h2 {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }
}

  /* Section2-The problem */
    .s2-section {
    position: relative;
    background-color: #090d18;
    padding: 90px 20px 100px;
    overflow: hidden;
  }
 
  /* dot grid background */
  .s2-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
    z-index: 0;
  }
 
  /* top glow */
  .s2-section::after {
    content: '';
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(60,80,220,0.14) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
  }
 
  .s2-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
  }
 
  /* ── TOP BADGE ── */
  .s2-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(79,95,240,0.18);
    border: 1px solid rgba(79,95,240,0.45);
    border-radius: 999px;
    padding: 6px 16px;
    color: #7c8fff;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 28px;
  }
 
  .s2-badge .s2-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #5b6ef5;
    animation: s2blink 1.2s ease-in-out infinite;
  }
 
  @keyframes s2blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.2; }
  }
 
  /* ── TOP ROW: heading left, para+btn right ── */
  .s2-top-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 56px;
  }
 
  .s2-top-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
 
  /* ── HEADING ── */
  .s2-h2 {
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 600;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 0;
    letter-spacing: -0.02em;
  }
 
  .s2-h2 .s2-hl {
    color: #1B5EF7;
  }
 
  .s2-p {
    font-size: clamp(0.9rem, 1.4vw, 1rem);
    color: rgba(255,255,255,0.5);
    line-height: 1.75;
    max-width: 560px;
    margin-bottom: 0;
  }
 
  /* ── CARDS ROW ── */
  .s2-cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
  }
 
  .s2-card {
    background: #0e1525;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 14px;
    padding: 24px 18px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
    animation: s2fadeUp 0.5s ease both;
  }
 
  .s2-card:hover {
    border-color: rgba(79,95,240,0.4);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.4);
  }
 
  .s2-card:nth-child(1) { animation-delay: 0.05s; }
  .s2-card:nth-child(2) { animation-delay: 0.10s; }
  .s2-card:nth-child(3) { animation-delay: 0.15s; }
  .s2-card:nth-child(4) { animation-delay: 0.20s; }
  .s2-card:nth-child(5) { animation-delay: 0.25s; }
 
  /* icon box */
  .s2-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(79,95,240,0.12);
    border: 1px solid rgba(79,95,240,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
  }
  .s2-icon img{
    width: 30px;
    height: auto;
  }
 
  .s2-card-num {
    font-size: 0.68rem;
    font-weight: 600;
    color: #4f5ff0;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
 
  .s2-card h3 {
    font-size: 0.92rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.3;
    margin: 0;
  }
 
  /* divider */
  .s2-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, #3b4fd8, transparent);
    flex-shrink: 0;
  }
 
  .s2-card p {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.65;
    margin: 0;
  }
 
  @keyframes s2fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }
 
  /* ── CTA BUTTON ── */
  .s2-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #4f5ff0;
    color: #fff;
    font-size: 0.88rem;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(79,95,240,0.35);
  }
  .s2-cta:hover {
    background: #3d4ddf;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(79,95,240,0.5);
    color: #fff;
  }
 
  @media (max-width: 1024px) {
    .s2-cards { grid-template-columns: repeat(3, 1fr); }
    .s2-top-row { grid-template-columns: 1fr; gap: 24px; }
  }
  @media (max-width: 640px) {
    .s2-section { padding: 60px 16px 70px; }
    .s2-cards { grid-template-columns: repeat(2, 1fr); }
    .s2-h2 { font-size: 1.7rem; }
  }
  @media (max-width: 400px) {
    .s2-cards { grid-template-columns: 1fr; }
  }

  /* Section3-what we do */
   .s3-section {
    position: relative;
    background-color: #0a0a0f;
    padding: 90px 20px 100px;
    overflow: hidden;
  }
 
  .s3-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
    z-index: 0;
  }
 
  .s3-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
  }
 
  /* ── BADGE ── */
  .s3-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(79,95,240,0.18);
    border: 1px solid rgba(79,95,240,0.45);
    border-radius: 999px;
    padding: 6px 18px;
    color: #7c8fff;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 28px;
  }
 
  .s3-badge .s3-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #5b6ef5;
    animation: s3blink 1.2s ease-in-out infinite;
  }
 
  @keyframes s3blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.2; }
  }
 
  /* ── HEADER ── */
  .s3-header {
    text-align: center;
    margin-bottom: 60px;
  }
 
  .s3-h2 {
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 600;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 18px;
  }
 
  .s3-h2 .s3-hl {
    color: #5b8fff;
  }
 
  .s3-p {
    font-size: clamp(0.9rem, 1.4vw, 1rem);
    color: rgba(255,255,255,0.48);
    line-height: 1.75;
    max-width: 580px;
    margin: 0 auto;
  }
 
  /* ── CARDS GRID ── */
  .s3-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
 
  /* ── SINGLE CARD ── */
  .s3-card {
    background: #0e1525;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    padding: 28px 24px 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
    animation: s3fadeUp 0.5s ease both;
    position: relative;
    overflow: hidden;
  }
 
  /* active card border sirf hover pe */
  .s3-card.s3-active::before {
    display: none;
  }
 
  .s3-card:hover {
    border-color: rgba(79,95,240,0.4);
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(0,0,0,0.4);
  }
 
  .s3-card:hover::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #4f5ff0, #7c8fff);
    border-radius: 16px 16px 0 0;
  }
 
  .s3-card:nth-child(1)  { animation-delay: 0.03s; }
  .s3-card:nth-child(2)  { animation-delay: 0.06s; }
  .s3-card:nth-child(3)  { animation-delay: 0.09s; }
  .s3-card:nth-child(4)  { animation-delay: 0.12s; }
  .s3-card:nth-child(5)  { animation-delay: 0.15s; }
  .s3-card:nth-child(6)  { animation-delay: 0.18s; }
  .s3-card:nth-child(7)  { animation-delay: 0.21s; }
  .s3-card:nth-child(8)  { animation-delay: 0.24s; }
  .s3-card:nth-child(9)  { animation-delay: 0.27s; }
  .s3-card:nth-child(10) { animation-delay: 0.30s; }
  .s3-card:nth-child(11) { animation-delay: 0.33s; }
  .s3-card:nth-child(12) { animation-delay: 0.36s; }
 
  .s3-card-num {
    font-size: 0.72rem;
    font-weight: 600;
    color: #4f5ff0;
    letter-spacing: 0.08em;
  }
 
  .s3-icon {
    font-size: 2rem;
    line-height: 1;
  }
   .s3-icon img{
    width: 30px;
    height: auto;
  }
 
  .s3-card h3 {
    font-size: 0.98rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.3;
    margin: 0;
  }
 
  .s3-card h3 a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s;
  }
 
  .s3-card h3 a:hover {
    color: #7c8fff;
  }
 
  .s3-card p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.65;
    margin: 0;
  }
 
  @keyframes s3fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }
 
  /* ── RESPONSIVE ── */
  @media (max-width: 1024px) {
    .s3-grid { grid-template-columns: repeat(3, 1fr); }
  }
  @media (max-width: 768px) {
    .s3-grid { grid-template-columns: repeat(2, 1fr); }
    .s3-h2   { font-size: 1.9rem; }
  }
  @media (max-width: 480px) {
    .s3-section { padding: 60px 16px 70px; }
    .s3-grid    { grid-template-columns: 1fr; }
  }

  /* Section4-Logo Section */
  .logos-marquee {
    background: #ffffff;
    padding: 28px 0;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}

.logo-item {
   background: #ffffff;
    border-radius: 10px;
    padding: 10px 18px;
}
  .logos-marquee {
    display: flex;
    overflow: hidden;
    width: 100%;
}

.logos-inner {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    flex-wrap: nowrap;
    gap: 40px;
    animation: logos-scroll 14s linear infinite;
     padding-right: 60px;
}

@keyframes logos-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Yeh sab SAME raha — kuch change nahi hua */
.logos-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 40px;
}
#logos {
  background: #ffffff !important;
}

.logo-item img {
    max-height: 50px;
    width: auto;
    object-fit: contain;
}

@keyframes logos-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Tablet */
@media (max-width: 768px) {
    .logo-item img {
        max-height: 35px;
    }
    .logos-inner {
        gap: 28px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .logo-item img {
        max-height: 25px;
    }
    .logos-inner {
        gap: 20px;
    }
}
  .s4-section {
    position: relative;
    background-color: #090d18;
    padding: 90px 20px 100px;
    overflow: hidden;
  }
 
  .s4-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
    z-index: 0;
  }
 
  .s4-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
 
  /* ── BADGE ── */
  .s4-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(79,95,240,0.18);
    border: 1px solid rgba(79,95,240,0.45);
    border-radius: 999px;
    padding: 6px 18px;
    color: #7c8fff;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 28px;
  }
 
  .s4-badge .s4-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #5b6ef5;
    animation: s4blink 1.2s ease-in-out infinite;
  }
 
  @keyframes s4blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.2; }
  }
 
  /* ── HEADING ── */
  .s4-h2 {
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 600;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 18px;
  }
 
  .s4-h2 .s4-hl {
    color: #5b8fff;
  }
 
  .s4-p {
    font-size: clamp(0.9rem, 1.4vw, 1rem);
    color: rgba(255,255,255,0.48);
    line-height: 1.75;
    max-width: 580px;
    margin: 0 auto 60px;
  }
 
  /* ── RESPONSIVE ── */
  @media (max-width: 640px) {
    .s4-section { padding: 60px 16px 70px; }
  }

  /* Section5-CTA  */
    .s5-section {
    position: relative;
    background-color: #090d18;
      padding: 0 0 90px 0;
    overflow: hidden;
  }
 
  .s5-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
    z-index: 0;
  }
 
  .s5-inner {
    position: relative;
    z-index: 1;
    margin: 0 auto;
  }
 
  /* ── CTA BOX ── */
  .s5-box {
    background: linear-gradient(120deg, #0d1a3a 0%, #0e1f4a 60%, #0a1535 100%);
    border: 1px solid rgba(79,95,240,0.3);
    border-radius: 0;
    padding: 60px 56px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin: 0 -20px;
  }
 
  /* glow top right */
  .s5-box::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(79,95,240,0.2), transparent 70%);
    pointer-events: none;
  }
 
  /* ── LEFT ── */
  .s5-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(79,95,240,0.18);
    border: 1px solid rgba(79,95,240,0.4);
    border-radius: 999px;
    padding: 5px 14px;
    color: #7c8fff;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 20px;
  }
 
  .s5-badge .s5-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #5b6ef5;
    animation: s5blink 1.2s ease-in-out infinite;
  }
 
  @keyframes s5blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.2; }
  }
 
  .s5-h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 600;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 32px;
  }
 
  .s5-h2 .s5-hl {
    color: #5b8fff;
  }
 
  .s5-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #4f5ff0;
    color: #fff;
    font-size: 0.92rem;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(79,95,240,0.4);
  }
 
  .s5-btn:hover {
    background: #3d4ddf;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(79,95,240,0.55);
    color: #fff;
  }
 
  /* ── RIGHT — STATS ── */
  .s5-stats {
    display: grid;
     grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
 
  .s5-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
  flex-wrap: nowrap;
}

 
  .s5-stat-num {
    font-size: 3.8rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -0.02em;
  }
 
  .s5-stat-num span {
    color: #5b8fff;
  }
 
  .s5-stat-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
    font-weight: 400;
    line-height: 1.4;
  }
 
  /* ── ANIMATIONS ── */
  .s5-box {
    animation: s5slideUp 0.6s ease both;
  }
 
  @keyframes s5slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
  }
 
  .s5-left {
    animation: s5fadeLeft 0.6s 0.2s ease both;
  }
 
  @keyframes s5fadeLeft {
    from { opacity: 0; transform: translateX(-20px); }
    to   { opacity: 1; transform: translateX(0); }
  }
 
  .s5-stat {
    animation: s5fadeUp 0.5s ease both;
  }
 
  .s5-stat:nth-child(1) { animation-delay: 0.3s; }
  .s5-stat:nth-child(2) { animation-delay: 0.4s; }
  .s5-stat:nth-child(3) { animation-delay: 0.5s; }
  .s5-stat:nth-child(4) { animation-delay: 0.6s; }
 
  @keyframes s5fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
  }
 
  .s5-suffix {
    color: #5b8fff;
  }
 
  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .s5-box {
      grid-template-columns: 1fr;
      gap: 40px;
      padding: 40px 32px;
    }
  }
 
  @media (max-width: 560px) {
    .s5-section { padding: 60px 16px; }
    .s5-box { padding: 32px 20px; }
    .s5-stats { grid-template-columns: 1fr 1fr; gap: 20px; }
  }

  /* Section6- OUR Process */
    .process-section {
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
    background: #0b0f1a;
    color: #e8edf5;
  }
 
  /* subtle grid background */
  .process-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(74,140,255,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(74,140,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
  }
 
  .process-section .ps-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
  }
 
  /* ─── HEADER ──────────────────────────────── */
  .process-section .ps-header {
    text-align: center;
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .process-section .ps-header.ps-visible {
    opacity: 1;
    transform: translateY(0);
  }
 
  .process-section .ps-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #4a8cff;
    margin-bottom: 18px;
    padding: 6px 16px;
    border: 1px solid rgba(74,140,255,0.3);
    border-radius: 100px;
    background: rgba(74,140,255,0.06);
  }
 
  .process-section .ps-title {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 20px;
  }
  .process-section .ps-title span { color: #6fa3ff; }
 
  .process-section .ps-subtitle {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    color: #8b96a8;
    line-height: 1.7;
    max-width: 580px;
    margin: 0 auto;
  }
 
  /* ─── TIMELINE ────────────────────────────── */
  .process-section .ps-timeline {
    position: relative;
  }
 
  .process-section .ps-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, transparent 0%, rgba(74,140,255,0.35) 8%, rgba(74,140,255,0.35) 92%, transparent 100%);
    transform: translateX(-50%);
  }
 
  /* ─── STEP ROW ────────────────────────────── */
  .process-section .ps-step-row {
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
  }
 
  .process-section .ps-card-slot { display: flex; }
  .process-section .ps-card-slot.ps-left  { justify-content: flex-end;   padding-right: 48px; }
  .process-section .ps-card-slot.ps-right { justify-content: flex-start; padding-left: 48px; }
  .process-section .ps-card-slot.ps-empty { pointer-events: none; }
 
  /* ─── NODE ────────────────────────────────── */
  .process-section .ps-node {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2a5fd4, #4a8cff);
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    margin: 0 auto;
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
 
  /* blinking outer ring */
  .process-section .ps-node::after {
    content: '';
    position: absolute;
    inset: -7px;
    border-radius: 50%;
    border: 2px solid rgba(74,140,255,0.6);
    animation: ps-ring-blink 2s ease-in-out infinite;
    pointer-events: none;
  }
 
  @keyframes ps-ring-blink {
    0%, 100% { opacity: 1;   transform: scale(1);    box-shadow: 0 0 10px rgba(74,140,255,0.45); }
    50%       { opacity: 0.15; transform: scale(1.14); box-shadow: 0 0 20px rgba(74,140,255,0.1); }
  }
 
  .process-section .ps-node.ps-visible {
    opacity: 1;
    transform: scale(1);
  }
 
  /* ─── CARD ────────────────────────────────── */
  .process-section .ps-card {
    background: #111827;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 18px;
    padding: 32px 30px;
    max-width: 480px;
    width: 100%;
    position: relative;
    cursor: default;
    transition:
      border-color 0.35s ease,
      transform 0.35s cubic-bezier(0.34,1.56,0.64,1),
      box-shadow 0.35s ease,
      opacity 0.35s ease,
      filter 0.35s ease;
    opacity: 0;
  }
 
  .process-section .ps-card.ps-from-left  { transform: translateX(-60px); }
  .process-section .ps-card.ps-from-right { transform: translateX(60px); }
 
  .process-section .ps-card.ps-visible {
    opacity: 1;
    transform: translateX(0) !important;
  }
 
  /* inner glow overlay */
  .process-section .ps-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(74,140,255,0.06) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
  }
 
  .process-section .ps-card:hover {
    border-color: rgba(74,140,255,0.55);
    transform: scale(1.03) !important;
    box-shadow: 0 8px 40px rgba(74,140,255,0.2), 0 0 0 1px rgba(74,140,255,0.2);
  }
  .process-section .ps-card:hover::before { opacity: 1; }
 
  /* blur siblings on hover */
  .process-section .ps-timeline.ps-has-hover .ps-card:not(:hover) {
    opacity: 0.35;
    filter: blur(1.5px);
  }
 
  /* ─── CARD INNER TEXT ─────────────────────── */
  .process-section .ps-step-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #4a8cff;
    margin-bottom: 10px;
  }
 
  .ps-card-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  display: block;
  margin-bottom: 12px;
}

  .process-section .ps-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.3;
  }
 
  .process-section .ps-card p {
    font-size: 0.9rem;
    color: #8b96a8;
    line-height: 1.75;
    margin: 0;
  }
 
  /* ─── RESPONSIVE ──────────────────────────── */
  @media (max-width: 860px) {
    .process-section .ps-timeline::before { left: 28px; }
 
    .process-section .ps-step-row {
      grid-template-columns: 56px 1fr;
      margin-bottom: 40px;
      align-items: flex-start;
    }
 
    .process-section .ps-node {
      grid-column: 1;
      grid-row: 1;
      width: 48px;
      height: 48px;
      font-size: 1rem;
      margin: 0;
    }
 
    .process-section .ps-card-slot {
      grid-column: 2 !important;
      grid-row: 1 !important;
      padding: 0 0 0 20px !important;
      justify-content: flex-start !important;
    }
 
    .process-section .ps-card-slot.ps-empty { display: none !important; }
 
    .process-section .ps-card { max-width: 100%; }
 
    .process-section .ps-card.ps-from-left,
    .process-section .ps-card.ps-from-right {
      transform: translateY(40px);
    }
    .process-section .ps-card.ps-visible {
      transform: translateY(0) !important;
    }
  }
 
  @media (max-width: 480px) {
    .process-section { padding: 70px 0 80px; }
    .process-section .ps-header { margin-bottom: 56px; }
    .process-section .ps-card { padding: 24px 20px; }
    .process-section .ps-timeline::before { left: 22px; }
    .process-section .ps-step-row { grid-template-columns: 46px 1fr; }
    .process-section .ps-node { width: 44px; height: 44px; font-size: 0.95rem; }
  }

  /* Section7-Industries */
 
.ind7-section {
  padding: 90px 0 110px;
  background: #12192c;
  color: #e8edf5;
  position: relative;
  overflow: visible;
}
 
/* faint dot grid — clipped separately so popups can overflow */
.ind7-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(74,140,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74,140,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
 
.ind7-section .ind7-wrap {
  position: relative;
  z-index: 1;
}
 
/* ── HEADER ───────────────────────────── */
.ind7-section .ind7-head {
  text-align: center;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.ind7-section .ind7-head.ind7-vis {
  opacity: 1;
  transform: translateY(0);
}
 
.ind7-section .ind7-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #4a8cff;
  margin-bottom: 14px;
  padding: 5px 14px;
  border: 1px solid rgba(74,140,255,0.28);
  border-radius: 100px;
  background: rgba(74,140,255,0.06);
}
 
.ind7-section .ind7-title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 16px;
}
.ind7-section .ind7-title span { color: #6fa3ff; }
 
.ind7-section .ind7-sub {
  font-size: clamp(0.92rem, 1.4vw, 1.05rem);
  color: #8b96a8;
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto;
}
 
/* ── ROW 1 : 6 equal cols ─────────────── */
.ind7-section .ind7-row1 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}
 
/* ── ROW 2 : 4 cols centered ──────────── */
.ind7-section .ind7-row2 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
/* 4 cards sit in middle 4 of 6 columns */
.ind7-section .ind7-row2 .ind7-item:nth-child(1) { grid-column: 2; }
.ind7-section .ind7-row2 .ind7-item:nth-child(2) { grid-column: 3; }
.ind7-section .ind7-row2 .ind7-item:nth-child(3) { grid-column: 4; }
.ind7-section .ind7-row2 .ind7-item:nth-child(4) { grid-column: 5; }
 
/* ── ITEM (lazy-load wrapper) ─────────── */
.ind7-section .ind7-item {
  opacity: 0;
  transform: translateY(36px) scale(0.95);
  transition:
    opacity 0.55s ease,
    transform 0.55s cubic-bezier(0.34,1.4,0.64,1);
  position: relative;
}
.ind7-section .ind7-item.ind7-vis {
  opacity: 1;
  transform: translateY(0) scale(1);
}
 
/* ── CARD ─────────────────────────────── */
.ind7-section .ind7-card {
  background: #111827;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  padding: 40px 12px 32px;
  text-align: center;
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 160px;
  transition:
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s cubic-bezier(0.34,1.4,0.64,1);
  overflow: visible;
}
 
.ind7-section .ind7-card:hover {
  border-color: rgba(74,140,255,0.5);
  background: #131e36;
  box-shadow: 0 10px 36px rgba(74,140,255,0.18);
  transform: translateY(-5px);
}
 
/* icon */
.ind7-section .ind7-icon {
  font-size: 2.6rem;
  line-height: 1;
  margin-bottom: 16px;
  display: block;
  transition: transform 0.3s ease;
}
.ind7-section .ind7-icon img{
width: 30px;
height: auto;
}
.ind7-section .ind7-card:hover .ind7-icon {
  transform: scale(1.18) rotate(-4deg);
}
 
/* title */
.ind7-section .ind7-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #dde4ef;
  margin: 0;
  line-height: 1.3;
  transition: color 0.3s ease;
}
.ind7-section .ind7-card:hover h3 { color: #fff; }
 
/* ── POPUP ────────────────────────────── */
.ind7-section .ind7-popup {
  position: absolute;
  bottom: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  width: 250px;
  background: #18253d;
  border: 1px solid rgba(74,140,255,0.38);
  border-radius: 14px;
  padding: 18px 18px 16px;
  pointer-events: none;
  opacity: 0;
  z-index: 999;
  box-shadow: 0 16px 48px rgba(0,0,0,0.6), 0 0 0 1px rgba(74,140,255,0.08);
  text-align: left;
  transition: opacity 0.22s ease, transform 0.22s cubic-bezier(0.34,1.4,0.64,1);
}
 
/* arrow down */
.ind7-section .ind7-popup::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-top-color: rgba(74,140,255,0.38);
}
.ind7-section .ind7-popup::before {
  content: '';
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  transform: translateX(-50%);
  border: 7px solid transparent;
  border-top-color: #18253d;
  z-index: 1;
}
 
.ind7-section .ind7-card:hover .ind7-popup,
.ind7-section .ind7-card.ind7-pinned .ind7-popup {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
 
/* pinned card — keep hover styles active */
.ind7-section .ind7-card.ind7-pinned {
  border-color: rgba(74,140,255,0.65);
  background: #131e36;
  box-shadow: 0 10px 36px rgba(74,140,255,0.22);
  transform: translateY(-5px);
}
.ind7-section .ind7-card.ind7-pinned .ind7-icon {
  transform: scale(1.18) rotate(-4deg);
}
.ind7-section .ind7-card.ind7-pinned h3 { color: #fff; }
 
.ind7-section .ind7-popup-ttl {
  font-size: 0.82rem;
  font-weight: 700;
  color: #4a8cff;
  letter-spacing: 0.03em;
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  gap: 5px;
}
 
.ind7-section .ind7-popup-txt {
  font-size: 0.8rem;
  color: #9aaaba;
  line-height: 1.65;
  margin: 0;
}
 
.ind7-section .ind7-popup-lnk {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.76rem;
  color: #4a8cff;
  margin-top: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.ind7-section .ind7-popup-lnk:hover { color: #7ab4ff; text-decoration: none; }
.ind7-section .ind7-popup-lnk svg { width: 11px; height: 11px; }
 
 
 
/* ── RESPONSIVE ───────────────────────── */
@media (max-width: 1080px) {
  .ind7-section .ind7-row1,
  .ind7-section .ind7-row2 {
    grid-template-columns: repeat(3, 1fr);
  }
  .ind7-section .ind7-row2 .ind7-item:nth-child(n) {
    grid-column: auto;
  }
}
 
@media (max-width: 640px) {
  .ind7-section .ind7-row1,
  .ind7-section .ind7-row2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .ind7-section .ind7-row2 {
    margin-bottom: 0;
  }
  .ind7-section .ind7-card { min-height: 130px; padding: 28px 10px 22px; }
  .ind7-section .ind7-icon { font-size: 2rem; margin-bottom: 12px; }
  .ind7-section .ind7-card h3 { font-size: 0.85rem; }
  .ind7-section .ind7-popup { width: 200px; font-size: 0.76rem; }
}
 
@media (max-width: 360px) {
  .ind7-section .ind7-row1,
  .ind7-section .ind7-row2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

 /* Section8-tech stack section */
 .tch8-section {
  padding: 90px 0 110px;
  background: #090d18;
  color: #e8edf5;
  position: relative;
  overflow: visible;
}
 
.tch8-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(74,140,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74,140,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
 
.tch8-section .tch8-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
 
/* ── HEADER ── */
.tch8-head {
  text-align: center;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.tch8-head.tch8-vis {
  opacity: 1;
  transform: translateY(0);
}
 
.tch8-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #4a8cff;
  margin-bottom: 14px;
  padding: 5px 14px;
  border: 1px solid rgba(74,140,255,0.28);
  border-radius: 100px;
  background: rgba(74,140,255,0.06);
}
 
.tch8-title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 16px;
  margin-top: 0;
}
.tch8-title span { color: #6fa3ff; }
 
.tch8-sub {
  font-size: clamp(0.92rem, 1.4vw, 1.05rem);
  color: #8b96a8;
  line-height: 1.75;
  max-width: 640px;
  margin: 0 auto;
}
 
/* ── GRID ── */
.tch8-row1 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}
 
.tch8-row2 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}
 
.tch8-row3 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
/* Center 5 items in row3 */
.tch8-row3 .tch8-item:nth-child(1) { grid-column: 1; }
.tch8-row3 .tch8-item:nth-child(2) { grid-column: 2; }
.tch8-row3 .tch8-item:nth-child(3) { grid-column: 3; }
.tch8-row3 .tch8-item:nth-child(4) { grid-column: 4; }
.tch8-row3 .tch8-item:nth-child(5) { grid-column: 5; }
 
/* ── ITEM ── */
.tch8-item {
  opacity: 0;
  transform: translateY(36px) scale(0.95);
  transition:
    opacity 0.55s ease,
    transform 0.55s cubic-bezier(0.34,1.4,0.64,1);
  position: relative;
}
.tch8-item.tch8-vis {
  opacity: 1;
  transform: translateY(0) scale(1);
}
 
/* ── CARD ── */
.tch8-card {
  background: #111827;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  padding: 36px 12px 28px;
  text-align: center;
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 150px;
  transition:
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s cubic-bezier(0.34,1.4,0.64,1);
  overflow: visible;
}
 
.tch8-card:hover {
  border-color: rgba(74,140,255,0.5);
  background: #131e36;
  box-shadow: 0 10px 36px rgba(74,140,255,0.18);
  transform: translateY(-5px);
}
 
.tch8-icon {
  font-size: 2.4rem;
  line-height: 1;
  margin-bottom: 14px;
  display: block;
  transition: transform 0.3s ease;
}

.tch8-icon img{
width: 30px;
height: auto;
}

.tch8-card:hover .tch8-icon {
  transform: scale(1.18) rotate(-4deg);
}
 
.tch8-card h3 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #dde4ef;
  margin: 0;
  line-height: 1.3;
  transition: color 0.3s ease;
}
.tch8-card:hover h3 { color: #fff; }
 
/* ── POPUP ── */
.tch8-popup {
  position: absolute;
  bottom: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  width: 250px;
  background: #18253d;
  border: 1px solid rgba(74,140,255,0.38);
  border-radius: 14px;
  padding: 18px 18px 16px;
  pointer-events: none;
  opacity: 0;
  z-index: 999;
  box-shadow: 0 16px 48px rgba(0,0,0,0.6), 0 0 0 1px rgba(74,140,255,0.08);
  text-align: left;
  transition: opacity 0.22s ease, transform 0.22s cubic-bezier(0.34,1.4,0.64,1);
}
 
.tch8-popup::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-top-color: rgba(74,140,255,0.38);
}
.tch8-popup::before {
  content: '';
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  transform: translateX(-50%);
  border: 7px solid transparent;
  border-top-color: #18253d;
  z-index: 1;
}
 
.tch8-card:hover .tch8-popup,
.tch8-card.tch8-pinned .tch8-popup {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
 
.tch8-card.tch8-pinned {
  border-color: rgba(74,140,255,0.65);
  background: #131e36;
  box-shadow: 0 10px 36px rgba(74,140,255,0.22);
  transform: translateY(-5px);
}
.tch8-card.tch8-pinned .tch8-icon { transform: scale(1.18) rotate(-4deg); }
.tch8-card.tch8-pinned h3 { color: #fff; }
 
.tch8-popup-ttl {
  font-size: 0.82rem;
  font-weight: 700;
  color: #4a8cff;
  letter-spacing: 0.03em;
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  gap: 5px;
}
 
.tch8-popup-txt {
  font-size: 0.8rem;
  color: #9aaaba;
  line-height: 1.65;
  margin: 0;
}
 
/* ── RESPONSIVE ── */
@media (max-width: 1080px) {
  .tch8-row1,
  .tch8-row2,
  .tch8-row3 {
    grid-template-columns: repeat(4, 1fr);
  }
  .tch8-row3 .tch8-item:nth-child(n) { grid-column: auto; }
}
 
@media (max-width: 768px) {
  .tch8-row1,
  .tch8-row2,
  .tch8-row3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .tch8-row3 .tch8-item:nth-child(n) { grid-column: auto; }
}
 
@media (max-width: 640px) {
  .tch8-row1,
  .tch8-row2,
  .tch8-row3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .tch8-row3 .tch8-item:nth-child(n) { grid-column: auto; }
  .tch8-card { min-height: 120px; padding: 24px 10px 20px; }
  .tch8-icon { font-size: 2rem; margin-bottom: 10px; }
  .tch8-card h3 { font-size: 0.82rem; }
  .tch8-popup { width: 200px; font-size: 0.76rem; }
}
 
@media (max-width: 360px) {
  .tch8-row1,
  .tch8-row2,
  .tch8-row3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

 /* Section9-Why sisgain */
 .why9-section {
  padding: 90px 0 110px;
  background: #1c253a;
  color: #e8edf5;
  position: relative;
  overflow: hidden;
}
 
.why9-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(74,140,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74,140,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}
 
.why9-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
 
/* ── LAYOUT: left col + right grid ── */
.why9-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
 
/* ── LEFT ── */
.why9-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.why9-left.why9-vis {
  opacity: 1;
  transform: translateX(0);
}
 
.why9-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #4a8cff;
  margin-bottom: 24px;
  padding: 6px 16px;
  border: 1px solid rgba(74,140,255,0.28);
  border-radius: 100px;
  background: rgba(74,140,255,0.06);
}
.why9-tag::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4a8cff;
  flex-shrink: 0;
}
 
.why9-left h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  color: #fff;
  margin: 0 0 20px;
}
.why9-left h2 span { color: #6fa3ff; }
 
.why9-left > p {
  font-size: clamp(0.92rem, 1.3vw, 1.02rem);
  color: #8b96a8;
  line-height: 1.75;
  margin: 0 0 36px;
}
 
/* bullet list */
.why9-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
 
.why9-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #dde4ef;
  line-height: 1.4;
}
 
.why9-bullets li::before {
  content: '';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  border-radius: 50%;
  background: rgba(74,140,255,0.15);
  border: 1.5px solid rgba(74,140,255,0.5);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%234a8cff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}
 
/* ── RIGHT GRID ── */
.why9-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: stretch;
}
 
/* ── CARD ── */
.why9-card {
  background: #111827;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  opacity: 0;
  transform: translateY(28px) scale(0.97);
  transition:
    opacity 0.55s ease,
    transform 0.55s cubic-bezier(0.34,1.4,0.64,1),
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}
.why9-card.why9-vis {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.why9-card:hover {
  border-color: rgba(74,140,255,0.4);
  background: #131e36;
  box-shadow: 0 8px 32px rgba(74,140,255,0.14);
}
 
.why9-card-icon {
  font-size: 2rem;
  line-height: 1;
  display: block;
  transition: transform 0.3s ease;
}

.why9-card-icon img{
    width: 52px;
    height: auto;
}

.why9-card:hover .why9-card-icon {
  transform: scale(1.15) rotate(-4deg);
}
 
.why9-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #dde4ef;
  margin: 0;
  line-height: 1.35;
  transition: color 0.3s ease;
}
.why9-card:hover h3 { color: #fff; }
 
.why9-card p {
  font-size: 0.82rem;
  color: #8b96a8;
  line-height: 1.7;
  margin: 0;
}
 
/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .why9-body {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .why9-right {
    grid-template-columns: repeat(2, 1fr);
  }
}
 
@media (max-width: 640px) {
  .why9-section { padding: 60px 0 70px; }
  .why9-right {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .why9-card { padding: 22px 16px; gap: 10px; }
  .why9-card-icon { font-size: 1.7rem; }
  .why9-card h3 { font-size: 0.88rem; }
  .why9-card p { font-size: 0.78rem; }
  .why9-left h2 { font-size: 1.8rem; }
}
 
@media (max-width: 420px) {
  .why9-right { grid-template-columns: 1fr; }
}

/* section11-bussiness outcomes */
.res11-section {
  padding: 90px 0 110px;
  background: #090d18;
  color: #e8edf5;
  position: relative;
  overflow: hidden;
}
 
.res11-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(74,140,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74,140,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}
 
.res11-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
 
/* ── HEADER ── */
.res11-head {
  text-align: center;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.res11-head.res11-vis {
  opacity: 1;
  transform: translateY(0);
}
 
.res11-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #4a8cff;
  margin-bottom: 20px;
  padding: 6px 16px;
  border: 1px solid rgba(74,140,255,0.28);
  border-radius: 100px;
  background: rgba(74,140,255,0.06);
}
.res11-tag::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4a8cff;
  flex-shrink: 0;
}
 
.res11-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  color: #fff;
  margin: 0 0 18px;
}
.res11-head h2 span { color: #6fa3ff; }
 
.res11-head p {
  font-size: clamp(0.92rem, 1.4vw, 1.05rem);
  color: #8b96a8;
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto;
}
 
/* ── GRID ── */
.res11-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
 
/* row 2: 2 cards centered under 4 */
.res11-row2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 16px;
}
.res11-row2 .res11-item:nth-child(1) { grid-column: 1; }
.res11-row2 .res11-item:nth-child(2) { grid-column: 2; }
 
/* ── ITEM ── */
.res11-item {
  opacity: 0;
  transform: translateY(28px) scale(0.97);
  transition:
    opacity 0.55s ease,
    transform 0.55s cubic-bezier(0.34,1.4,0.64,1);
}
.res11-item.res11-vis {
  opacity: 1;
  transform: translateY(0) scale(1);
}
 
/* ── CARD ── */
.res11-card {
  background: #111827;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
  box-sizing: border-box;
  transition:
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s cubic-bezier(0.34,1.4,0.64,1);
}
.res11-card:hover {
  border-color: rgba(74,140,255,0.4);
  background: #131e36;
  box-shadow: 0 10px 36px rgba(74,140,255,0.16);
  transform: translateY(-5px);
}
 
.res11-stat {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 2.4rem;
  font-weight: 800;
  color: #4a8cff;
  line-height: 1;
}
 
.res11-arrow {
  font-size: 1.4rem;
  font-weight: 700;
  color: #4a8cff;
  line-height: 1;
  margin-top: 4px;
}
 
.res11-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #dde4ef;
  margin: 0;
  line-height: 1.3;
  transition: color 0.3s ease;
}
.res11-card:hover h3 { color: #fff; }
 
.res11-card p {
  font-size: 0.83rem;
  color: #8b96a8;
  line-height: 1.7;
  margin: 0;
}
 
/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .res11-grid,
  .res11-row2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .res11-row2 .res11-item:nth-child(1) { grid-column: auto; }
  .res11-row2 .res11-item:nth-child(2) { grid-column: auto; }
}
 
@media (max-width: 560px) {
  .res11-section { padding: 60px 0 70px; }
  .res11-grid,
  .res11-row2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .res11-row2 { margin-top: 12px; }
  .res11-card { padding: 22px 18px; }
  .res11-stat { font-size: 1.9rem; }
  .res11-card h3 { font-size: 0.9rem; }
  .res11-card p { font-size: 0.78rem; }
}
 
@media (max-width: 380px) {
  .res11-grid,
  .res11-row2 {
    grid-template-columns: 1fr;
  }
}

/* TESTIMONIALS */
 .sec11-testimonials *, .sec11-testimonials *::before, .sec11-testimonials *::after {
  box-sizing: border-box; margin: 0; padding: 0;
}
.sec11-testimonials {
  background-color: #06111f;
  padding: 90px 20px 100px;
  color: #ffffff;
  width: 100%;
}
.sec11-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.sec11-nav{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  margin-top:30px;
}

.sec11-arrow{
  width:42px;
  height:42px;
  border:none;
  border-radius:50%;
  cursor:pointer;
  font-size:20px;
  transition:0.3s ease;
}

.sec11-arrow:hover{
  transform:scale(1.08);
}

.sec11-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.sec11-container { max-width: 1240px; margin: 0 auto; text-align: center; }
.sec11-tag-wrap { margin-bottom: 20px; }
.sec11-tag {
  display: inline-block;
  background: rgba(59,130,246,0.15);
  border: 1px solid rgba(59,130,246,0.4);
  color: #93c5fd; font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 8px 22px; border-radius: 50px;
}
.sec11-heading { font-size: clamp(28px,4vw,50px); font-weight: 800; line-height: 1.25; color: #fff; margin-bottom: 52px; }
.sec11-heading-highlight { color: #3b82f6; }

.sec11-slider-outer {
  width: 80%;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}
.sec11-slider-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}
.sec11-slide { min-width: 100%; padding: 4px 2px; }
.sec11-card {
  background: #162032;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 40px 44px 36px;
  text-align: left;
}
.sec11-stars { font-size: 20px; color: #f59e0b; letter-spacing: 3px; margin-bottom: 20px; }
.sec11-quote { font-size: clamp(14px,1.4vw,17px); color: #cbd5e1; line-height: 1.75; font-style: italic; margin-bottom: 32px; }
.sec11-author { display: flex; align-items: center; gap: 14px; }
.sec11-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg,#3b82f6,#1d4ed8);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: #fff; flex-shrink: 0;
}
.sec11-author-info { display: flex; flex-direction: column; gap: 3px; }
.sec11-author-name { font-size: 15px; font-weight: 700; color: #fff; }
.sec11-author-role { font-size: 13px; color: #64748b; }

.sec11-dots {  
   display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  margin:0;
  padding:0;
}
.sec11-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer; transition: background 0.3s ease, width 0.3s ease;
  border: none; padding: 0;
}
.sec11-dot.active { background: #3b82f6; width: 24px; border-radius: 4px; }

@media (max-width: 1024px) { .sec11-slider-outer { width: 88%; } }
@media (max-width: 768px) {
  .sec11-testimonials { padding: 70px 16px 80px; }
  .sec11-slider-outer { width: 95%; }
  .sec11-card { padding: 30px 26px 28px; }
}
@media (max-width: 480px) {
  .sec11-slider-outer { width: 100%; }
  .sec11-card { padding: 26px 20px 24px; }
  .sec11-heading { margin-bottom: 36px; }
}


/* FAQ SECTION */
.sec13-faq *,
.sec13-faq *::before,
.sec13-faq *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
 
/* ---------- Section ---------- */
.sec13-faq {
  background-color: #0d1b2a;
  padding: 90px 20px 100px;
  color: #ffffff;
  width: 100%;
}
 
/* ---------- Container ---------- */
.sec13-container {
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
  
}
 
/* ---------- Tag ---------- */
.sec13-tag-wrap {
  margin-bottom: 20px;
}
 
.sec13-tag {
  display: inline-block;
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.4);
  color: #93c5fd;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 22px;
  border-radius: 50px;
}
 
/* ---------- Heading ---------- */
.sec13-heading {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 52px;
}
 
.sec13-heading-highlight {
  color: #3b82f6;
}
 
/* ---------- Accordion ---------- */
.sec13-accordion {
   display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  text-align: left;
}
 
/* ---------- Item ---------- */
.sec13-item {
  background: #162032;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.25s ease;
}
 
.sec13-item.open {
  border-color: rgba(59, 130, 246, 0.35);
}
 
/* ---------- Question Button ---------- */
.sec13-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
}
 
.sec13-question:hover .sec13-q-text {
  color: #3b82f6;
}
 
/* ---------- Question Text (h3) ---------- */
.sec13-q-text {
  font-size: clamp(14px, 1.3vw, 16px);
  font-weight: 600;
  color: #e2e8f0;
  line-height: 1.45;
  transition: color 0.2s ease;
  flex: 1;
}
 
.sec13-item.open .sec13-q-text {
  color: #ffffff;
}
 
/* ---------- +/- Icon ---------- */
.sec13-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: #3b82f6;
  font-size: 18px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, transform 0.3s ease;
  line-height: 1;
}
 
.sec13-item.open .sec13-icon {
  background: #3b82f6;
  color: #ffffff;
  transform: rotate(45deg);
}
 
/* ---------- Answer ---------- */
.sec13-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              padding 0.3s ease;
  padding: 0 24px;
}
 
.sec13-answer p {
  font-size: clamp(13px, 1.2vw, 15px);
  color: #94a3b8;
  line-height: 1.75;
  padding-bottom: 20px;
}
 
.sec13-item.open .sec13-answer {
  max-height: 300px;
  padding: 0 24px;
}
 
/* ==============================================
   RESPONSIVE
   ============================================== */
 
@media (max-width: 768px) {
  .sec13-faq {
    padding: 70px 16px 80px;
  }
 
  .sec13-question {
    padding: 18px 18px;
  }
 
  .sec13-answer {
    padding: 0 18px;
  }
 
  .sec13-item.open .sec13-answer {
    padding: 0 18px;
  }
}
 
@media (max-width: 480px) {
  .sec13-heading {
    margin-bottom: 36px;
  }
 
  .sec13-question {
    padding: 16px 14px;
  }
 
  .sec13-answer {
    padding: 0 14px;
  }
 
  .sec13-item.open .sec13-answer {
    padding: 0 14px;
  }
 
  .sec13-icon {
    width: 24px;
    height: 24px;
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .sec13-accordion {
    grid-template-columns: 1fr;
  }
}


/* Section13-cta */
.cta13-section {
  width: 100%;
  background: linear-gradient(120deg, #0d1a3a 0%, #0e1f4a 60%, #0a1535 100%);
 padding: 48px 24px; 
  text-align: center;
  position: relative;
  overflow: hidden;
}
 
.cta13-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255,255,255,0.06) 0%, transparent 50%);
  pointer-events: none;
}
 
.cta13-inner {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.cta13-inner.cta13-vis {
  opacity: 1;
  transform: translateY(0);
}
 
.cta13-rocket {
  font-size: 2.4rem;
  display: block;
  margin-bottom: 20px;
  animation: cta13-float 3s ease-in-out infinite;
}
 
@keyframes cta13-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
 
.cta13-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin: 0 0 16px;
}
 
.cta13-section p {
  font-size: clamp(0.9rem, 1.4vw, 1rem);
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  margin: 0 0 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
 
.cta13-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
 
.cta13-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 13px 28px;
  background: #fff;
  color: #1a3a8f;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.cta13-btn-primary:hover {
  background: #f0f4ff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  text-decoration: none;
  color: #1a3a8f;
}
 
.cta13-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 13px 28px;
  background: transparent;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.6);
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}
.cta13-btn-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
  text-decoration: none;
  color: #fff;
}
 
/* ── RESPONSIVE ── */
@media (max-width: 560px) {
  .cta13-section { padding: 56px 20px; }
  .cta13-btns { flex-direction: column; gap: 12px; }
  .cta13-btn-primary,
  .cta13-btn-outline { width: 100%; justify-content: center; }
}