.hs-root {
  --hs-accent:   #FF0055;
  --hs-accent2:  #ff4d8a;
  --hs-text:     #1a0010;
  --hs-muted:    rgba(100,0,40,0.5);
  --hs-r:        14px;
  --hs-ff-h:     'Playfair Display', serif;
  --hs-ff-b:     'Nunito', sans-serif;
}
.hs-root, .hs-root * { box-sizing: border-box; margin: 0; padding: 0; }

.hs-root {
  font-family: var(--hs-ff-b);
  background: #fff;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* diagonal bg panel */
.hs-diag {
  position: absolute;
  top: 0; right: 0;
  width: 52%;
  height: 100%;
  background: linear-gradient(160deg, #fff5f8 0%, #ffe0eb 60%, #ffd0e2 100%);
  clip-path: polygon(12% 0%, 100% 0%, 100% 100%, 0% 100%);
  pointer-events: none;
}
.hs-diag-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,0,85,0.12) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  clip-path: polygon(12% 0%, 100% 0%, 100% 100%, 0% 100%);
  pointer-events: none;
}

/* subtle grid on left */
.hs-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,0,85,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,0,85,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

/* floating accent line */
.hs-slash {
  position: absolute;
  top: 0; left: 48%;
  width: 3px; height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(255,0,85,0.18) 30%, rgba(255,0,85,0.28) 60%, transparent 100%);
  pointer-events: none;
}

/* ── INNER ─────────── */
.hs-inner {
  position: relative; z-index: 2;
  display: flex; align-items: stretch;
  min-height: 100vh;
}

/* ── LEFT ─────────── */
.hs-left {
  flex: 0 0 52%;
  padding: 72px 56px 72px 6vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hs-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px 6px 8px;
  background: rgba(255,0,85,0.06);
  border: 1px solid rgba(255,0,85,0.18);
  border-radius: 100px;
  font-size: 12px; font-weight: 600; color: var(--hs-accent);
  letter-spacing: 0.5px; text-transform: uppercase;
  margin-bottom: 28px;
  animation: hs-up 0.6s ease both;
}
.hs-eyebrow-pip {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--hs-accent);
  color: #fff; font-size: 11px;
  display: flex; align-items: center; justify-content: center;
}

.hs-h1 {
  font-family: var(--hs-ff-h);
  font-size: clamp(32px, 3.8vw, 56px);
  font-weight: 800; color: var(--hs-text);
  line-height: 1.07; letter-spacing: -1px;
  animation: hs-up 0.6s 0.1s ease both;
}

/* underline accent on key word */
.hs-underline {
  position: relative; display: inline-block;
}
.hs-underline::after {
  content: '';
  position: absolute; left: 0; bottom: 2px;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, #FF0055, #ff4d8a);
  border-radius: 2px;
}

/* ticker */
.hs-ticker-row {
  display: flex; align-items: center; gap: 14px;
  margin-top: 8px;
  animation: hs-up 0.6s 0.17s ease both;
}
.hs-ticker-label {
  font-family: var(--hs-ff-h);
  font-size: clamp(32px, 3.8vw, 56px);
  font-weight: 800; color: var(--hs-text);
  letter-spacing: -1px; white-space: nowrap;
}
.hs-ticker-wrap {
  height: clamp(38px, 5vw, 62px);
  overflow: hidden;
  border-left: 3px solid var(--hs-accent);
  padding-left: 14px;
}
.hs-ticker {
  list-style: none;
  animation: hs-tick 10s cubic-bezier(0.76,0,0.24,1) infinite;
}
.hs-ticker li {
  font-family: var(--hs-ff-h);
  font-size: clamp(28px, 3.8vw, 52px);
  font-weight: 800;
  height: clamp(38px, 5vw, 62px);
  display: flex; align-items: center;
  background: linear-gradient(90deg, #FF0055, #ff4d8a);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hs-sub {
  font-size: 15.5px; color: var(--hs-muted); line-height: 1.75;
  max-width: 400px; margin-top: 22px;
  animation: hs-up 0.6s 0.26s ease both;
}

/* divider */
.hs-divider {
  width: 48px; height: 2px;
  background: linear-gradient(90deg, #FF0055, transparent);
  margin: 28px 0;
  animation: hs-up 0.6s 0.32s ease both;
}

/* CTAs */
.hs-cta {
  display: flex; gap: 14px; flex-wrap: wrap;
  animation: hs-up 0.6s 0.38s ease both;
}
.hs-btn-primary {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 15px 24px;
  background: var(--hs-accent);
  border: none; border-radius: var(--hs-r);
  color: #fff;
  font-family: var(--hs-ff-b); font-size: 14px; font-weight: 700;
  text-decoration: none; cursor: pointer;
  transition: transform .18s, box-shadow .22s, background .2s;
  box-shadow: 0 6px 24px rgba(255,0,85,0.28);
}
.hs-btn-primary:hover {
  transform: translateY(-3px);
  background: #e0004a;
  box-shadow: 0 12px 32px rgba(255,0,85,0.38);
}
.hs-btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 24px;
  background: transparent;
  border: 1.5px solid rgba(255,0,85,0.25); border-radius: var(--hs-r);
  color: var(--hs-text);
  font-family: var(--hs-ff-b); font-size: 14px; font-weight: 600;
  text-decoration: none; cursor: pointer;
  transition: border-color .2s, transform .18s, background .2s;
}
.hs-btn-ghost:hover {
  border-color: var(--hs-accent);
  background: rgba(255,0,85,0.04);
  transform: translateY(-3px);
}
.hs-btn-arrow {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.22);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; transition: transform .2s;
}
.hs-btn-primary:hover .hs-btn-arrow { transform: rotate(-30deg) scale(1.1); }

