/* ============================================================
   ANALYTICAL EDUPOINT — RESPONSIVE.CSS
   Mobile-first overrides. Breakpoints:
     xs  : ≤ 479px
     sm  : ≤ 575px
     md  : ≤ 767px
     lg  : ≤ 991px
     xl  : ≤ 1199px
   ============================================================ */

/* ────────────────────────────────────────────────────────────
   0. GLOBAL RESETS & BOX-SIZING
   ──────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

img { max-width: 100%; height: auto; }

/* Prevent horizontal scroll globally and ensure no top margins */
body, html {
  overflow-x: hidden;
  max-width: 100vw;
  margin: 0;
  padding: 0;
}


/* ────────────────────────────────────────────────────────────
   1. TOP BAR (phone / brochure / get-hired)
   ──────────────────────────────────────────────────────────── */
@media (max-width: 991px) {
  .w-e-b-p-u-l-s-e-topbar { margin: 0 !important; border: 0 !important; }
}

@media (max-width: 767px) {
  .w-e-b-p-u-l-s-e-topbar {
    display: none !important;
    margin: 0 !important;
    padding: 0 !important;
    height: 0 !important;
    border: 0 !important;
  }
}


/* ────────────────────────────────────────────────────────────
   2. STICKY HEADER / NAVBAR
   ──────────────────────────────────────────────────────────── */
@media (max-width: 991px) {
  .web-pulse-header {
    position: sticky !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 1050 !important;
    margin: 0 !important;
    padding-top: 0 !important;
    border: none !important;
    outline: none !important;
    background: #ffffff !important;
  }

  .webpulse-soluction {
    padding: 10px 0 !important;
    margin: 0 !important;
    border: none !important;
    outline: none !important;
    background: #ffffff !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
  }

  .web-pulse-header .webpulse-soluction.stricky-fixed {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    margin: 0 !important;
    border: none !important;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08) !important;
  }

  .webpulse-soluction .container { padding: 0 16px !important; }

  .webpulse-soluction .row {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    margin: 0 !important;
  }

  .webpulse-soluction .col-xs-9 {
    flex: 1 1 auto !important;
    width: auto !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
  }

  .webpulse-soluction .col-xs-3 {
    flex: 0 0 auto !important;
    width: auto !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
  }

  /* Logo positioning and text vertical centering */
  .w-p-s-logo {
    position: static !important;
    top: auto !important;
    left: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
  }

  .w-p-s-logo a {
    display: inline-flex !important;
    align-items: center !important;
    gap: 7px !important;
    text-decoration: none !important;
    line-height: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .w-p-s-logo .fa-bar-chart {
    font-size: 20px !important;
    color: #f97316 !important;
    display: inline-flex !important;
    align-items: center !important;
    margin: 0 !important;
  }

  .logo-title {
    font-size: 15px !important;
    font-weight: 800 !important;
    letter-spacing: 0.3px !important;
    color: #0a1628 !important;
    line-height: 1.2 !important;
    display: inline-block !important;
  }

  /* Hide desktop menu entirely */
  .web-p-u-l-s-e-menu { display: none !important; }

  .web-pulse-navigation-wps,
  .web-pulse-navigation-wps .navbar {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Hamburger button alignment */
  .navbar button#nav-offcanvas-trigger,
  .web-pulse-navigation-wps .navbar button {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: transparent !important;
    color: #0a1628 !important;
    border: none !important;
    border-radius: 6px !important;
    width: 36px !important;
    height: 36px !important;
    font-size: 20px !important;
    cursor: pointer !important;
    margin: 0 !important;
    padding: 0 !important;
  }
}

/* Offcanvas menu polish */
.nav-offcanvas-toggle {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 28px !important;
  height: 28px !important;
  margin-left: auto !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border-radius: 6px !important;
  padding: 0 !important;
  line-height: 1 !important;
  flex-shrink: 0 !important;
}

.nav-offcanvas-toggle i {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
  padding: 0 !important;
  font-size: 13px !important;
  line-height: 1 !important;
  color: #f97316 !important;
  width: 100% !important;
  height: 100% !important;
  text-align: center !important;
}

@media (max-width: 767px) {
  #nav-offcanvas { width: 85vw; max-width: 320px; }
  .nav-offcanvas-menu li a { font-size: 15px; padding: 12px 16px; }
}


/* ────────────────────────────────────────────────────────────
   3. HOMEPAGE HERO (hp-hero)
   ──────────────────────────────────────────────────────────── */
@media (max-width: 991px) {
  .hp-hero { padding: 60px 0 40px; }
  .hp-hero__copy { text-align: center; padding: 0 8px; }
  .hp-hero__title { font-size: 2rem; line-height: 1.25; }
  .hp-hero__sub { font-size: 0.95rem; }
  .hp-hero__ctas { justify-content: center; flex-wrap: wrap; gap: 10px; }
  .hp-hero__trust-row { justify-content: center; flex-wrap: wrap; gap: 14px; }
  .hp-hero__visual { display: none !important; }
  .hp-hero__badge { font-size: 0.78rem; padding: 5px 14px; }
}

@media (max-width: 575px) {
  .hp-hero { padding: 48px 0 32px; }
  .hp-hero__title { font-size: 1.65rem; }
  .hp-hero__ctas .hp-btn { width: 100%; justify-content: center; }
}


/* ────────────────────────────────────────────────────────────
   4. HOMEPAGE SCROLLING TICKER
   ──────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .hp-ticker__item { font-size: 0.82rem; }
}


/* ────────────────────────────────────────────────────────────
   5. HOMEPAGE COURSES SLIDER
   ──────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  /* Hide all slider prev/next arrows on mobile */
  .slick-prev,
  .slick-next,
  .slick-arrow,
  .cp-slider-btn,
  #hpCoursesSlider .slick-prev,
  #hpCoursesSlider .slick-next { display: none !important; }

  /* Course cards — natural flow, no overlap */
  .cp-related-card { min-height: unset; }
  /* Spacing between card text and buttons */
  .cp-related-card__actions { margin-top: 12px !important; }
}


