
/* ── Google Font (add once; skip if already loaded in your layout) ── */
/* @import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&display=swap'); */

  :root {
    --navy: #191c4f;
    --red: #e91d39;
    --navy-light: #232760;
    --navy-dark: #0f1130;
    --gold: #c9a84c;
    --cream: #f8f5f0;
    --text-dark: #1a1a2e;
    --text-mid: #4a4a6a;
    --text-light: #8888aa;
    --white: #ffffff;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', sans-serif;
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
  }

  html { scroll-behavior: smooth; }

  body {
    /* font-family: var(--font-body); */
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
  }



/* ── HERO ── */
.ils-whatif {
    background: #e91d39;
    width: 100%;
    min-height: 64px;
    display: flex;
    align-items: center;
    padding: 0 80px;
    overflow: hidden;
    position: relative;
    z-index: 10;
}
.ils-whatif__label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ffffff;
    white-space: nowrap;
    padding-right: 20px;
    border-right: 1.5px solid rgba(255,255,255,0.35);
    flex-shrink: 0;
    align-self: center;
}
.ils-whatif__roller-wrap {
    flex: 1;
    min-height: 64px;
    padding-left: 20px;
    display: flex;
    align-items: center;
    position: relative;
}
.ils-whatif__item {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 20px;
    right: 0;
    font-size: 17px;
    font-weight: 500;
    color: rgba(255,255,255,0.92);
    white-space: normal;
    word-break: break-word;
    line-height: 1.5;
    opacity: 0;
    transition: opacity 0.6s ease;
    padding: 10px 0;
}
.ils-whatif__item.ils-active {
    opacity: 1;
}

@media (max-width: 900px) {
    .ils-whatif { padding: 10px 32px; }
    .ils-whatif__item { font-size: 16px; }
}
@media (max-width: 480px) {
    .ils-whatif {
        padding: 12px 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        min-height: auto;
    }
    .ils-whatif__label {
        border-right: none;
        border-bottom: 1.5px solid rgba(255,255,255,0.35);
        padding-right: 0;
        padding-bottom: 6px;
        padding-top: 17px;
        width: 100%;
    }
    .ils-whatif__roller-wrap {
        width: 100%;
        min-height: 48px;
        padding-left: 0;
    }
    .ils-whatif__item {
        left: 0;
        font-size: 16px;
        transform: translateY(-50%);
    }
}