/* stats row */
.hs-stats {
  display: flex; gap: 0;
  margin-top: 36px;
  border: 1px solid rgba(255,0,85,0.12);
  border-radius: var(--hs-r);
  overflow: hidden;
  animation: hs-up 0.6s 0.48s ease both;
}
.hs-stat {
  flex: 1; padding: 16px 20px;
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.6);
  transition: background .2s;
  cursor: default;
}
.hs-stat:not(:last-child) { border-right: 1px solid rgba(255,0,85,0.1); }
.hs-stat:hover { background: rgba(255,0,85,0.04); }
.hs-stat-ic {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,0,85,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.hs-sv { font-weight: 800; font-size: 16px; color: var(--hs-text); line-height: 1; }
.hs-sv small { font-weight: 400; font-size: 11px; color: var(--hs-muted); }
.hs-sl { font-size: 11px; color: var(--hs-muted); margin-top: 3px; }

/* tag strip */
.hs-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 28px;
  animation: hs-up 0.6s 0.56s ease both;
}
.hs-tag {
  padding: 5px 12px;
  background: rgba(255,0,85,0.06);
  border: 1px solid rgba(255,0,85,0.15);
  border-radius: 100px;
  font-size: 12px; color: var(--hs-muted);
  transition: background .2s, border-color .2s; cursor: default;
}
.hs-tag:hover {
  background: rgba(255,0,85,0.12);
  border-color: rgba(255,0,85,0.3);
  color: var(--hs-accent);
}

/* ── RIGHT ─────────── */
.hs-right {
  flex: 0 0 48%;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  padding: 48px 5vw 48px 32px;
  animation: hs-left 0.9s 0.3s ease both;
}

/* card stack */
.hs-card-stack {
  position: relative;
  width: 100%; max-width: 360px;
}

/* person card */
.hs-pcard {
  width: 100%;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(255,0,85,0.15);
  border-radius: 24px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  box-shadow: 0 24px 60px rgba(255,0,85,0.12);
  animation: hs-float 5s ease-in-out infinite;
}
.hs-pcard-img {
  width: 100%; height: 320px;
  background: linear-gradient(165deg, rgba(255,0,85,0.1), rgba(255,180,210,0.25));
  display: flex; align-items: center; justify-content: center;
  font-size: 100px;
  overflow: hidden;
}
.hs-pcard-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
}
.hs-pcard-body {
  padding: 18px 20px;
  display: flex; align-items: center; justify-content: space-between;
}
.hs-pcard-name {
  font-family: var(--hs-ff-h);
  font-size: 18px; font-weight: 700; color: var(--hs-text);
}
.hs-pcard-role { font-size: 12px; color: var(--hs-muted); margin-top: 2px; }
.hs-pcard-pill {
  padding: 6px 14px;
  background: rgba(255,0,85,0.08);
  border: 1px solid rgba(255,0,85,0.18);
  border-radius: 100px;
  font-size: 12px; font-weight: 600; color: var(--hs-accent);
}