/* ────────────────────────────────────────────────────────────
   6. WHY CHOOSE US (hp-why)
   ──────────────────────────────────────────────────────────── */
@media (max-width: 991px) {
  .hp-why__wrap { flex-direction: column !important; }
  .hp-why__photo-side { display: none !important; }
  .hp-why__content-side { width: 100% !important; padding: 0 20px 20px; }
  .hp-why__content-inner { padding-top: 0 !important; }
  .hp-why { padding-top: 0 !important; }
  .hp-why__features { grid-template-columns: 1fr !important; }
  .hp-why__cta-row {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 8px !important;
    width: 100% !important;
  }
  .hp-why__cta-row .hp-btn {
    flex: 1 1 0px !important;
    min-width: 0 !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 12px 6px !important;
    font-size: 0.78rem !important;
    letter-spacing: -0.2px !important;
    white-space: nowrap !important;
    border-radius: 50px !important;
  }
  .hp-why__cta-row .hp-btn i {
    font-size: 0.85rem !important;
    margin-right: 3px !important;
  }
}


/* ────────────────────────────────────────────────────────────
   7. ABOUT STRIP (hp-about-strip)
   ──────────────────────────────────────────────────────────── */
@media (max-width: 991px) {
  .hp-about-strip__cta-row {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 8px !important;
    width: 100% !important;
    margin-top: 20px !important;
  }
  .hp-about-strip__cta-row .hp-btn {
    flex: 1 1 0px !important;
    min-width: 0 !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 12px 6px !important;
    font-size: 0.76rem !important;
    letter-spacing: -0.2px !important;
    white-space: nowrap !important;
    border-radius: 50px !important;
  }
  .hp-about-strip__cta-row .hp-btn i {
    font-size: 0.82rem !important;
    margin-right: 3px !important;
  }
}

@media (max-width: 767px) {
  .hp-about-strip__title { font-size: 1.6rem; }
  .hp-about-strip__desc { font-size: 0.92rem; }
  .hp-about-strip__points { grid-template-columns: 1fr !important; }
  .hp-about-strip__img-wrap { display: none !important; }
}