/* ── HERO ── */
.ils-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 640px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}
.ils-hero__video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.ils-hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.ils-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to bottom,
        rgba(10, 12, 40, 0.05)  0%,
        rgba(10, 12, 40, 0.15) 35%,
        rgba(10, 12, 40, 0.60) 62%,
        rgba(10, 12, 40, 0.90) 82%,
        rgba(10, 12, 40, 0.98) 100%
    );
}
.ils-hero__content {
    position: relative;
    z-index: 2;
    padding: 0 80px 90px;
}
.ils-hero__tag {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    opacity: 0;
    animation: ilsHeroIn 1s cubic-bezier(0.22,1,0.36,1) 0.3s forwards;
}
.ils-hero__tag-line {
    width: 32px;
    height: 1.5px;
    background: #e91d39;
    flex-shrink: 0;
}
.ils-hero__tag-text {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
}
.ils-hero__title {
    font-size: clamp(30px, 4.4vw, 56px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin: 0;
    opacity: 0;
    animation: ilsHeroIn 1s cubic-bezier(0.22,1,0.36,1) 0.55s forwards;
}
.ils-hero__title strong {
    font-weight: 800;
    display: block;
}
@keyframes ilsHeroIn {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
    .ils-whatif { padding: 0 32px; }
    .ils-hero__content { padding: 0 32px 72px; }
}
@media (max-width: 480px) {
    .ils-whatif { padding: 0 20px; }
    .ils-whatif__item { font-size: 12px; }
    .ils-hero__content { padding: 0 20px 60px; }
}

/* ── STATS BAR ── */
.ils-stats {
    background: #191c4f;
    width: 100%;
}
.ils-stats__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 100%;
}
.ils-stats__item {
    padding: 28px 40px;
    border-right: 1px solid rgba(255,255,255,0.08);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.ils-stats__item:last-child { border-right: none; }
.ils-stats__item.ils-visible {
    opacity: 1;
    transform: translateY(0);
}
.ils-stats__item.ils-visible:nth-child(2) { transition-delay: 0.1s; }
.ils-stats__item.ils-visible:nth-child(3) { transition-delay: 0.2s; }
.ils-stats__item.ils-visible:nth-child(4) { transition-delay: 0.3s; }
.ils-stats__num {
    /* font-family: 'Cormorant Garamond', Georgia, serif; */
    font-size: 36px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1;
    display: flex;
    align-items: baseline;
    gap: 2px;
}
.ils-stats__num sup { color: #e91d39; font-size: 22px; font-weight: 700; }
.ils-stats__label {
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    margin-top: 5px;
    letter-spacing: 0.3px;
}

/* ── WELCOME / PRESIDENT ── */
.ils-welcome {
    background: #f8f5f0;
    padding: 100px 0;
    overflow: hidden;
}
.ils-welcome__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}
.ils-welcome__img-wrap {
    position: relative;
}
.ils-welcome__img-frame {
    position: relative;
    overflow: hidden;
    border-radius: 3px;
}
.ils-welcome__img-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s cubic-bezier(0.22,1,0.36,1);
}
.ils-welcome__img-frame:hover img { transform: scale(1.03); }
.ils-welcome__img-accent {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background: #e91d39;
    z-index: -1;
    border-radius: 3px;
}
.ils-welcome__label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}
.ils-welcome__label-line {
    width: 28px;
    height: 2px;
    background: #e91d39;
    flex-shrink: 0;
}
.ils-welcome__label-text {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #e91d39;
}
.ils-welcome__heading {
    /* font-family: 'Cormorant Garamond', Georgia, serif; */
    font-size: clamp(30px, 3.5vw, 48px);
    font-weight: 400;
    color: #191c4f;
    line-height: 1.15;
    margin-bottom: 24px;
}
.ils-welcome__heading em { font-style: italic; font-weight: 300; }
.ils-welcome__body {
    font-size: 15px;
    color: #4a4a6a;
    line-height: 1.85;
    margin-bottom: 16px;
}
.ils-welcome__readmore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #e91d39;
    text-decoration: none;
    border-bottom: 1.5px solid #e91d39;
    padding-bottom: 2px;
    transition: gap 0.2s;
    margin-top: 8px;
}
.ils-welcome__readmore:hover { gap: 14px; color: #e91d39; }
.ils-welcome__sig {
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid rgba(0,0,0,0.1);
}
.ils-welcome__sig-name {
    /* font-family: 'Cormorant Garamond', Georgia, serif; */
    font-size: 22px;
    font-weight: 600;
    /* font-style: italic; */
    color: #191c4f;
    margin-bottom: 4px;
}
.ils-welcome__sig-title {
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #8888aa;
}

/* ── scroll reveal helper ── */
.ils-reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.85s cubic-bezier(0.22,1,0.36,1),
                transform 0.85s cubic-bezier(0.22,1,0.36,1);
}
.ils-reveal-left {
    opacity: 0;
    transform: translateX(-44px);
    transition: opacity 0.85s cubic-bezier(0.22,1,0.36,1),
                transform 0.85s cubic-bezier(0.22,1,0.36,1);
}
.ils-reveal-right {
    opacity: 0;
    transform: translateX(44px);
    transition: opacity 0.85s cubic-bezier(0.22,1,0.36,1),
                transform 0.85s cubic-bezier(0.22,1,0.36,1);
}
.ils-reveal.ils-visible,
.ils-reveal-left.ils-visible,
.ils-reveal-right.ils-visible {
    opacity: 1;
    transform: translate(0);
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .ils-hero__content   { padding: 0 32px 72px; }
    .ils-stats__inner    { grid-template-columns: repeat(2, 1fr); }
    .ils-stats__item     { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .ils-welcome__grid   { grid-template-columns: 1fr; gap: 48px; padding: 0 32px; }
    .ils-welcome         { padding: 72px 0; }
}
@media (max-width: 520px) {
    .ils-hero__content   { padding: 0 20px 60px; }
    .ils-hero__title     { font-size: clamp(32px, 9vw, 52px); }
    .ils-stats__inner    { grid-template-columns: repeat(2, 1fr); }
    .ils-stats__item     { padding: 22px 20px; }
    .ils-welcome__grid   { padding: 0 20px; }
    .ils-welcome         { padding: 60px 0; }
}

#form-messages.success { color: #28a745; font-weight: bold; }
#form-messages.error   { color: #dc3545; font-weight: bold; }
/* WhatsApp Floating Icon - Bottom Left */
    .whatsapp-float {
        position: fixed;
        bottom: 30px;
        left: 30px;
        z-index: 9999;
        transition: all 0.3s ease;
    }

    .whatsapp-float img {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease;
    }

    .whatsapp-float:hover img {
        transform: scale(1.15);
    }

    .whatsapp-float:hover {
        transform: translateY(-5px);
    }

    /* Pulse animation on hover (optional nice effect) */
    @keyframes pulse {
        0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
        70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
        100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
    }

    .whatsapp-float:hover {
        animation: pulse 1.5s infinite;
    }


/* ===== PROGRAMS SECTION ===== */
  .section-programs {
    padding: 120px 0;
    background: var(--navy);
  }
  .programs-header { margin-bottom: 40px; }
  .programs-header .section-title { color: white; }
  .programs-header .section-label-text { color: rgba(255,255,255,0.5); }
  .programs-header .section-label-line { background: var(--red); }
  .programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .program-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s ease, border-color 0.3s;
    position: relative;
  }
  .program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.3);
    border-color: var(--red);
  }
  .program-card-top {
    padding: 40px 36px 32px;
  }
  .program-card-icon {
    width: 52px; height: 52px;
    background: rgba(233, 29, 57, 0.15);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: background 0.3s;
  }
  .program-card:hover .program-card-icon { background: var(--red); }
  .program-card-icon svg { width: 24px; height: 24px; stroke: var(--red); fill: none; transition: stroke 0.3s; }
  .program-card:hover .program-card-icon svg { stroke: white; }
  .program-card-title {
    /* font-family: var(--font-display); */
    font-size: 22px;
    font-weight: 600;
    color: white;
    margin-bottom: 14px;
    line-height: 1.3;
  }
  .program-card-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    line-height: 1.8;
  }
  .program-card-footer {
    padding: 20px 36px;
    border-top: 1px solid rgba(255,255,255,0.07);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .program-card-tag {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
  }
  .program-card-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--red);
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: gap 0.2s;
  }
  .program-card-link:hover {
    gap: 10px;
    color: #f4192f !important;
 }
  .program-card-link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; }


  /* ===== RESPONSIVE ===== */
  @media (max-width: 1100px) {
    .container { padding: 0 40px; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .programs-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-inner { grid-template-columns: 1fr; gap: 60px; }
    .stats-left { max-width: 600px; }
  }

  @media (max-width: 900px) {
    .nav { padding: 16px 32px; }
    .nav.scrolled { padding: 12px 32px; }
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
    .hero-content { padding: 0 32px 80px; }
    .hero-scroll-hint { right: 32px; }
    .strip-stats-inner { grid-template-columns: repeat(2, 1fr); }
    .welcome-grid { grid-template-columns: 1fr; gap: 60px; }
    .welcome-image-badge { right: 0; }
    .welcome-content { padding-right: 0; }
    .container { padding: 0 32px; }
  }

  @media (max-width: 620px) {
    .nav { padding: 14px 20px; }
    .hero-content { padding: 0 20px 70px; }
    .hero-scroll-hint { display: none; }
    .strip-stats-inner { grid-template-columns: repeat(2, 1fr); }
    .strip-stat { padding: 24px 20px; }
    .why-grid { grid-template-columns: 1fr; }
    .programs-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .container { padding: 0 20px; }
    section { padding-left: 0; padding-right: 0; }
    .section-welcome, .section-why, .section-programs, .section-stats,
    .section-alumni, .section-cta { padding: 80px 0; }
  }



  .custom-navbar-logo {
  height: 55px;   /* tweak this to taste */
  width: auto;
  max-width: none;
  object-fit: contain;
}



/* Wlecome Message Full */
    @import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&display=swap');

/* ── HERO IMAGE ── */
.pm-hero {
    position: relative;
    width: 100%;
    height: 88vh;
    min-height: 560px;
    overflow: hidden;
}
.pm-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}
/* gradient: clear at top, dark at bottom — name sits there */
.pm-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 12, 40, 0.0)  0%,
        rgba(10, 12, 40, 0.15) 45%,
        rgba(10, 12, 40, 0.75) 72%,
        rgba(10, 12, 40, 0.95) 100%
    );
}
.pm-hero__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0 80px 56px;
}
.pm-hero__label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}
.pm-hero__label-line {
    width: 30px;
    height: 1.5px;
    background: #e91d39;
    flex-shrink: 0;
}
.pm-hero__label-text {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
}
.pm-hero__name {
    /* font-family: 'Cormorant Garamond', Georgia, serif; */
    font-size: clamp(36px, 5vw, 68px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin: 0 0 6px;
}
.pm-hero__name strong {
    font-weight: 700;
    font-style: italic;
}
.pm-hero__role {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}

/* ── MESSAGE BODY ── */
.pm-body {
    background: #f8f5f0;
    padding: 90px 0 100px;
}
.pm-body__inner {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 40px;
}

/* opening quote mark */
.pm-body__quote-mark {
    /* font-family: 'Cormorant Garamond', Georgia, serif; */
    font-size: 120px;
    color: #e91d39;
    line-height: 0.6;
    opacity: 0.18;
    margin-bottom: 32px;
    display: block;
}

.pm-body__greeting {
    /* font-family: 'Cormorant Garamond', Georgia, serif; */
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 400;
    font-style: italic;
    color: #191c4f;
    margin-bottom: 36px;
    line-height: 1.3;
}

.pm-body__text {
    font-size: 16px;
    line-height: 1.95;
    color: #3a3a5c;
    margin-bottom: 24px;
    text-align: justify;
}

.pm-body__divider {
    width: 56px;
    height: 2px;
    background: #e91d39;
    margin: 44px 0;
}

/* signature block */
.pm-body__sig {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.pm-body__sig-name {
    /* font-family: 'Cormorant Garamond', Georgia, serif; */
    font-size: 28px;
    font-weight: 600;
    /* font-style: italic; */
    color: #191c4f;
}
.pm-body__sig-title {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #8888aa;
}

/* scroll reveal */
.pm-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1),
                transform 0.8s cubic-bezier(0.22,1,0.36,1);
}
.pm-reveal.pm-visible { opacity: 1; transform: translateY(0); }
.pm-reveal:nth-child(2) { transition-delay: 0.1s; }
.pm-reveal:nth-child(3) { transition-delay: 0.2s; }
.pm-reveal:nth-child(4) { transition-delay: 0.3s; }
.pm-reveal:nth-child(5) { transition-delay: 0.4s; }