/* floating mini cards */
.hs-fcard {
  position: absolute;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,0,85,0.14);
  border-radius: 16px;
  backdrop-filter: blur(20px);
  padding: 14px 18px;
  box-shadow: 0 8px 28px rgba(255,0,85,0.1);
}
.hs-fcard--br {
  bottom: 12%; right: -14%;
  animation: hs-flt 5s 1.5s ease-in-out infinite;
}
.hs-fc-num {
  font-family: var(--hs-ff-h);
  font-size: 28px; font-weight: 800; color: var(--hs-text);
  display: flex; align-items: center; gap: 4px;
}
.hs-fc-arrow { color: var(--hs-accent); font-size: 18px; animation: hs-arrow 1.8s ease-in-out infinite; }
.hs-fc-label { font-size: 11px; color: var(--hs-muted); margin-top: 3px; }


/* ── KEYFRAMES ─────────── */
@keyframes hs-up   { from{opacity:0;transform:translateY(22px)} to{opacity:1;transform:translateY(0)} }
@keyframes hs-left { from{opacity:0;transform:translateX(28px)} to{opacity:1;transform:translateX(0)} }
@keyframes hs-tick {
  0%,17%  { transform: translateY(0%);    }
  20%,37% { transform: translateY(-20%);  }
  40%,57% { transform: translateY(-40%);  }
  60%,77% { transform: translateY(-60%);  }
  80%,97% { transform: translateY(-80%);  }
  100%    { transform: translateY(0%);    }
}
@keyframes hs-float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }
@keyframes hs-flt   { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes hs-arrow { 0%,100%{transform:translate(0,0)} 50%{transform:translate(4px,-4px)} }

/* ── MOBILE STRIP ─────────── */
.hs-mob-vis { display: none; }

/* ── RESPONSIVE ─────────── */
@media (max-width: 860px) {
  .hs-diag       { display: none; }
  .hs-diag-dots  { display: none; }
  .hs-slash      { display: none; }
  .hs-inner      { flex-direction: column; }
  .hs-right      { display: none; }

  .hs-mob-vis {
    display: flex; align-items: center; justify-content: center;
    position: relative; width: 100%; height: 220px;
    overflow: hidden; flex-shrink: 0;
    background: linear-gradient(160deg, #fff5f8, #ffd8e8);
    animation: hs-up 0.7s ease both;
  }
  .hs-mob-dots {
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(255,0,85,0.12) 1.5px, transparent 1.5px);
    background-size: 24px 24px;
  }
  .hs-mob-person {
    position: relative; z-index: 2;
    width: 110px; height: 154px;
    background: linear-gradient(165deg, rgba(255,0,85,0.1), rgba(255,200,220,0.25));
    border-radius: 70px 70px 0 0;
    border: 1px solid rgba(255,0,85,0.18);
    display: flex; align-items: center; justify-content: center;
    font-size: 46px;
    animation: hs-float 4s ease-in-out infinite;
    overflow: hidden;
  }
  .hs-mob-person img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: top center;
  }
  .hs-mob-badge {
    position: absolute; right: 20px; top: 20px; z-index: 4;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(255,0,85,0.14);
    border-radius: 12px; padding: 10px 14px;
    backdrop-filter: blur(12px); text-align: right;
  }
  .hs-mob-num {
    font-family: var(--hs-ff-h); font-size: 20px; font-weight: 800; color: var(--hs-text);
    display: flex; align-items: center; justify-content: flex-end; gap: 4px;
  }
  .hs-mob-arr { color: var(--hs-accent); font-size: 13px; animation: hs-arrow 1.8s ease-in-out infinite; }
  .hs-mob-lbl { font-size: 10px; color: var(--hs-muted); margin-top: 2px; }

  .hs-left { padding: 28px 20px 48px; max-width: 100%; }
  .hs-stats { flex-direction: column; gap: 0; }
  .hs-stat:not(:last-child) { border-right: none; border-bottom: 1px solid rgba(255,0,85,0.1); }
}

@media (max-width: 520px) {
  .hs-cta { flex-direction: column; }
  .hs-h1 { font-size: clamp(27px, 8vw, 36px); }
  .hs-ticker li { font-size: clamp(24px, 7.5vw, 34px); }
  .hs-ticker-wrap { height: clamp(32px, 9vw, 44px); }
}
/*NASSCOM SECTION*/
.cs-root {
    --accent: #FF0055;
    --accent2: #ff6b9a;
    --text: #1f2937;
    --muted: #6b7280;

    position: relative;
    overflow: hidden;
    padding: 80px 5vw;
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
}