/* ────────────────────────────────────────────────────────────
   8. STATS COUNTER BAR
   ──────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .hp-stats__grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 20px;
  }
  .hp-stats__divider { display: none !important; }
  .hp-stats__num { font-size: 1.8rem; }
  .hp-stats__label { font-size: 0.8rem; }
}


/* ────────────────────────────────────────────────────────────
   9. TESTIMONIALS SLIDER
   ──────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .hp-testimonials__slider .slick-prev { left: -5px; }
  .hp-testimonials__slider .slick-next { right: -5px; }
  .hp-tcard { padding: 20px 16px; }
  .hp-tcard__text { font-size: 0.88rem; }
}


/* ────────────────────────────────────────────────────────────
   10. PLACED STUDENTS GRID & CARDS (Mobile Polish)
   ──────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .hp-placed__grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }

  .hp-pcard {
    border-radius: 16px !important;
    padding-bottom: 16px !important;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08) !important;
  }

  .hp-pcard::before {
    height: 44px !important;
  }

  .hp-pcard__avatar {
    width: 62px !important;
    height: 62px !important;
    top: 12px !important;
    border-width: 3px !important;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.2), 0 0 0 2px #dbeafe !important;
  }

  .hp-pcard__avatar::after {
    width: 16px !important;
    height: 16px !important;
    font-size: 8px !important;
    line-height: 14px !important;
    bottom: 0 !important;
    right: 0 !important;
  }

  .hp-pcard__body {
    margin-top: 34px !important;
    padding: 0 8px !important;
  }

  .hp-pcard__placed-chip {
    padding: 2px 8px !important;
    font-size: 0.62rem !important;
    margin-bottom: 6px !important;
    letter-spacing: 0.03em !important;
  }

  .hp-pcard__placed-chip i {
    font-size: 0.6rem !important;
  }

  .hp-pcard__name {
    font-size: 0.88rem !important;
    font-weight: 800 !important;
    margin-bottom: 2px !important;
    line-height: 1.25 !important;
  }

  .hp-pcard__role {
    font-size: 0.7rem !important;
    color: #64748b !important;
    margin-bottom: 2px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    max-width: 100% !important;
  }

  .hp-pcard__company {
    font-size: 0.78rem !important;
    font-weight: 700 !important;
    color: #2563eb !important;
    margin-bottom: 8px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    max-width: 100% !important;
  }

  .hp-pcard__divider {
    width: 24px !important;
    height: 2px !important;
    margin: 0 auto 8px !important;
  }

  .hp-pcard__pkg {
    padding: 5px 12px !important;
    font-size: 0.75rem !important;
    font-weight: 800 !important;
    border-radius: 30px !important;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3) !important;
  }
}

@media (max-width: 380px) {
  .hp-placed__grid {
    gap: 8px !important;
  }

  .hp-pcard__body {
    padding: 0 4px !important;
  }

  .hp-pcard__name {
    font-size: 0.82rem !important;
  }

  .hp-pcard__pkg {
    padding: 4px 10px !important;
    font-size: 0.7rem !important;
  }
}


/* ────────────────────────────────────────────────────────────
   11. LEAD FORM SECTION
   ──────────────────────────────────────────────────────────── */
@media (max-width: 991px) {
  .hp-lead__inner { flex-direction: column !important; gap: 32px; }
  .hp-lead__left, .hp-lead__form-wrap { width: 100% !important; }
}

@media (max-width: 575px) {
  .hp-lead__title { font-size: 1.6rem; }
  .hp-lead__perks { grid-template-columns: 1fr 1fr !important; }
  .hp-lead__field input, .hp-lead__field select {
    font-size: 0.9rem;
    padding: 10px 12px;
  }
}


/* ────────────────────────────────────────────────────────────
   12. HIRING PARTNERS MARQUEE
   ──────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .hp-partner-logo img { height: 36px !important; }
}


/* ────────────────────────────────────────────────────────────
   13. FLOATING BUTTONS (WhatsApp, Go-to-top)
   ──────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  /* WhatsApp float — move to bottom-right, smaller */
  .whatsapp-float, a[href*="wa.me"].fixed, .whatsapp-btn-fixed {
    bottom: 70px !important;
    right: 16px !important;
    left: auto !important;
    width: 44px !important;
    height: 44px !important;
    font-size: 22px !important;
    z-index: 1040 !important;
  }

  /* Scroll-to-top button */
  #web-pulse-scroll-up {
    bottom: 16px !important;
    right: 16px !important;
    width: 36px !important;
    height: 36px !important;
    font-size: 16px !important;
    z-index: 1039 !important;
  }

  /* Push whatsapp up so it clears scroll-to-top */
  .whatsapp-float { bottom: 62px !important; }
}


/* ────────────────────────────────────────────────────────────
   14. COURSE PAGE HERO (cp-hero)
   ──────────────────────────────────────────────────────────── */
@media (max-width: 991px) {
  .cp-hero { padding: 50px 0 30px; }
  .cp-hero__copy { text-align: center; }
  .cp-hero__title { font-size: 1.9rem; line-height: 1.2; }
  .cp-hero__eyebrow-row { justify-content: center; flex-wrap: wrap; gap: 8px; }
  .cp-hero__rating-row { justify-content: center; flex-wrap: wrap; gap: 6px; }
  .cp-hero__pills { justify-content: center; flex-wrap: wrap; }
  .cp-hero__ctas {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 10px !important;
    justify-content: center !important;
  }
  .cp-hero__ctas .cp-cta-btn {
    flex: 1 !important;
    width: auto !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 12px 8px !important;
    font-size: 0.8rem !important;
    white-space: nowrap !important;
  }
  .cp-hero__trust-bar { justify-content: center; flex-wrap: wrap; gap: 10px; }
  .cp-hero__img-card { display: none !important; }
}

@media (max-width: 575px) {
  .cp-hero__title { font-size: 1.55rem; }
  .cp-pill { font-size: 0.75rem; padding: 4px 10px; }
}