/* responsive */
@media (max-width: 768px) {
    .pm-hero__caption { padding: 0 28px 44px; }
    .pm-body__inner   { padding: 0 24px; }
    .pm-body          { padding: 64px 0 72px; }
}
@media (max-width: 480px) {
    .pm-hero          { height: 75vh; }
    .pm-hero__caption { padding: 0 20px 36px; }
    .pm-body__inner   { padding: 0 20px; }
}


/* Privacy Policy */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&display=swap');

/* ── BREADCRUMB HERO ── */
.pp-hero {
    background: #191c4f;
    padding: 100px 0 70px;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.pp-hero::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 360px; height: 360px;
    background: #e91d39;
    border-radius: 50%;
    opacity: 0.06;
}
.pp-hero::after {
    content: '';
    position: absolute;
    bottom: -60px; left: -60px;
    width: 260px; height: 260px;
    background: #e91d39;
    border-radius: 50%;
    opacity: 0.04;
}
.pp-hero__label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    justify-content: center;
}
.pp-hero__label-line {
    width: 28px; height: 1.5px;
    background: #e91d39;
}
.pp-hero__label-text {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
}
.pp-hero__title {
    /* font-family: 'Cormorant Garamond', Georgia, serif; */
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 14px;
    line-height: 1.1;
}
.pp-hero__title strong { font-weight: 700; font-style: italic; }
.pp-hero__updated {
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    letter-spacing: 1px;
}