.cs-root * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.cs-root::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 0, 85, .05) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

/* ── Background Glows (more orbs, more spread) ── */

.cs-bg-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.cs-bg-orb1 {
    width: 640px;
    height: 640px;
    top: -220px;
    right: -200px;
    background: radial-gradient(circle, rgba(255, 0, 85, .11), transparent 68%);
    filter: blur(50px);
}

.cs-bg-orb2 {
    width: 500px;
    height: 500px;
    bottom: -150px;
    left: -140px;
    background: radial-gradient(circle, rgba(255, 140, 170, .15), transparent 68%);
    filter: blur(55px);
}

/* New: centre ambient glow */
.cs-bg-orb3 {
    width: 700px;
    height: 360px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse, rgba(255, 0, 85, .04), transparent 65%);
    filter: blur(60px);
}

/* ── TOP BAR ── */

.cs-pill-bar {
    display: flex;
    align-items: center;
    justify-content: center;

    max-width: 1100px;
    margin: 0 auto 60px;

    background: #fff;

    /* Squircle-ish: tighter bottom corners, larger top */
    border-radius: 22px 22px 16px 16px;
    border: 1px solid #eef2f7;

    padding: 20px;

    /* Richer layered shadow */
    box-shadow:
        0 2px 4px rgba(15, 23, 42, .04),
        0 8px 20px rgba(15, 23, 42, .07),
        0 24px 48px rgba(15, 23, 42, .08),
        0 0 0 1px rgba(255, 255, 255, .9) inset;
}

.cs-pill-item {
    flex: 1;
    text-align: center;
    color: #111827;
    font-size: 14px;
    font-weight: 600;
    padding: 0 20px;
}

.cs-pill-item:not(:last-child) {
    border-right: 1px solid #edf2f7;
}

.cs-pill-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #FF0055;
    color: #fff;
    font-size: 12px;
    margin-right: 8px;
    /* Badge glow */
    box-shadow: 0 2px 8px rgba(255, 0, 85, .35);
}

/* ── GRID ── */

.cs-grid {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* ── CARD ── */

.cs-card {
    position: relative;
    background: #fff;

    /* Asymmetric border-radius for personality */
    border-radius: 28px 28px 20px 20px;
    border: 1px solid #f1f5f9;

    overflow: visible;
    transition: transform .4s cubic-bezier(.22, 1, .36, 1),
                box-shadow .4s ease,
                border-color .4s ease;

    /* Three-layer shadow for real depth */
    box-shadow:
        0 1px 2px rgba(15, 23, 42, .04),
        0 8px 24px rgba(15, 23, 42, .07),
        0 28px 64px rgba(15, 23, 42, .10),
        0 0 0 1px rgba(255, 255, 255, .8) inset;
}

.cs-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(160deg, rgba(255, 255, 255, .6) 0%, transparent 50%);
    pointer-events: none;
}

.cs-card:hover {
    transform: translateY(-10px) scale(1.01);
    border-color: rgba(255, 0, 85, .18);

    box-shadow:
        0 2px 4px rgba(15, 23, 42, .04),
        0 12px 32px rgba(255, 0, 85, .10),
        0 32px 72px rgba(255, 0, 85, .14),
        0 48px 96px rgba(15, 23, 42, .10),
        0 0 0 1px rgba(255, 0, 85, .06) inset;
}

/* ── TAG ── */

.cs-tag {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);

    white-space: nowrap;
    padding: 10px 26px;

    /* Pill with a slight squish on bottom */
    border-radius: 999px 999px 20px 20px;

    color: #fff;
    font-size: 12px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    letter-spacing: .4px;

    background: linear-gradient(135deg, #FF0055, #ff6b9a);

    /* Deep tag shadow */
    box-shadow:
        0 4px 12px rgba(255, 0, 85, .30),
        0 12px 28px rgba(255, 0, 85, .20),
        0 0 0 2px rgba(255, 255, 255, .4) inset;
}

/* ── LOGO SECTION ── */