/* ────────────────────────────────────────────────────────────
   15. COURSE INFO TOP CARD (dm-top-card)
   ──────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .dm-top-card__body {
    flex-direction: column !important;
  }
  .dm-top-card__img-col {
    width: 100% !important;
    max-width: 100%;
    margin-bottom: 20px;
  }
  .dm-top-card__img-col img { width: 100%; border-radius: 12px; }
  .dm-top-card__info { width: 100% !important; }
  .dm-top-card__title { font-size: 1.4rem; }
  .dm-top-card__rating { flex-wrap: wrap; gap: 6px; }
  .dm-top-card__batch { flex-wrap: wrap; gap: 10px; }
  .dm-top-card__batch-item { flex: 0 0 45%; }
  .dm-top-card__stats {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px;
  }
  .dm-top-card__tools .dm-top-card__tags { flex-wrap: wrap; gap: 6px; }
  /* CTA buttons layout: View Syllabus & Quick Contact in a row, WhatsApp full width below */
  .dm-top-card__info > div[style*="flex"] {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
  }
  .dm-top-card__cta {
    width: calc(50% - 4px) !important;
    text-align: center;
    justify-content: center;
    padding: 10px 6px !important;
    font-size: 0.8rem !important;
  }
  .dm-top-card__cta--whatsapp {
    width: 100% !important;
  }
}


/* ────────────────────────────────────────────────────────────
   16. CURRICULUM SECTION
   ──────────────────────────────────────────────────────────── */
@media (max-width: 991px) {
  .cp-curriculum--split { flex-direction: column !important; }
  .cp-curriculum__left { width: 100% !important; }
  .cp-curriculum__right { display: none !important; }
}

@media (max-width: 767px) {
  .cp-curriculum__stats {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 14px 10px !important;
    padding: 16px 12px !important;
  }
  .cp-curriculum__stat {
    text-align: center;
    align-items: center;
    justify-content: center;
  }
  .cp-curriculum__stat strong {
    font-size: 1.25rem !important;
    white-space: nowrap !important;
  }
  .cp-curriculum__stat span {
    font-size: 0.68rem !important;
    white-space: nowrap !important;
  }
  .cp-curriculum__stat-div { display: none !important; }
}

@media (max-width: 767px) {
  .cp-module__header {
    flex-wrap: nowrap !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 10px !important;
  }
  .cp-module__info {
    flex: 1 !important;
    min-width: 0 !important;
  }
  .cp-module__title-group {
    flex: 1 !important;
    min-width: 0 !important;
  }
  .cp-module__title {
    font-size: 0.88rem !important;
    white-space: normal !important;
    word-break: break-word !important;
  }
  .cp-module__right {
    flex-shrink: 0 !important;
    margin-left: auto !important;
  }
}


/* ────────────────────────────────────────────────────────────
   17. COURSE BENEFITS (cp-benefits-fw)
   ──────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .cp-benefits-fw__grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px;
  }
}

@media (max-width: 479px) {
  .cp-benefits-fw__grid { grid-template-columns: 1fr !important; }
}


/* ────────────────────────────────────────────────────────────
   18. RELATED COURSES SLIDER (cp-related-fw)
   ──────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .cp-slider-btn { display: none !important; }
  .cp-related-slider-wrap {
    overflow: hidden !important;
  }
  .cp-related-slider-track {
    overflow: hidden !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 10px 0 !important;
  }
  .cp-related-slider {
    display: flex !important;
    gap: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
  }
  .cp-related-card {
    flex: 0 0 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}


/* ────────────────────────────────────────────────────────────
   19. SEO LOCATION SECTION (dm-seo)
   ──────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .dm-seo-locations-grid {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }
  .dm-seo-primary-block {
    padding: 28px 20px !important;
    border-radius: 20px !important;
    text-align: center !important;
    box-shadow: 0 12px 36px rgba(15, 23, 42, 0.25) !important;
  }
  .dm-seo-primary-inner {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 16px !important;
  }
  .dm-seo-primary-icon {
    width: 58px !important;
    height: 58px !important;
    min-width: 58px !important;
    font-size: 1.5rem !important;
    border-radius: 16px !important;
    margin: 0 auto !important;
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.45) !important;
  }
  .dm-seo-primary-text {
    width: 100% !important;
    text-align: center !important;
  }
  .dm-seo-primary-text h3 {
    font-size: 1.3rem !important;
    line-height: 1.35 !important;
    margin-bottom: 12px !important;
    text-align: center !important;
  }
  .dm-seo-primary-text p {
    font-size: 0.9rem !important;
    line-height: 1.65 !important;
    margin-bottom: 20px !important;
    text-align: center !important;
    color: #94a3b8 !important;
  }
  .dm-seo-primary-cta {
    display: flex !important;
    width: 100% !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    padding: 13px 18px !important;
    font-size: 0.9rem !important;
    border-radius: 14px !important;
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4) !important;
  }
  .dm-seo-kw-cloud { gap: 8px; }
  .dm-seo-kw-cloud a {
    font-size: 0.78rem !important;
    padding: 5px 10px !important;
    white-space: normal !important;
    word-break: break-word !important;
  }
  .dm-seo-title { font-size: 1.4rem; }
}

@media (max-width: 575px) {
  .dm-courses-ticker__row { overflow-x: auto; padding-bottom: 6px; }
  .dm-ct-pill { font-size: 0.78rem; padding: 6px 12px; white-space: nowrap; }
}


/* ────────────────────────────────────────────────────────────
   20. SECTION HEADINGS — General
   ──────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .hp-section-head__title { font-size: 1.5rem; }
  .hp-section-head__sub { font-size: 0.9rem; }
  .hp-section-head { text-align: center; }
}


/* ────────────────────────────────────────────────────────────
   21. FOOTER
   ──────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  footer .row > div { margin-bottom: 24px; }
  footer .col-md-3, footer .col-md-4 { text-align: center; }
  footer ul { padding-left: 0; list-style: none; }
  footer .social-icons { justify-content: center; }
}


/* ────────────────────────────────────────────────────────────
   22. BREADCRUMB
   ──────────────────────────────────────────────────────────── */