/* ── BODY ── */
.pp-body {
    background: #f8f5f0;
    padding: 90px 0 110px;
}
.pp-body__inner {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 40px;
}

/* intro */
.pp-intro {
    font-size: 17px;
    line-height: 1.9;
    color: #3a3a5c;
    margin-bottom: 56px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

/* sections */
.pp-section {
    margin-bottom: 48px;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1),
                transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.pp-section.pp-visible { opacity: 1; transform: translateY(0); }

.pp-section__num {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}
.pp-section__num-badge {
    width: 32px; height: 32px;
    background: #e91d39;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}
.pp-section__heading {
    /* font-family: 'Cormorant Garamond', Georgia, serif; */
    font-size: 26px;
    font-weight: 600;
    color: #191c4f;
    line-height: 1.2;
    margin: 0;
}
.pp-section__text {
    font-size: 15px;
    line-height: 1.9;
    color: #4a4a6a;
    margin-bottom: 14px;
    padding-left: 44px;
}
.pp-section__list {
    padding-left: 44px;
    margin-bottom: 14px;
    list-style: none;
}
.pp-section__list li {
    font-size: 15px;
    line-height: 1.85;
    color: #4a4a6a;
    padding: 6px 0 6px 18px;
    position: relative;
}
.pp-section__list li::before {
    content: '';
    position: absolute;
    left: 0; top: 16px;
    width: 6px; height: 6px;
    background: #e91d39;
    border-radius: 50%;
}
.pp-section__divider {
    width: 100%; height: 1px;
    background: rgba(0,0,0,0.07);
    margin-top: 48px;
}

/* contact box */
.pp-contact {
    margin-top: 56px;
    background: #191c4f;
    border-radius: 6px;
    padding: 40px 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.pp-contact__text h4 {
    /* font-family: 'Cormorant Garamond', Georgia, serif; */
    font-size: 24px;
    font-weight: 600;
    color: white;
    margin-bottom: 6px;
}
.pp-contact__text p {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
}
.pp-contact__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e91d39;
    color: white;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    white-space: nowrap;
    transition: background 0.2s;
    flex-shrink: 0;
}
.pp-contact__btn:hover { background: #c91630; color: white; }

@media (max-width: 768px) {
    .pp-hero    { padding: 80px 20px 56px; }
    .pp-body__inner { padding: 0 20px; }
    .pp-body    { padding: 64px 0 80px; }
    .pp-section__text,
    .pp-section__list { padding-left: 0; }
    .pp-contact { padding: 28px 24px; }
}


/* Team */
.ilst-section {
    background: #191c4f;
    padding: 80px 0 90px;
    z-index: 1;
}
.ilst-header {
    text-align: center;
    margin-bottom: 50px;
}
.ilst-pre {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 12px;
}
.ilst-heading {
    /* font-family: 'Cormorant Garamond', Georgia, serif; */
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    line-height: 1.1;
}
.ilst-heading em {
    font-style: italic;
    font-weight: 700;
}

/* card */
.ilst-card {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}
.ilst-card__img-wrap {
    position: relative;
    overflow: hidden;
    display: block;
}
.ilst-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.ilst-card:hover .ilst-card__img-wrap img {
    transform: scale(1.05);
}
/* dark gradient over bottom of image */
.ilst-card__img-wrap::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 75%;
    background: linear-gradient(to top, rgba(5,6,25,1) 0%, rgba(5,6,25,0.85) 40%, rgba(5,6,25,0.4) 70%, transparent 100%);
    pointer-events: none;
}
/* name + role sit ON the image at the bottom */
.ilst-card__info {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 20px 18px 22px;
    z-index: 2;
}
.ilst-card__role {
    display: block;
    font-size: 11px;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
    margin-bottom: 6px;
    line-height: 1.45;
}
.ilst-card__name {
    display: block;
    /* font-family: 'Cormorant Garamond', Georgia, serif; */
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    line-height: 1.2;
    transition: color 0.2s;
}
.ilst-card__name:hover { color: #e91d39; }

/* red bottom border slides up on hover */
.ilst-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: #e91d39;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
    z-index: 3;
}
.ilst-card:hover::after { transform: scaleX(1); }

/* view all btn */
.ilst-footer {
    text-align: center;
    margin-top: 50px;
}
.ilst-footer .ilst-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    padding: 14px 34px;
    border: 1.5px solid rgba(255,255,255,0.3);
    border-radius: 3px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: background 0.25s, border-color 0.25s;
}
.ilst-footer .ilst-btn:hover {
    background: #e91d39;
    border-color: #e91d39;
    color: #ffffff;
}
.ilst-btn svg {
    width: 13px; height: 13px;
    stroke: currentColor; fill: none;
    transition: transform 0.2s;
}
.ilst-btn:hover svg { transform: translateX(4px); }

/* fade-up on scroll */
.ilst-card {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1),
                transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.ilst-card.ilst-visible { opacity: 1; transform: translateY(0); }
.ilst-card:nth-child(2) { transition-delay: 0.1s; }
.ilst-card:nth-child(3) { transition-delay: 0.2s; }
.ilst-card:nth-child(4) { transition-delay: 0.3s; }


/* ── WIDGET WRAP ── */
#ilsWidget {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 99999;
    font-family: 'Sora', sans-serif;
}