.cs-logo-area {
    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 140px;
    padding: 50px 20px 30px;

    background: linear-gradient(180deg, #ffffff, #fafbfc);
    border-bottom: 1px solid #f3f4f6;

    border-radius: 28px 28px 0 0;
}

.cs-logo-block {
    flex: 1;
    text-align: center;
    padding: 0 15px;
}

.cs-logo-block:not(:last-child) {
    border-right: 1px solid #f1f5f9;
}

.cs-logo-img {
    max-width: 100%;
    height: 55px;
    object-fit: contain;
    /* Subtle drop shadow on logos */
    filter: drop-shadow(0 2px 6px rgba(15, 23, 42, .10));
    transition: filter .3s ease;
}

.cs-logo-img:hover {
    filter: drop-shadow(0 4px 12px rgba(255, 0, 85, .20));
}

/* ── FEATURES ── */

.cs-features {
    list-style: none;
}

.cs-feat {
    display: flex;
    align-items: center;
    gap: 14px;

    padding: 18px 22px;

    color: #374151;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.7;

    border-bottom: 1px solid #f5f5f5;
    transition: background .2s ease;
}

.cs-feat:hover {
    background: rgba(255, 0, 85, .025);
}

.cs-feat:last-child {
    border-bottom: none;
    /* Match card bottom radius */
    border-radius: 0 0 20px 20px;
}

.cs-feat-ico {
    width: 38px;
    height: 38px;

    /* Diamond-cut corners via clip-path */
    border-radius: 12px 4px 12px 4px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: rgba(255, 0, 85, .08);
    color: #FF0055;

    /* Icon shadow */
    box-shadow:
        0 2px 8px rgba(255, 0, 85, .15),
        0 0 0 1px rgba(255, 0, 85, .08);

    transition: background .25s ease, box-shadow .25s ease, transform .25s ease;
}

.cs-feat:hover .cs-feat-ico {
    background: rgba(255, 0, 85, .14);
    box-shadow:
        0 4px 14px rgba(255, 0, 85, .22),
        0 0 0 1px rgba(255, 0, 85, .12);
    transform: rotate(-4deg) scale(1.08);
}

.cs-feat-ico i {
    font-size: 16px;
}

/* ── RESPONSIVE ── */

@media (max-width: 991px) {
    .cs-grid {
        grid-template-columns: 1fr;
    }

    .cs-pill-bar {
        flex-direction: column;
        gap: 12px;
    }

    .cs-pill-item {
        border: none !important;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .cs-root {
        padding: 60px 20px;
    }

    .cs-tag {
        font-size: 11px;
        padding: 8px 18px;
    }

    .cs-feat {
        font-size: 13px;
    }
}
html {
  scroll-behavior: smooth;
}
/*COMPANIES SLIDER*/
    .partner-section {
      width: 100%;
      padding: 48px 20px 40px;
      text-align: center;
      background: #fff;
      overflow: hidden;
    }

    .partner-section__heading {
      font-size: clamp(18px, 3vw, 26px);
      font-weight: 700;
      color: #111;
      margin-bottom: 10px;
      letter-spacing: -0.3px;
    }

    .partner-section__heading span {
      color: #e0004d;
      text-decoration: underline;
      text-decoration-color: #e0004d;
      text-underline-offset: 4px;
    }

    .partner-section__subtext {
      font-size: clamp(13px, 2vw, 15px);
      color: #555;
      margin-bottom: 40px;
      font-weight: 400;
    }

    /* Slider wrapper */
    .partner-slider {
      position: relative;
      width: 100%;
      overflow: hidden;
    }


    /* Track — duplicated for seamless loop */
    .partner-slider__track {
      display: flex;
      align-items: center;
      gap: 60px;
      width: max-content;
      animation: scroll-logos 22s linear infinite;
    }

    .partner-slider__track:hover {
      animation-play-state: paused;
    }

    /* Each logo item */
    .partner-slider__item {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      opacity: 0.85;
      transition: opacity 0.25s ease, transform 0.25s ease;
      cursor: default;
    }

    .partner-slider__item:hover {
      opacity: 1;
      transform: scale(1.06);
    }

    /* Logo images */
    .partner-slider__item img {
      height: 80px;
      max-width: 160px;
      object-fit: contain;
      display: block;
    }

    /* Logo images */
    .partner-slider__item img {
      height: 80px;
      max-width: 180px;
      object-fit: contain;
      display: block;
    }

    /* Scroll animation */
    @keyframes scroll-logos {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* Mobile tweaks */
    @media (max-width: 600px) {
      .partner-slider__track {
        gap: 40px;
        animation-duration: 18s;
      }

      .partner-slider__item img {
        height: 36px;
        max-width: 110px;
      }

      .partner-slider__microsoft-grid {
        width: 22px;
        height: 22px;
      }
    }
 /*PLACEMENTS SLIDING SECTION*/
  .pl-section {
    font-family: 'DM Sans', sans-serif;
    background: #062334;
    padding: 3.5rem 1.5rem;
    color: #1a1a1a;
  }
 
  .pl-header-wrap { text-align: center; margin-bottom: 2.5rem; }
 
  .pl-eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 0.5rem;
  }
 
  .pl-title {
    font-family: 'DM Serif Display', serif;
    font-size: 32px;
    font-weight: 400;
    color: white;
    margin: 0 0 0.4rem;
  }
 
  .pl-subtitle {
    font-size: 15px;
    color: #666;
    margin: 0;
  }
 
  .pl-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
  }
 
  .pl-stat { text-align: center; }
 
  .pl-stat-num {
    font-size: 26px;
    font-weight: 500;
    color: white;
  }
 
  .pl-stat-label {
    font-size: 12px;
    color: #888;
    margin-top: 2px;
  }
 
  .pl-stat-divider {
    width: 1px;
    height: 36px;
    background: #e5e5e5;
  }
 
  .pl-ticker-wrap {
    overflow: hidden;
    position: relative;
    margin-bottom: 2.5rem;
  }
 
  .pl-ticker-wrap::before,
  .pl-ticker-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
  }
 
  .pl-ticker-wrap::before {
    left: 0;
    background: linear-gradient(to right, #062334, transparent);
  }
 
  .pl-ticker-wrap::after {
    right: 0;
    background: linear-gradient(to left, #062334, transparent);
  }
 
  .pl-ticker {
    display: flex;
    gap: 1.25rem;
    animation: pl-scroll-left 35s linear infinite;
    width: max-content;
  }
 
  .pl-ticker:hover { animation-play-state: paused; }
 
  @keyframes pl-scroll-left {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
 
  /* ── Bigger card ── */
  .pl-card {
    background: #ffffff;
    border: 0.5px solid #e5e5e5;
    border-radius: 18px;
    padding: 1.75rem 1.25rem 1.5rem;
    width: 230px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    cursor: default;
  }
 
  .pl-card:hover {
    border-color: #ccc;
    box-shadow: 0 6px 24px rgba(0,0,0,0.10);
  }
 
  /* ── Bigger avatar ── */
  .pl-avatar-ring {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    padding: 3px;
    background: #f5f5f5;
    border: 2px solid #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.25rem;
  }
 
  .pl-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
 
  .pl-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
  }
 
  .pl-name {
    font-size: 15px;
    font-weight: 500;
    color: black;
    text-align: center;
    line-height: 1.3;
  }
 
  .pl-role {
    font-size: 13px;
    color: #888;
    text-align: center;
  }
 
  .pl-company-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f5f5f5;
    border-radius: 20px;
    padding: 5px 14px 5px 8px;
    margin-top: 6px;
  }
 
  .pl-company-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
  }
 
  .pl-company-name {
    font-size: 13px;
    font-weight: 500;
    color: #222;
    white-space: nowrap;
  }
 
  .pl-package {
    font-size: 13px;
    font-weight: 500;
    padding: 4px 14px;
    border-radius: 20px;
    margin-top: 4px;
  }
 
  .pl-highlight {
    border-top: 0.5px solid #e5e5e5;
    padding-top: 2rem;
    margin-top: 0.5rem;
  }
 
  .pl-highlight-title {
    text-align: center;
    font-size: 11px;
    color: #999;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
  }
 
  .pl-companies-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
  }
 
  .pl-company-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border: 0.5px solid #e5e5e5;
    border-radius: 20px;
    background: #f9f9f9;
    transition: background 0.15s, border-color 0.15s;
    cursor: default;
  }
 
  .pl-company-pill:hover {
    background: #f0f0f0;
    border-color: #ccc;
  }
 
  .pl-pill-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
  }
 
  .pl-pill-text {
    font-size: 13px;
    color: #222;
    font-weight: 500;
  }
  
  /* ── Training section ── */
  #nl-training {
    padding: 4rem 2rem 5rem;
    background: #e1f5ee;
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  }

  /* ── HERO ── */
  #nl-training .hero {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 3rem;
  }

  #nl-training .badge {
    display: inline-block;
    background: #e6f1fb;
    color: #185fa5;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 16px;
    border-radius: 20px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.1rem;
  }

  #nl-training .hero h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.35;
    margin-bottom: 0.6rem;
  }

  #nl-training .divider {
    width: 52px;
    height: 4px;
    background: linear-gradient(90deg, #378add, #1d9e75);
    border-radius: 3px;
    margin: 1.1rem auto 1.2rem;
  }

  #nl-training .hero .sub {
    font-size: 15px;
    color: #5a6a82;
    line-height: 1.7;
    margin-bottom: 1rem;
  }

  #nl-training .hero .desc {
    font-size: 15px;
    color: #5a6a82;
    line-height: 1.8;
  }

  /* ── BODY WRAPPER ── */
  #nl-training .body-wrap {
    max-width: 900px;
    margin: 0 auto;
  }

  #nl-training .select-label {
    text-align: center;
    font-size: 15px;
    color: #5a6a82;
    margin-bottom: 1.4rem;
    line-height: 1.65;
  }

  /* ── TABS ── */
  #nl-training .tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 2.2rem;
    list-style: none;
  }

  #nl-training .tabs button {
    border: 1px solid #c8d8ed;
    background: #fff;
    color: #5a6a82;
    font-size: 13px;
    font-family: inherit;
    padding: 8px 20px;
    border-radius: 24px;
    cursor: pointer;
    transition: background 0.16s, color 0.16s, border-color 0.16s;
  }

  #nl-training .tabs button:hover {
    background: #e6f1fb;
    color: #185fa5;
    border-color: #85b7eb;
  }

  #nl-training .tabs button.active {
    background: #185fa5;
    color: #fff;
    border-color: #185fa5;
    font-weight: 600;
  }

  /* ── GRID ── */
  #nl-training .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 22px;
  }

  /* ── CARD ── */
  #nl-training .card {
    background: #ffffff;
    border: 1px solid #e2eaf5;
    border-radius: 16px;
    padding: 1.6rem 1.6rem 1.8rem;
    transition: border-color 0.18s, box-shadow 0.18s;
  }

  #nl-training .card:hover {
    border-color: #b0c8e8;
    box-shadow: 0 4px 20px rgba(56, 138, 221, 0.08);
  }

  #nl-training .card .icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 1rem;
  }

  #nl-training .card .icon-wrap.blue   { background: #e6f1fb; color: #185fa5; }
  #nl-training .card .icon-wrap.teal   { background: #e1f5ee; color: #0f6e56; }
  #nl-training .card .icon-wrap.amber  { background: #faeeda; color: #854f0b; }
  #nl-training .card .icon-wrap.purple { background: #eeedfe; color: #534ab7; }

  #nl-training .card h2 {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.4rem;
  }

  #nl-training .card .tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 12px;
    border-radius: 12px;
    margin-bottom: 1rem;
    letter-spacing: 0.03em;
  }

  #nl-training .tag-blue   { background: #e6f1fb; color: #185fa5; }
  #nl-training .tag-teal   { background: #e1f5ee; color: #0f6e56; }
  #nl-training .tag-amber  { background: #faeeda; color: #854f0b; }
  #nl-training .tag-purple { background: #eeedfe; color: #534ab7; }

  #nl-training .card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.3rem;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  #nl-training .card ul li {
    font-size: 14px;
    color: #4a5a72;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.55;
  }

  #nl-training .card ul li i {
    margin-top: 2px;
    font-size: 15px;
    flex-shrink: 0;
  }

  #nl-training .card .check-blue   { color: #378add; }
  #nl-training .card .check-teal   { color: #1d9e75; }
  #nl-training .card .check-amber  { color: #ba7517; }
  #nl-training .card .check-purple { color: #7f77dd; }

  #nl-training .card .footer-note {
    font-size: 13px;
    color: #7a8a9e;
    border-top: 1px solid #e8eef7;
    padding-top: 1rem;
    line-height: 1.6;
    font-style: italic;
  }

  /* ── HIDDEN ── */
  #nl-training .hidden { display: none; }

  /* ── RESPONSIVE ── */
  @media (max-width: 600px) {
    #nl-training { padding: 2.5rem 1.2rem 3.5rem; }
    #nl-training .hero h1 { font-size: 1.5rem; }
    #nl-training .grid { grid-template-columns: 1fr; }
  }
  /*TALK TO US SECTION*/
  
    .ib-wrapper {
      display: flex;
      align-items: stretch;
      background: linear-gradient(110deg, #8B002E 0%, #C0003E 40%, #E0004A 65%, #FF4D85 100%);
      width: 100%;
      min-height: 220px;
      overflow: hidden;
    }

    /* LEFT — Image flush to bottom */
    .ib-person-col {
      flex-shrink: 0;
      display: flex;
      align-items: flex-end;
    }

    .ib-person-col img {
      width: auto;
      height: 360px;
      display: block;
      object-fit: cover;
      object-position: top center;
    }

    /* MIDDLE — Centered text */
    .ib-content-col {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 36px 48px;
    }

    .ib-heading {
      font-size: 30px;
      font-weight: 800;
      color: #ffffff;
      line-height: 1.22;
      margin: 0 0 14px 0;
    }

    .ib-underline {
      width: 90px;
      height: 3px;
      background: #ffb3cc;
      border-radius: 2px;
      margin: 0 auto 16px auto;
    }

    .ib-subtext {
      font-size: 15px;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.92);
      line-height: 1.65;
    }

    /* RIGHT — CTA */
    .ib-cta-col {
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 36px 52px 36px 24px;
    }

    .ib-cta-btn {
      display: flex;
      align-items: center;
      gap: 14px;
      background: #ffffff;
      color: #E0004A;
      font-size: 15px;
      font-weight: 800;
      padding: 16px 32px;
      border-radius: 12px;
      border: none;
      cursor: pointer;
      letter-spacing: 0.3px;
      white-space: nowrap;
      text-decoration: none;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    }

    .ib-cta-btn:hover {
      background: #fff0f4;
      transform: scale(1.04);
      box-shadow: 0 6px 28px rgba(0, 0, 0, 0.28);
    }

    .ib-cta-btn:active {
      transform: scale(0.97);
    }

    /* Phone icon wrap */
    .ib-phone-wrap {
      position: relative;
      width: 38px;
      height: 38px;
      flex-shrink: 0;
    }

    .ib-ring {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      border: 2px solid rgba(224, 0, 74, 0.4);
      transform: translate(-50%, -50%) scale(1);
      opacity: 0;
      animation: ib-ripple 2s ease-out infinite;
    }

    .ib-ring:nth-child(2) { animation-delay: 0.55s; }
    .ib-ring:nth-child(3) { animation-delay: 1.1s; }

    @keyframes ib-ripple {
      0%   { transform: translate(-50%, -50%) scale(0.8); opacity: 0.85; }
      100% { transform: translate(-50%, -50%) scale(2.5); opacity: 0; }
    }

    .ib-phone-icon {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 38px;
      height: 38px;
      background: #E0004A;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      animation: ib-shake 2s ease-in-out infinite;
    }

    @keyframes ib-shake {
      0%, 100% { transform: translate(-50%, -50%) rotate(0deg); }
      10%      { transform: translate(-50%, -50%) rotate(-20deg); }
      20%      { transform: translate(-50%, -50%) rotate(20deg); }
      30%      { transform: translate(-50%, -50%) rotate(-15deg); }
      40%      { transform: translate(-50%, -50%) rotate(15deg); }
      50%      { transform: translate(-50%, -50%) rotate(0deg); }
    }

    .ib-phone-icon svg {
      width: 18px;
      height: 18px;
      fill: #ffffff;
    }

    /* Tablet */
    @media (max-width: 900px) {
      .ib-person-col img {
        width: 150px;
        height: 200px;
      }

      .ib-heading {
        font-size: 22px;
      }

      .ib-content-col {
        padding: 28px 20px;
      }

      .ib-cta-col {
        padding: 28px 28px 28px 16px;
      }

      .ib-cta-btn {
        padding: 14px 22px;
        font-size: 14px;
      }
    }

    /* Mobile */
    @media (max-width: 600px) {
      .ib-wrapper {
        flex-direction: column;
        align-items: center;
        padding-bottom: 36px;
        background: linear-gradient(170deg, #8B002E 0%, #C0003E 40%, #E0004A 70%, #FF4D85 100%);
      }

      .ib-person-col {
        justify-content: center;
      }

      .ib-person-col img {
        width: 140px;
        height: 180px;
      }

      .ib-content-col {
        padding: 12px 24px 20px;
      }

      .ib-heading {
        font-size: 20px;
      }

      .ib-cta-col {
        padding: 0 24px;
        width: 100%;
        justify-content: center;
      }

      .ib-cta-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
      }
    }