@media (max-width: 575px) {
  .breadcrumb { font-size: 0.8rem; flex-wrap: wrap; }
  .breadcrumb-item + .breadcrumb-item::before { padding: 0 4px; }
}


/* ────────────────────────────────────────────────────────────
   23. CONTACT PAGE
   ──────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .contact-hero, .contact-form-wrap { padding: 24px 16px; }
  .contact-info-grid {
    grid-template-columns: 1fr !important;
  }
}


/* ────────────────────────────────────────────────────────────
   24. ABOUT PAGE
   ──────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .about-hero__title { font-size: 1.7rem; }
  .about-stats-grid { grid-template-columns: repeat(2, 1fr) !important; }
}


/* ────────────────────────────────────────────────────────────
   25. CAREER / PLACEMENT PAGE (cp-hero)
   ──────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .cp-hero {
    padding: 36px 0 30px !important;
  }
  .cp-hero__inner {
    text-align: center !important;
  }
  .cp-eyebrow {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 11px !important;
    padding: 5px 14px !important;
    margin: 0 auto 14px !important;
  }
  .cp-hero__title {
    font-size: 1.75rem !important;
    line-height: 1.25 !important;
    text-align: center !important;
    margin: 0 0 14px !important;
  }
  .cp-hero__title br {
    display: none !important;
  }
  .cp-hero__sub {
    font-size: 0.9rem !important;
    line-height: 1.65 !important;
    text-align: center !important;
    margin: 0 auto 20px !important;
    color: rgba(255, 255, 255, 0.85) !important;
    max-width: 100% !important;
  }
  .cp-hero__badges {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    margin: 0 auto 24px !important;
  }
  .cp-hero__badge {
    font-size: 0.76rem !important;
    padding: 6px 12px !important;
    gap: 6px !important;
    border-radius: 30px !important;
    flex: 0 0 auto !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
  }
  .cp-hero__ctas {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    gap: 8px !important;
    width: 100% !important;
    margin-bottom: 20px !important;
  }
  .cp-hero__ctas .cp-btn {
    flex: 1 1 0px !important;
    min-width: 0 !important;
    justify-content: center !important;
    padding: 11px 6px !important;
    font-size: 0.76rem !important;
    letter-spacing: -0.2px !important;
    white-space: nowrap !important;
    text-align: center !important;
    gap: 4px !important;
    border-radius: 50px !important;
  }
  .cp-hero__ctas .cp-btn i {
    font-size: 0.8rem !important;
  }
  .cp-hero__stats {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 16px 12px !important;
    margin-top: 24px !important;
    padding-top: 20px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
    text-align: center !important;
    width: 100% !important;
  }
  .cp-hero__stats > div:not(.cp-hero__stat-sep) {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 6px 0 !important;
  }
  .cp-hero__stat-sep {
    display: none !important;
  }
  .cp-hero__stat-num {
    font-size: 1.5rem !important;
    font-weight: 800 !important;
    color: #f97316 !important;
    line-height: 1 !important;
  }
  .cp-hero__stat-lbl {
    font-size: 0.72rem !important;
    color: rgba(255, 255, 255, 0.65) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    margin-top: 4px !important;
  }
  /* About Placement Program Section Mobile Alignment */
  .cp-about-content {
    padding-left: 10px !important;
    padding-right: 10px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .cp-about-content .cp-section-tag {
    align-self: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .cp-about-content h2 {
    text-align: center !important;
    font-size: 1.5rem !important;
    line-height: 1.3 !important;
    margin: 12px 0 16px !important;
  }
  .cp-about-content p {
    text-align: left !important;
    font-size: 0.92rem !important;
    line-height: 1.7 !important;
    word-break: normal !important;
    overflow-wrap: break-word !important;
  }
  .cp-about-btn {
    align-self: center !important;
    margin: 10px auto 0 !important;
    display: inline-flex !important;
    justify-content: center !important;
    text-align: center !important;
  }
  /* Placement Track Record Card - 2 Columns on Mobile */
  .cp-track-card {
    padding: 24px 18px !important;
    min-height: auto !important;
  }
  .cp-track-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px 10px !important;
  }
  .cp-track-item {
    padding: 12px 10px !important;
    gap: 10px !important;
    border-bottom: none !important;
    background: rgba(255, 255, 255, 0.04) !important;
    border-radius: 14px !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    flex-direction: column !important;
    align-items: flex-start !important;
  }
  .cp-track-accent, .cp-track-arrow {
    display: none !important;
  }
  .cp-track-icon {
    width: 36px !important;
    height: 36px !important;
    border-radius: 10px !important;
  }
  .cp-track-icon i {
    font-size: 15px !important;
  }
  .cp-track-num {
    font-size: 1.25rem !important;
    line-height: 1.1 !important;
  }
  /* Placement Process Steps - Redesigned Timeline Flow on Mobile */
  .cp-steps {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    position: relative !important;
    padding-left: 50px !important;
    margin-top: 20px !important;
  }
  .cp-steps::before {
    content: '' !important;
    display: block !important;
    position: absolute !important;
    top: 22px !important;
    bottom: 22px !important;
    left: 19px !important;
    right: auto !important;
    width: 2px !important;
    height: auto !important;
    background: linear-gradient(180deg, #f97316 0%, #4f46e5 100%) !important;
    z-index: 1 !important;
  }
  .cp-step {
    display: flex !important;
    flex-direction: column !important;
    text-align: left !important;
    padding: 14px 16px !important;
    background: #ffffff !important;
    border-radius: 14px !important;
    border: 1.5px solid #e2e8f0 !important;
    box-shadow: 0 4px 14px rgba(30, 58, 95, 0.05) !important;
    position: relative !important;
    z-index: 2 !important;
    flex: 1 1 auto !important;
  }
  .cp-step__icon {
    position: absolute !important;
    left: -50px !important;
    top: 12px !important;
    width: 40px !important;
    height: 40px !important;
    font-size: 15px !important;
    border-width: 2px !important;
    margin: 0 !important;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.25) !important;
    background: #fff !important;
    flex-shrink: 0 !important;
  }
  .cp-step__num {
    top: -5px !important;
    right: -5px !important;
    width: 18px !important;
    height: 18px !important;
    font-size: 9px !important;
    border-width: 1.5px !important;
  }
  .cp-step h5 {
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    color: #1e3a5f !important;
    margin: 0 0 4px !important;
  }
  .cp-step p {
    font-size: 0.82rem !important;
    color: #64748b !important;
    line-height: 1.5 !important;
    margin: 0 !important;
  }
  /* General Section Headings Centering on Mobile */
  .cp-section-head {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    margin-bottom: 28px !important;
  }
  .cp-section-tag {
    align-self: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .cp-section-title {
    text-align: center !important;
    font-size: 1.5rem !important;
    line-height: 1.25 !important;
    margin-bottom: 10px !important;
  }
  .cp-section-sub {
    text-align: center !important;
    font-size: 0.88rem !important;
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 100% !important;
  }
  /* Placement Enquiry Left Section Mobile Centering */
  .cp-enq-left {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }
  .cp-enq-left .cp-section-tag {
    align-self: center !important;
    margin: 0 auto 14px !important;
  }
  .cp-enq-left h2, .cp-enq__info {
    text-align: center !important;
    font-size: 1.5rem !important;
    line-height: 1.25 !important;
    margin: 0 0 12px !important;
  }
  .cp-enq-left h2 br {
    display: none !important;
  }
  .cp-enq-left p {
    text-align: center !important;
    font-size: 0.88rem !important;
    line-height: 1.6 !important;
  }
  .cp-enq__contact {
    width: 100% !important;
    text-align: left !important;
  }

  .career-filter-bar { flex-wrap: wrap; gap: 8px; }
  .career-filter-bar button { flex: 0 0 calc(50% - 4px); font-size: 0.82rem; }
  .career-grid { grid-template-columns: 1fr !important; }
}


/* ────────────────────────────────────────────────────────────
   26. MODAL (enrollment / demo modal / lead modal)
   ──────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .dm-enroll__dialog {
    margin: 10px !important;
    max-width: calc(100vw - 20px) !important;
  }
  .dm-enroll__content { flex-direction: column !important; }
  .dm-enroll__left { display: none !important; }
  .dm-enroll__right { width: 100% !important; padding: 24px 16px !important; }

  /* Generic Bootstrap modals */
  .modal-dialog { margin: 10px; }
  .modal-content { border-radius: 12px; }

  /* Nav demo modal left side hide on mobile */
  .modal-left-panel { display: none !important; }
  .modal-right-panel { width: 100% !important; padding: 20px !important; }

  /* Lead Capture Modal (#myModal) Mobile Polish */
  #myModal .modal-dialog {
    margin: 12px auto !important;
    max-width: calc(100% - 24px) !important;
    width: calc(100% - 24px) !important;
    position: relative !important;
  }

  #myModal .lead-modal-content {
    flex-direction: column !important;
    max-height: calc(100vh - 30px) !important;
    border-radius: 20px !important;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3) !important;
    overflow: hidden !important;
  }

  #myModal .lead-modal-hero {
    width: 100% !important;
    flex-shrink: 0 !important;
    padding: 14px 16px !important;
    min-height: auto !important;
    background: linear-gradient(135deg, #0d1b6e 0%, #1565c0 55%, #0288d1 100%) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    position: relative !important;
    overflow: hidden !important;
  }

  #myModal .lead-modal-hero-top {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin-bottom: 0 !important;
    padding-right: 36px !important;
  }

  #myModal .lead-modal-avatar {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    margin: 0 !important;
    border-width: 1.5px !important;
    flex-shrink: 0 !important;
  }

  #myModal .lead-modal-head-text {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    min-width: 0 !important;
  }

  #myModal .lead-modal-brand {
    font-size: 0.58rem !important;
    letter-spacing: 0.8px !important;
    margin-bottom: 1px !important;
    white-space: nowrap !important;
  }

  #myModal .lead-modal-tagline {
    font-size: 0.95rem !important;
    font-weight: 800 !important;
    line-height: 1.15 !important;
    letter-spacing: -0.2px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  #myModal .lead-modal-tagline br {
    display: none !important;
  }

  #myModal .lead-modal-features {
    display: none !important;
  }

  #myModal .lead-modal-trust {
    border-top: none !important;
    padding-top: 4px !important;
    margin-top: 6px !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
  }

  #myModal .lead-modal-trust-stars {
    font-size: 0.72rem !important;
    letter-spacing: 1px !important;
    margin-bottom: 0 !important;
  }

  #myModal .lead-modal-trust-text {
    font-size: 0.65rem !important;
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 600 !important;
  }

  #myModal .lead-modal-close {
    position: absolute !important;
    top: 12px !important;
    right: 12px !important;
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.22) !important;
    border: 1px solid rgba(255, 255, 255, 0.35) !important;
    color: #ffffff !important;
    font-size: 1.1rem !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
    z-index: 15 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
  }

  #myModal .lead-modal-close:hover,
  #myModal .lead-modal-close:active {
    background: #ef4444 !important;
    border-color: #ef4444 !important;
    color: #ffffff !important;
  }

  #myModal .lead-modal-form-panel {
    padding: 16px 18px 14px !important;
    border-left: none !important;
    overflow-y: auto !important;
    flex: 1 !important;
    background: #ffffff !important;
  }

  #myModal .lead-modal-form-title {
    font-size: 1.05rem !important;
    font-weight: 800 !important;
    color: #0d1b6e !important;
    margin-bottom: 2px !important;
    white-space: normal !important;
  }

  #myModal .lead-modal-form-subtitle {
    font-size: 0.76rem !important;
    color: #64748b !important;
    margin-bottom: 12px !important;
    padding-bottom: 8px !important;
    border-bottom: 1px solid #f1f5f9 !important;
    line-height: 1.35 !important;
  }

  #myModal .lead-modal-form .lm-field {
    margin-bottom: 8px !important;
  }

  #myModal .lead-modal-form .lm-field .lm-input {
    padding: 11px 12px 4px 12px !important;
    font-size: 0.85rem !important;
    border-radius: 8px !important;
    border: 1.5px solid #cbd5e1 !important;
    height: 44px !important;
  }

  #myModal .lead-modal-form .lm-field .lm-input:focus {
    border-color: #2563eb !important;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12) !important;
  }

  #myModal .lead-modal-form .lm-field label {
    font-size: 0.875rem !important;
    left: 12px !important;
  }

  #myModal .lead-modal-form .lm-field .lm-input:focus + label,
  #myModal .lead-modal-form .lm-field .lm-input:not(:placeholder-shown) + label {
    top: 4px !important;
    font-size: 0.56rem !important;
  }

  #myModal .lead-modal-captcha-row {
    gap: 8px !important;
    margin-bottom: 10px !important;
  }

  #myModal .lead-captcha-badge {
    padding: 6px 10px !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    border-radius: 8px !important;
    background: #eff6ff !important;
    color: #1d4ed8 !important;
    border: 1.5px solid #bfdbfe !important;
  }

  #myModal .lead-modal-form .lm-submit-btn {
    padding: 11px 14px !important;
    font-size: 0.92rem !important;
    font-weight: 700 !important;
    border-radius: 10px !important;
    margin-top: 4px !important;
    height: 46px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
}