/* ── TRIGGER BUTTON ── */
#ilsWidgetBtn {
    width: 60px; height: 60px;
    background: #191c4f;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 28px rgba(25,28,79,0.5);
    transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
    position: relative;
    color: white;
    outline: none;
}
#ilsWidgetBtn:hover {
    background: #e91d39;
    transform: scale(1.08);
    box-shadow: 0 8px 32px rgba(233,29,57,0.5);
}
#ilsWidgetBadge {
    position: absolute;
    top: 5px; right: 5px;
    width: 11px; height: 11px;
    background: #e91d39;
    border-radius: 50%;
    border: 2px solid #fff;
    animation: ilsBadgePulse 2s ease-in-out infinite;
}
@keyframes ilsBadgePulse {
    0%,100% { transform:scale(1); opacity:1; }
    50%      { transform:scale(1.4); opacity:0.6; }
}
@keyframes ilsSpin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* ── DRAWER ── */
#ilsDrawer {
    position: fixed;
    bottom: 96px;
    right: 28px;
    width: 360px;
    max-height: calc(100vh - 120px);
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.22);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(24px) scale(0.95);
    transform-origin: bottom right;
    pointer-events: none;
    transition: opacity 0.32s cubic-bezier(0.22,1,0.36,1),
                transform 0.32s cubic-bezier(0.22,1,0.36,1);
}
#ilsDrawer.ils-open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