/* ────────────────────────────────────────────────────────────
   27. COURSE TAG PILLS in hero eyebrow
   ──────────────────────────────────────────────────────────── */
@media (max-width: 575px) {
  .cp-hero__eyebrow { font-size: 0.75rem; padding: 5px 12px; }
  .cp-hero__live-badge { font-size: 0.72rem; padding: 4px 10px; }
  .cp-hero__rating-num { font-size: 1rem; }
  .cp-hero__enrolled { font-size: 0.8rem; }
}


/* ────────────────────────────────────────────────────────────
   28. ADVANCED EXCEL TOP CARD (dm-top-card stats bar)
   ──────────────────────────────────────────────────────────── */
@media (max-width: 575px) {
  .dm-top-card__stats {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px;
    padding: 16px !important;
  }
  .dm-stat-item { flex-direction: column; text-align: center; gap: 6px; }
  .dm-stat-item strong { font-size: 1rem; }
  .dm-stat-item span { font-size: 0.7rem; }
}


/* ────────────────────────────────────────────────────────────
   29. STICKY MOBILE CTA BAR (bottom of course pages)
   ──────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  /* Floating WhatsApp button above mobile sticky bar */
  .whatapp_btn {
    display: flex !important;
    position: fixed !important;
    left: 16px !important;
    bottom: 80px !important;
    width: 48px !important;
    height: 48px !important;
    background: #25d366 !important;
    color: #ffffff !important;
    border-radius: 50% !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 1035 !important;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.5) !important;
    text-decoration: none !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .whatapp_btn i {
    font-size: 26px !important;
    color: #ffffff !important;
    line-height: 1 !important;
  }

  /* Scroll to top button position */
  #web-pulse-scroll-up {
    bottom: 80px !important;
    z-index: 1035 !important;
  }

  /* Ensure sticky bottom bar doesn't overlap floating buttons */
  .cp-sticky-cta, .sticky-bottom-bar, .mobile_stickybar {
    z-index: 1030 !important;
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }
}


/* ────────────────────────────────────────────────────────────
   30. SECTION PADDING — tighten on mobile
   ──────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  section { padding-top: 40px !important; padding-bottom: 40px !important; }
  .container { padding-left: 16px !important; padding-right: 16px !important; }
}

@media (max-width: 479px) {
  section { padding-top: 30px !important; padding-bottom: 30px !important; }
}


/* ────────────────────────────────────────────────────────────
   31. TYPOGRAPHY — fluid scaling
   ──────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  h1 { font-size: clamp(1.5rem, 5vw, 2.2rem) !important; }
  h2 { font-size: clamp(1.25rem, 4.5vw, 1.8rem) !important; }
  h3 { font-size: clamp(1.1rem, 4vw, 1.5rem) !important; }
  p  { font-size: 0.93rem; line-height: 1.65; }
}


/* ────────────────────────────────────────────────────────────
   32. BUTTONS — full width on small screens
   ──────────────────────────────────────────────────────────── */
@media (max-width: 479px) {
  .hp-btn {
    padding: 10px 18px !important;
    font-size: 0.88rem !important;
  }
  .cp-cta-btn,
  .dm-top-card__cta {
    padding: 10px 6px !important;
    font-size: 0.76rem !important;
  }
}


/* ────────────────────────────────────────────────────────────
   33. COURSE PAGE — TOP FEATURES LIST
   ──────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .dm-top-card__features {
    columns: 1 !important;
    -webkit-columns: 1 !important;
  }
  .dm-top-card__features li { font-size: 0.88rem; margin-bottom: 6px; }
}


/* ────────────────────────────────────────────────────────────
   34. HOMEPAGE SECTION HEADS
   ──────────────────────────────────────────────────────────── */
@media (max-width: 575px) {
  .hp-section-head__tag {
    font-size: 0.75rem;
    padding: 4px 14px;
  }
}


/* ────────────────────────────────────────────────────────────
   35. LOGO ON VERY SMALL SCREENS
   ──────────────────────────────────────────────────────────── */
@media (max-width: 360px) {
  .logo-title { font-size: 12px !important; }
  .w-p-s-logo .fa-bar-chart { font-size: 15px !important; }
}