/* ── HEAD (fixed inside drawer) ── */
.ilsd-head {
    background: #191c4f;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.ilsd-head-left {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}
.ilsd-avatar {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    padding: 5px;
    border: 2px solid rgba(255,255,255,0.2);
}
.ilsd-avatar img {
    width: 100%; height: auto;
    object-fit: contain;
    display: block;
}
.ilsd-head-text { flex: 1; min-width: 0; }
.ilsd-brand {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ilsd-status {
    font-size: 11px;
    color: rgba(255,255,255,0.55);
    margin: 3px 0 0;
    display: flex;
    align-items: center;
    gap: 5px;
}
.ilsd-dot {
    width: 7px; height: 7px;
    background: #25d366;
    border-radius: 50%;
    flex-shrink: 0;
}

/* ── SCROLLABLE BODY ── */
.ilsd-body {
    overflow-y: auto;
    flex: 1;
    padding-bottom: 4px;
}
.ilsd-body::-webkit-scrollbar { width: 4px; }
.ilsd-body::-webkit-scrollbar-thumb { background: #dde0f0; border-radius: 4px; }

/* ── INTRO BUBBLE ── */
.ilsd-intro {
    background: #f0f2f8;
    margin: 14px 14px 0;
    border-radius: 12px 12px 12px 4px;
    padding: 11px 14px;
}
.ilsd-intro p {
    font-size: 13px;
    color: #3a3a5c;
    line-height: 1.65;
    margin: 0;
}

/* ── FORM ── */
#ilsStep1 { padding: 0 14px 16px; }
.ilsd-field { margin-top: 12px; }
.ilsd-field label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #191c4f;
    margin-bottom: 5px;
}
.ilsd-field label span { color: #e91d39; }
.ilsd-field input {
    width: 100%;
    padding: 10px 12px;
    border: 1.5px solid #dde0f0;
    border-radius: 8px;
    font-size: 13px;
    color: #1a1a2e;
    font-family: 'Sora', sans-serif;
    background: #f9faff;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    box-sizing: border-box;
}
.ilsd-field input:focus {
    border-color: #191c4f;
    background: #fff;
}
/* select wrapper */
.ilsd-select-wrap {
    position: relative;
}
.ilsd-select-wrap select {
    width: 100%;
    padding: 10px 36px 10px 12px;
    border: 1.5px solid #dde0f0;
    border-radius: 8px;
    font-size: 13px;
    color: #1a1a2e;
    font-family: 'Sora', sans-serif;
    background: #f9faff;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    box-sizing: border-box;
}
.ilsd-select-wrap select:focus { border-color: #191c4f; background: #fff; }
.ilsd-select-arrow {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}
/* error states */
.ilsd-field input.ils-err-field,
.ilsd-select-wrap select.ils-err-field { border-color: #e91d39 !important; }
.ilsd-err { font-size: 11px; color: #e91d39; margin-top: 4px; display: block; min-height: 15px; }

/* ── SUBMIT BUTTON ── */
#ilsSubmitBtn {
    width: 100%;
    margin-top: 16px;
    background: #191c4f;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 13px 20px;
    font-size: 13px;
    font-weight: 700;
    font-family: 'Sora', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s, transform 0.15s;
    letter-spacing: 0.3px;
}
#ilsSubmitBtn:hover { background: #e91d39; transform: translateY(-1px); }
#ilsSubmitBtn:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }

/* security note */
.ilsd-note {
    font-size: 11px;
    color: #aaaacc;
    text-align: center;
    margin: 10px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

/* ── SUCCESS ── */
#ilsStep2 { padding: 28px 18px 32px; }
.ilsd-success { text-align: center; }
.ilsd-success-icon {
    width: 66px; height: 66px;
    background: #191c4f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}
.ilsd-success h3 {
    font-size: 18px;
    font-weight: 700;
    color: #191c4f;
    margin: 0 0 10px;
}
.ilsd-success p {
    font-size: 13px;
    color: #6a6a8a;
    line-height: 1.7;
    margin: 0 0 22px;
}
#ilsDoneBtn {
    background: #191c4f;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 32px;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Sora', sans-serif;
    cursor: pointer;
    transition: background 0.2s;
}
#ilsDoneBtn:hover { background: #e91d39; }

/* ── RESPONSIVE ── */
@media (max-width: 480px) {
    #ilsWidget { bottom: 16px; right: 16px; }
    #ilsDrawer {
        right: 0;
        bottom: 80px;
        width: calc(100vw - 32px);
        max-height: calc(100vh - 110px);
    }
}
