.validate {
  margin-top: 5%;
}

.inbtn {
  margin-top: 3.5%;
}

.logo-title {
  color: #044b96;
  font-size: 1.25rem;
  display: inline-block;
  padding-top: 9px;
}

.footer-logo {
  width: 161px;
  display: block;
}

.dmimg {
  position: absolute;
  right: 20px;
  top: 0;
  width: 40%;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .dmimg {
    display: none;
  }

  /* Prevent any decorative shapes / bg circles from causing horizontal scroll */
  html,
  body {
    overflow-x: hidden;
    max-width: 100%;
  }
}

/* ============================================================
   ANALYTICAL EDUPOINT — PREMIUM HOMEPAGE v2 DESIGN SYSTEM
   ============================================================ */

/* Inter font loaded via <link> in HTML head for better performance */

:root {
  --hp-navy: #0a1628;
  --hp-navy2: #0f2042;
  --hp-blue: #2563eb;
  --hp-blue2: #1d4ed8;
  --hp-orange: #f97316;
  --hp-orange2: #ea580c;
  --hp-green: #16a34a;
  --hp-purple: #7c3aed;
  --hp-teal: #0891b2;
  --hp-red: #dc2626;
  --hp-pink: #db2777;
  --hp-yellow: #ca8a04;
  --hp-indigo: #4338ca;
  --hp-white: #ffffff;
  --hp-light: #f1f5f9;
  --hp-border: #e2e8f0;
  --hp-text: #1e293b;
  --hp-muted: #64748b;
  --hp-radius: 14px;
  --hp-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --hp-shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* ── FLUID TYPOGRAPHY BASE ──
   Scales from 14px on small screens up to 16px on desktop.
   No rem in the formula — avoids circular reference on html element.
   At 1280px: clamp(14px, 12.8px+3.2px=16px, 16px) = 16px ✓ */
html {
  font-size: clamp(14px, calc(12px + 0.25vw), 16px);
}

body {
  font-family: 'Inter', 'Poppins', sans-serif;
}

/* ===== SHARED UTILITIES ===== */
.hp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none !important;
  transition: all 0.25s cubic-bezier(.4, 0, .2, 1);
  border: 2px solid transparent;
  cursor: pointer;
  letter-spacing: 0.02em;
}

.hp-btn--primary {
  background: linear-gradient(135deg, var(--hp-orange) 0%, var(--hp-orange2) 100%);
  color: #fff !important;
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}

.hp-btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(249, 115, 22, 0.5);
  color: #fff !important;
}

.hp-btn--outline {
  background: transparent;
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.5);
}

.hp-btn--outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  color: #fff !important;
  transform: translateY(-3px);
}

.hp-btn--outline-dark {
  background: transparent;
  color: var(--hp-navy) !important;
  border: 2px solid var(--hp-navy);
}

.hp-btn--outline-dark:hover {
  background: var(--hp-navy);
  color: #fff !important;
  transform: translateY(-3px);
}

.hp-btn--full {
  width: 100%;
  justify-content: center;
}

.mt-20 {
  margin-top: 20px !important;
}

/* Section header */
.hp-section-head {
  text-align: center;
  margin-bottom: 0;
}

.hp-section-head__tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--hp-blue) 0%, var(--hp-indigo) 100%);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.hp-section-head__tag--light {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.hp-section-head__title {
  font-size: 2.2rem;
  font-weight: 650;
  color: var(--hp-text);
  line-height: 1.2;
  margin-bottom: 12px;
}

.hp-section-head__title span {
  color: var(--hp-blue);
}

.hp-section-head__sub {
  font-size: 1.05rem;
  color: var(--hp-muted);
  max-width: 580px;
  margin: 0 auto;
}

/* ===== 1. HERO ===== */
.hp-hero {
  position: relative;
  background: linear-gradient(135deg, var(--hp-navy) 0%, #0d1f3c 50%, #0a1628 100%);
  padding: 80px 0 70px;
  overflow: hidden;
  min-height: 580px;
  display: flex;
  align-items: center;
}

.hp-hero__bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hp-hero__circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.07;
}

.hp-hero__circle--1 {
  width: 500px;
  height: 500px;
  background: var(--hp-blue);
  top: -150px;
  right: -100px;
}

.hp-hero__circle--2 {
  width: 300px;
  height: 300px;
  background: var(--hp-orange);
  bottom: -80px;
  left: -80px;
}

.hp-hero__circle--3 {
  width: 200px;
  height: 200px;
  background: var(--hp-blue);
  top: 50%;
  left: 38%;
  transform: translateY(-50%);
}

.hp-hero__copy {
  padding-right: 40px;
  position: relative;
  z-index: 2;
}

.hp-hero__eyebrow {
  margin-bottom: 18px;
}

.hp-hero__badge {
  display: inline-block;
  background: rgba(249, 115, 22, 0.15);
  border: 1px solid rgba(249, 115, 22, 0.4);
  color: var(--hp-orange);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.hp-hero__title {
  font-size: 3rem;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 18px;
}

.hp-hero__title--accent {
  color: var(--hp-orange);
}

.hp-hero__title--highlight {
  background: linear-gradient(135deg, #60a5fa, #818cf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hp-hero__sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 540px;
}

.hp-hero__sub strong {
  color: #ffffff;
}

.hp-hero__ctas {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 35px;
}

.hp-hero__trust-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.hp-hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

.hp-hero__trust-item i {
  color: var(--hp-orange);
  font-size: 1rem;
}

.hp-hero__trust-item strong {
  color: #fff;
}

.hp-hero__visual {
  position: relative;
  z-index: 2;
}

.hp-hero__img-card {
  position: relative;
  border-radius: 20px;
  overflow: visible;
}

.hp-hero__img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  display: block;
}

.hp-floatcard {
  position: absolute;
  background: #fff;
  border-radius: 12px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  z-index: 10;
  min-width: 155px;
  animation: hp-float 3s ease-in-out infinite alternate;
}

.hp-floatcard i {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  background: linear-gradient(135deg, var(--hp-blue), var(--hp-indigo));
  color: #fff;
  flex-shrink: 0;
}

.hp-floatcard div strong {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--hp-text);
}

.hp-floatcard div span {
  font-size: 0.6875rem;
  color: var(--hp-muted);
}

.hp-floatcard--tl {
  top: -20px;
  left: -25px;
}

.hp-floatcard--br {
  bottom: 30px;
  right: -25px;
  animation-delay: 1s;
}

.hp-floatcard--bl {
  bottom: -20px;
  left: 15px;
  animation-delay: 0.5s;
}

@keyframes hp-float {
  from {
    transform: translateY(0px);
  }

  to {
    transform: translateY(-8px);
  }
}

/* ===== HERO — MOBILE RESPONSIVE ===== */
@media (max-width: 767px) {
  .hp-hero {
    padding: 48px 0 44px;
    min-height: auto;
    overflow-x: hidden;
  }

  /* Clip decorative bg circles so they don't cause horizontal scroll */
  .hp-hero__bg-shapes {
    overflow: hidden;
  }

  .hp-hero__circle--1 {
    width: 260px;
    height: 260px;
    top: -80px;
    right: -80px;
  }

  .hp-hero__circle--2 {
    width: 180px;
    height: 180px;
    bottom: -50px;
    left: -50px;
  }

  .hp-hero__circle--3 {
    display: none;
  }

  /* Left copy column */
  .hp-hero__copy {
    padding-right: 0;
    padding-left: 0;
    text-align: center;
  }

  /* Badge */
  .hp-hero__eyebrow {
    margin-bottom: 14px;
  }

  .hp-hero__badge {
    font-size: 0.7rem;
    padding: 5px 14px;
  }

  /* Heading — scale down from 3rem */
  .hp-hero__title {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 14px;
  }

  /* Subtitle */
  .hp-hero__sub {
    font-size: 0.95rem;
    max-width: 100%;
    margin-bottom: 24px;
    line-height: 1.65;
  }

  /* CTA buttons — stack vertically, full width */
  .hp-hero__ctas {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
    align-items: center;
  }

  .hp-hero__ctas .hp-btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
    justify-content: center;
  }

  /* Trust row — center and allow wrap */
  .hp-hero__trust-row {
    justify-content: center;
    gap: 16px;
  }

  .hp-hero__trust-item {
    font-size: 0.75rem;
    gap: 6px;
  }
}

/* Extra small phones */
@media (max-width: 400px) {
  .hp-hero__title {
    font-size: 1.75rem;
  }

  .hp-hero__sub {
    font-size: 0.875rem;
  }

  .hp-hero__trust-row {
    gap: 10px;
  }
}


/* ===== 2. TICKER ===== */
.hp-ticker {
  background: linear-gradient(90deg, var(--hp-blue) 0%, var(--hp-indigo) 100%);
  overflow: hidden;
  height: 46px;
  display: flex;
  align-items: center;
}

.hp-ticker__track {
  width: 100%;
  overflow: hidden;
}

.hp-ticker__items {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: hp-ticker-scroll 30s linear infinite;
}

.hp-ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.hp-ticker__item i {
  color: #fbbf24;
  font-size: 0.875rem;
}

.hp-ticker__sep {
  color: rgba(255, 255, 255, 0.4);
  padding: 0 6px;
}

@keyframes hp-ticker-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ===== 3. STATS ===== */
.hp-stats {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.hp-stats::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(56, 189, 248, 0.1), transparent 60%);
  pointer-events: none;
}

.hp-stats__grid {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.hp-stats__item {
  text-align: center;
  padding: 30px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hp-stats__item:hover {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hp-stats__icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #38bdf8, #3b82f6);
  border-radius: 50%;
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 16px;
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
  transition: transform 0.4s ease;
}

.hp-stats__item:hover .hp-stats__icon {
  transform: scale(1.1) rotate(5deg);
}

.hp-stats__num {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  letter-spacing: -1px;
}

.hp-stats__label {
  font-size: 0.8rem;
  color: #94a3b8;
  font-weight: 600;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.hp-stats__divider {
  display: none;
}

@media (max-width: 991px) {
  .hp-stats__grid {
    flex-wrap: wrap;
  }

  .hp-stats__item {
    flex: 0 0 calc(50% - 12px);
  }
}

@media (max-width: 576px) {
  .hp-stats__grid {
    gap: 16px;
  }

  .hp-stats__item {
    flex: 0 0 100%;
    padding: 24px;
  }
}

/* ===== 4. COURSES ===== */
.hp-courses {
  padding: 40px 0;
  background: var(--hp-light);
}

.hp-courses__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 1100px) {
  .hp-courses__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .hp-courses__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .hp-courses__grid {
    grid-template-columns: 1fr;
  }
}

.hp-ccard {
  position: relative;
  background: #fff;
  border-radius: var(--hp-radius);
  padding: 22px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none !important;
  border: 2px solid var(--hp-border);
  transition: all 0.28s cubic-bezier(.4, 0, .2, 1);
  overflow: hidden;
}

.hp-ccard::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  transition: width 0.25s ease;
}

.hp-ccard--blue::before {
  background: var(--hp-blue);
}

.hp-ccard--orange::before {
  background: var(--hp-orange);
}

.hp-ccard--purple::before {
  background: var(--hp-purple);
}

.hp-ccard--yellow::before {
  background: #d97706;
}

.hp-ccard--teal::before {
  background: var(--hp-teal);
}

.hp-ccard--indigo::before {
  background: var(--hp-indigo);
}

.hp-ccard--green::before {
  background: var(--hp-green);
}

.hp-ccard--red::before {
  background: var(--hp-red);
}

.hp-ccard--pink::before {
  background: var(--hp-pink);
}

.hp-ccard--dark::before {
  background: var(--hp-navy);
}

.hp-ccard:hover {
  transform: translateY(-6px);
  box-shadow: var(--hp-shadow-lg);
  border-color: transparent;
}

.hp-ccard__icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.hp-ccard:hover .hp-ccard__icon {
  transform: scale(1.1) rotate(-5deg);
}

.hp-ccard--blue .hp-ccard__icon {
  background: #eff6ff;
  color: var(--hp-blue);
}

.hp-ccard--orange .hp-ccard__icon {
  background: #fff7ed;
  color: var(--hp-orange);
}

.hp-ccard--purple .hp-ccard__icon {
  background: #f5f3ff;
  color: var(--hp-purple);
}

.hp-ccard--yellow .hp-ccard__icon {
  background: #fefce8;
  color: #d97706;
}

.hp-ccard--teal .hp-ccard__icon {
  background: #ecfeff;
  color: var(--hp-teal);
}

.hp-ccard--indigo .hp-ccard__icon {
  background: #eef2ff;
  color: var(--hp-indigo);
}

.hp-ccard--green .hp-ccard__icon {
  background: #f0fdf4;
  color: var(--hp-green);
}

.hp-ccard--red .hp-ccard__icon {
  background: #fef2f2;
  color: var(--hp-red);
}

.hp-ccard--pink .hp-ccard__icon {
  background: #fdf2f8;
  color: var(--hp-pink);
}

.hp-ccard--dark .hp-ccard__icon {
  background: #f1f5f9;
  color: var(--hp-navy);
}

.hp-ccard__body {
  flex: 1;
  min-width: 0;
}

.hp-ccard__title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--hp-text);
  margin: 0 0 4px;
  line-height: 1.3;
}

.hp-ccard__desc {
  font-size: 0.6875rem;
  color: var(--hp-muted);
  margin: 0;
  line-height: 1.4;
}

.hp-ccard__arrow {
  color: var(--hp-border);
  font-size: 0.875rem;
  transition: color 0.2s, transform 0.2s;
}

.hp-ccard:hover .hp-ccard__arrow {
  color: var(--hp-blue);
  transform: translateX(4px);
}

.hp-ccard__badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: linear-gradient(135deg, var(--hp-orange), var(--hp-orange2));
  color: #fff;
  font-size: 0.5625rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 50px;
}

.hp-ccard--orange .hp-ccard__badge {
  background: linear-gradient(135deg, var(--hp-blue), var(--hp-indigo));
}

.hp-ccard--view-all {
  background: linear-gradient(135deg, var(--hp-navy) 0%, #0d1f3c 100%);
  border-color: var(--hp-navy);
}

.hp-ccard--view-all .hp-ccard__title {
  color: #fff;
}

.hp-ccard--view-all .hp-ccard__desc {
  color: rgba(255, 255, 255, 0.6);
}

.hp-ccard--view-all .hp-ccard__arrow {
  color: var(--hp-orange);
  font-size: 1.25rem;
}

.hp-btn--whatsapp:hover {
  background-color: #20BA56 !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45) !important;
}

/* ===== 5. WHY US — VIEWPORT-FIT REDESIGN ===== */
.hp-why {
  position: relative;
  background: #f8fafc;
  overflow: hidden;
  height: 100vh;
  min-height: 580px;
  max-height: 860px;
}

/* 2-col: image | content */
.hp-why__wrap {
  display: grid;
  grid-template-columns: 44% 56%;
  height: 100%;
}

/* ── PHOTO SIDE ── */
.hp-why__photo-side {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.hp-why__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s ease;
}

.hp-why__photo-side:hover .hp-why__photo {
  transform: scale(1.03);
}

/* Gradient overlay */
.hp-why__photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(10, 22, 40, 0.08) 0%,
      rgba(10, 22, 40, 0.15) 45%,
      rgba(10, 22, 40, 0.80) 78%,
      rgba(10, 22, 40, 0.96) 100%);
  pointer-events: none;
}

/* Diagonal right-edge */
.hp-why__photo-side::after {
  content: '';
  position: absolute;
  top: 0;
  right: -1px;
  width: 60px;
  height: 100%;
  background: #f8fafc;
  clip-path: polygon(100% 0, 100% 100%, 0% 100%);
  z-index: 3;
}

/* Decorative circles */
.hp-why__deco {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
}

.hp-why__deco--1 {
  width: 140px;
  height: 140px;
  top: -40px;
  left: -40px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.25), transparent 70%);
}

.hp-why__deco--2 {
  width: 110px;
  height: 110px;
  bottom: 100px;
  right: 40px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.28), transparent 70%);
}

/* Badge */
.hp-why__badge--exp {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 4;
  background: rgba(10, 22, 40, 0.75);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(249, 115, 22, 0.5);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  animation: hp-float 4s ease-in-out infinite alternate;
}

.hp-why__badge-ring {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 3px solid var(--hp-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 650;
  color: var(--hp-orange);
  box-shadow: 0 0 0 5px rgba(249, 115, 22, 0.12);
}

.hp-why__badge--exp strong {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
}

.hp-why__badge--exp span {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.65);
}

/* Stats strip */
.hp-why__photo-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 55px;
  z-index: 4;
  background: rgba(10, 22, 40, 0.88);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 12px 16px;
}

.hp-why__strip-item {
  text-align: center;
}

.hp-why__strip-num {
  display: block;
  font-size: 1.15rem;
  font-weight: 650;
  color: var(--hp-orange);
  line-height: 1;
}

.hp-why__strip-lbl {
  display: block;
  font-size: 9px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 2px;
}

.hp-why__strip-div {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.15);
}

/* ── CONTENT SIDE ── */
.hp-why__content-side {
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  background: #f8fafc;
  height: 100%;
  box-sizing: border-box;
  overflow-y: auto;
}

/* Inner scroll container — centers content vertically */
.hp-why__content-inner {
  padding: 32px 32px 28px 26px;
  margin: auto 0;
  display: flex;
  flex-direction: column;
}

.hp-why__tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--hp-blue), var(--hp-indigo));
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 8px;
  width: fit-content;
}

.hp-why__title {
  font-size: 1.6rem;
  font-weight: 650;
  color: var(--hp-text);
  line-height: 1.2;
  margin-bottom: 5px;
}

.hp-why__title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--hp-blue), var(--hp-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hp-why__subtitle {
  font-size: 0.8rem;
  color: var(--hp-muted);
  line-height: 1.55;
  margin-bottom: 16px;
  max-width: 400px;
}

/* ── 2-COLUMN FEATURE GRID ── */
.hp-why__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
}

.hp-why__feat {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  background: #ffffff;
  border-left: 3px solid transparent;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}

.hp-why__feat:hover {
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.12);
  transform: translateY(-2px);
}

.hp-why__feat-icon--blue+.hp-why__feat-body~*,
.hp-why__feat:nth-child(1) {
  border-left-color: var(--hp-blue);
}

.hp-why__feat:nth-child(1) {
  border-left-color: #2563eb;
}

.hp-why__feat:nth-child(2) {
  border-left-color: #ea580c;
}

.hp-why__feat:nth-child(3) {
  border-left-color: #16a34a;
}

.hp-why__feat:nth-child(4) {
  border-left-color: #7c3aed;
}

.hp-why__feat:nth-child(5) {
  border-left-color: #0891b2;
}

.hp-why__feat:nth-child(6) {
  border-left-color: #dc2626;
}

/* Number badge — hidden */
.hp-why__feat-num {
  display: none;
}

/* Icon */
.hp-why__feat-icon {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  transition: transform 0.22s ease;
}

.hp-why__feat:hover .hp-why__feat-icon {
  transform: scale(1.1) rotate(-5deg);
}

.hp-why__feat-icon--blue {
  background: #eff6ff;
  color: #2563eb;
}

.hp-why__feat-icon--orange {
  background: #fff7ed;
  color: #ea580c;
}

.hp-why__feat-icon--green {
  background: #f0fdf4;
  color: #16a34a;
}

.hp-why__feat-icon--purple {
  background: #f5f3ff;
  color: #7c3aed;
}

.hp-why__feat-icon--teal {
  background: #ecfeff;
  color: #0891b2;
}

.hp-why__feat-icon--red {
  background: #fef2f2;
  color: #dc2626;
}

.hp-why__feat-body {
  flex: 1;
  min-width: 0;
  text-align: left;
}

.hp-why__feat-body h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--hp-text);
  margin: 0 0 2px;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
}

.hp-why__feat-body p {
  font-size: 0.8rem;
  color: var(--hp-muted);
  line-height: 1.5;
  margin: 0;
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* CTA row */
.hp-why__cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hp-why__link {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--hp-blue) !important;
  text-decoration: none !important;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.hp-why__link:hover {
  gap: 10px;
}

/* ── RESPONSIVE ── */
@media (max-width: 992px) {
  .hp-why {
    height: auto;
    max-height: none;
  }

  .hp-why__wrap {
    grid-template-columns: 1fr;
  }

  .hp-why__photo-side {
    min-height: 300px;
  }

  .hp-why__photo-side::after {
    display: none;
  }

  .hp-why__photo-strip {
    right: 0;
  }

  .hp-why__content-side {
    padding: 28px 20px;
    height: auto;
  }

  .hp-why__features {
    grid-template-columns: 1fr;
    gap: 7px;
  }
}

@media (max-width: 576px) {
  .hp-why__title {
    font-size: 1.35rem;
  }

  .hp-why__badge--exp {
    display: none;
  }
}



/* ===== 6. ABOUT STRIP ===== */
.hp-about-strip {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--hp-navy) 0%, #0d1f3c 100%);
  color: #fff;
}

.hp-about-strip__title {
  font-size: 2.4rem;
  font-weight: 650;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 18px;
}

.hp-about-strip__desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  margin-bottom: 24px;
}

.hp-about-strip__points {
  margin-bottom: 10px;
}

.hp-about-strip__point {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 10px;
  font-weight: 500;
}

.hp-about-strip__point i {
  color: var(--hp-orange);
  font-size: 1rem;
  flex-shrink: 0;
}

.hp-about-strip__img-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}

.hp-about-strip__img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  display: block;
}

.hp-about-strip__badge {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--hp-orange), var(--hp-orange2));
  color: #fff;
  padding: 12px 24px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.4);
  white-space: nowrap;
}

.hp-about-strip__badge i {
  font-size: 1.375rem;
}

.hp-about-strip__badge strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
}

.hp-about-strip__badge span {
  font-size: 0.75rem;
  opacity: 0.85;
}

/* ===== 7. TESTIMONIALS ===== */
.hp-testimonials {
  padding: 80px 0;
  background: var(--hp-light);
}

.hp-testimonials__slider {
  display: block;
  margin: 0 -12px;
  position: relative;
}

.hp-testimonials__slider .slick-track {
  display: flex !important;
}

.hp-testimonials__slider .slick-slide {
  padding: 0 12px;
  height: auto !important;
  display: flex !important;
  flex-direction: column;
}

.hp-testimonials__slider .slick-slide>div {
  display: flex;
  height: 100%;
  width: 100%;
}

.hp-testimonials__slider .slick-prev,
.hp-testimonials__slider .slick-next,
.hp-placed__grid .slick-prev,
.hp-placed__grid .slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: var(--hp-orange);
  border: none;
  border-radius: 50%;
  color: #fff;
  z-index: 10;
  display: flex !important;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 6px 16px rgba(249, 115, 22, 0.3);
  font-size: 1.25rem;
}

.hp-testimonials__slider .slick-prev::before,
.hp-testimonials__slider .slick-next::before,
.hp-placed__grid .slick-prev::before,
.hp-placed__grid .slick-next::before {
  display: none !important;
}

.hp-testimonials__slider .slick-prev,
.hp-placed__grid .slick-prev {
  left: -20px;
}

.hp-testimonials__slider .slick-next,
.hp-placed__grid .slick-next {
  right: -20px;
}

.hp-testimonials__slider .slick-prev:hover,
.hp-testimonials__slider .slick-next:hover,
.hp-placed__grid .slick-prev:hover,
.hp-placed__grid .slick-next:hover {
  background: var(--hp-blue);
  color: #fff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
}

.hp-tcard {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(.4, 0, .2, 1);
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hp-tcard:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

.hp-tcard__top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.hp-tcard__avatar {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.hp-tcard__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hp-tcard__meta h5 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--hp-navy);
  margin: 0 0 2px;
}

.hp-tcard__meta span {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--hp-blue);
  display: block;
}

.hp-tcard__stars {
  color: #fbbf24;
  font-size: 0.875rem;
  margin-top: 4px;
}

.hp-tcard__quote-icon {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 3rem;
  color: rgba(37, 99, 235, 0.05);
  z-index: 1;
}

.hp-tcard__text {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.7;
  margin: 0 0 24px;
  position: relative;
  z-index: 2;
}

.hp-tcard__package {
  display: none !important;
}

/* ===== 8. PLACED STUDENTS ===== */
.hp-placed {
  padding: 40px 0;
  background: #fff;
}

.hp-placed__grid {
  display: block;
  margin: 0 -12px;
  margin-bottom: 40px;
  position: relative;
}

.hp-placed__grid .slick-list {
  padding-top: 50px !important;
  padding-bottom: 16px !important;
}

/* Space for avatars */
.hp-placed__grid .slick-slide {
  padding: 0 12px 10px;
  height: auto !important;
  display: flex !important;
}

.hp-placed__grid .slick-slide>div {
  display: flex;
  height: 100%;
  width: 100%;
}

/* ── PLACEMENT CARD — Premium Redesign ── */
.hp-pcard {
  background: #fff;
  border-radius: 20px;
  padding: 0 0 22px;
  text-align: center;
  position: relative;
  border: 1px solid #e8eef6;
  transition: transform 0.35s cubic-bezier(.22, .68, 0, 1.2), box-shadow 0.35s ease, border-color 0.3s;
  width: 100%;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Gradient header band */
.hp-pcard::before {
  content: '';
  display: block;
  width: 100%;
  height: 56px;
  background: linear-gradient(135deg, #1e40af 0%, #2563eb 60%, #0ea5e9 100%);
  flex-shrink: 0;
}

.hp-pcard:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(37, 99, 235, 0.14);
  border-color: #93c5fd;
}

/* Floating avatar ring */
.hp-pcard__avatar {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #fff;
  background: #fff;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.22), 0 0 0 3px #dbeafe;
  z-index: 2;
  transition: box-shadow 0.3s;
}

.hp-pcard:hover .hp-pcard__avatar {
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.32), 0 0 0 4px #93c5fd;
}

.hp-pcard__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Verified badge on avatar */
.hp-pcard__avatar::after {
  content: '\f058';
  font-family: 'FontAwesome';
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 20px;
  height: 20px;
  background: #22c55e;
  border-radius: 50%;
  border: 2px solid #fff;
  color: #fff;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 18px;
}

/* Body content — push down to clear avatar */
.hp-pcard__body {
  margin-top: 46px;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

/* Placed chip */
.hp-pcard__placed-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #f0fdf4;
  color: #16a34a;
  border: 1px solid #bbf7d0;
  border-radius: 50px;
  padding: 3px 10px;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.hp-pcard__placed-chip i {
  font-size: 0.65rem;
}

.hp-pcard__name {
  font-size: 1.0625rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 2px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.hp-pcard__role {
  font-size: 0.78rem;
  font-weight: 500;
  color: #64748b;
  margin-bottom: 2px;
}

.hp-pcard__company {
  font-size: 0.875rem;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 14px;
}

/* Divider */
.hp-pcard__divider {
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, #2563eb, #0ea5e9);
  border-radius: 2px;
  margin: 0 auto 14px;
}

.hp-pcard__pkg {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
  color: #fff;
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 18px rgba(249, 115, 22, 0.35);
  border: none;
  margin-top: auto;
  align-self: center;
  position: relative;
  overflow: hidden;
}

.hp-pcard__pkg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.hp-pcard:hover .hp-pcard__pkg::before {
  transform: translateX(100%);
}

.hp-placed__cta {
  text-align: center;
  margin-top: 10px;
}

/* ===== 9. PARTNERS ===== */
.hp-partners {
  padding: 40px 0 50px;
  background: var(--hp-light);
}

.hp-partners__marquee-wrap {
  overflow: hidden;
  margin-top: 30px;
  position: relative;
}

.hp-partners__marquee-wrap::before,
.hp-partners__marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.hp-partners__marquee-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--hp-light), transparent);
}

.hp-partners__marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--hp-light), transparent);
}

.hp-partners__marquee {
  width: 100%;
  overflow: hidden;
}

.hp-partners__marquee-track {
  display: flex;
  gap: 16px;
  padding: 10px 0 15px 0;
  /* Add padding to prevent hover cropping */
  animation: hp-marquee 25s linear infinite;
  width: max-content;
}

.hp-partners__marquee-track:hover {
  animation-play-state: paused;
}

@keyframes hp-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.hp-partner-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1.5px solid var(--hp-border);
  padding: 10px 15px;
  border-radius: 12px;
  height: 70px;
  width: auto;
  transition: all 0.2s;
  cursor: default;
}

.hp-partner-logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
  display: block;
}

.hp-partner-logo:hover {
  border-color: var(--hp-blue);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.12);
  transform: translateY(-2px);
}

/* ===== 10. LEAD FORM ===== */
.hp-lead {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--hp-navy) 0%, #0d1f3c 100%);
}

.hp-lead__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 768px) {
  .hp-lead__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.hp-lead__title {
  font-size: 2.2rem;
  font-weight: 650;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 14px;
}

.hp-lead__title span {
  color: var(--hp-orange);
}

.hp-lead__sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 30px;
  line-height: 1.6;
}

.hp-lead__perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hp-lead__perk {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #f1f5f9;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.04);
  padding: 8px 16px 8px 8px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(4px);
  transition: all 0.3s;
}

.hp-lead__perk:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(4px);
}

.hp-lead__perk i {
  width: 26px;
  height: 26px;
  background: linear-gradient(135deg, var(--hp-orange), #ff9800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(249, 115, 22, 0.3);
}

.hp-lead__trust {
  margin-top: 50px;
  display: inline-flex;
  align-items: center;
  gap: 24px;
  background: rgba(255, 255, 255, 0.03);
  padding: 16px 24px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
}

.hp-lead__avatars {
  display: flex;
  align-items: center;
}

.hp-lead__avatars img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 3px solid #0b1c35;
  margin-left: -14px;
  position: relative;
  transition: transform 0.3s;
}

.hp-lead__avatars img:hover {
  transform: translateY(-4px);
  z-index: 10 !important;
}

.hp-lead__avatars img:first-child {
  margin-left: 0;
  z-index: 4;
}

.hp-lead__avatars img:nth-child(2) {
  z-index: 3;
}

.hp-lead__avatars img:nth-child(3) {
  z-index: 2;
}

.hp-lead__avatars img:nth-child(4) {
  z-index: 1;
}

.hp-lead__avatars-more {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--hp-orange), #ff9800);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  border: 3px solid #0b1c35;
  margin-left: -14px;
  z-index: 0;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.hp-lead__trust-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hp-lead__stars {
  color: #fbbf24;
  font-size: 0.95rem;
  letter-spacing: 2px;
  text-shadow: 0 2px 8px rgba(251, 191, 36, 0.4);
}

.hp-lead__trust-text span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.hp-lead__trust-text strong {
  color: #fff;
  font-weight: 800;
}

/* ── LEAD FORM CARD — compact redesign ── */
.hp-lead__form-wrap {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  position: relative;
  z-index: 10;
  width: 100%;
}

.hp-lead__form-wrap::before {
  content: '';
  position: absolute;
  top: -10px;
  right: -10px;
  bottom: -10px;
  left: -10px;
  background: linear-gradient(135deg, var(--hp-orange), var(--hp-blue));
  border-radius: 26px;
  z-index: -1;
  opacity: 0.12;
  filter: blur(16px);
}

/* Header strip */
.hp-lead__form-title {
  font-size: 0.78rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: linear-gradient(135deg, #0d1b6e 0%, #1565c0 65%, #0288d1 100%);
  padding: 14px 20px 12px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.hp-lead__form-title::before {
  content: '\f0e0';
  font-family: 'FontAwesome';
  font-size: 0.8rem;
  opacity: 0.8;
}

.hp-lead__form-title::after {
  display: none;
}

/* Inner form padding */
.hp-lead__form-inner {
  padding: 16px 18px 18px;
}

/* Row: two fields side by side */
.hp-lead__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

/* Each field */
.hp-lead__field {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  padding: 0 11px;
  margin-bottom: 8px;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  background: #f8fafc;
}

.hp-lead__field:focus-within {
  border-color: #1565c0;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(21, 101, 192, 0.1);
}

.hp-lead__field i {
  color: #b0bec5;
  font-size: 0.78rem;
  flex-shrink: 0;
  transition: color 0.2s;
  width: 12px;
}

.hp-lead__field:focus-within i {
  color: #1565c0;
}

.hp-lead__field input,
.hp-lead__field select {
  flex: 1;
  border: none !important;
  background: transparent !important;
  padding: 9px 0 !important;
  font-size: 0.8rem !important;
  color: #1e293b !important;
  outline: none !important;
  box-shadow: none !important;
  height: auto !important;
  border-radius: 0 !important;
  font-family: 'Inter', 'Poppins', sans-serif !important;
  min-width: 0;
}

.hp-lead__field input::placeholder,
.hp-lead__field select option[value=''] {
  color: #94a3b8;
}

/* ===== 11. FLOATING WIDGETS ===== */
.hp-notify {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: #fff;
  border: 1px solid var(--hp-border);
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  z-index: 1050;
  max-width: 300px;
  animation: hp-slidein 0.4s ease;
  transition: opacity 0.4s;
}

@keyframes hp-slidein {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hp-notify__close {
  position: absolute;
  top: 6px;
  right: 10px;
  background: none;
  border: none;
  font-size: 1rem;
  color: var(--hp-muted);
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.hp-notify__icon {
  font-size: 1.375rem;
  color: #f59e0b;
  flex-shrink: 0;
}

.hp-notify__text {
  font-size: 0.75rem;
  color: #334155;
  line-height: 1.4;
}

.hp-notify__text strong {
  color: var(--hp-text);
}

.hp-float-pills {
  position: fixed;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1050;
}

.hp-float-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 700;
  text-decoration: none !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.hp-float-pill:hover {
  transform: translateX(-4px);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.25);
}

.hp-float-pill--call {
  background: var(--hp-blue);
  color: #fff !important;
}

.hp-float-pill--wa {
  background: #25d366;
  color: #fff !important;
}

.hp-float-pill i {
  font-size: 1rem;
}

/* ===== FOOTER ===== */
/* ── Orange Call-to-Action Bar (redesigned) ── */
.new-footer-orange-bar {
  background: linear-gradient(100deg, #c2410c 0%, #ea580c 45%, #f97316 100%);
  color: #fff;
  padding: 14px 0;
  position: relative;
  overflow: hidden;
}

/* Decorative glow blobs */
.nfob-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.nfob-blob--left {
  width: 260px;
  height: 260px;
  background: rgba(255, 255, 255, 0.07);
  top: -80px;
  left: -60px;
}

.nfob-blob--right {
  width: 200px;
  height: 200px;
  background: rgba(0, 0, 0, 0.08);
  bottom: -70px;
  right: -40px;
}

.new-footer-orange-bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Left: title */
.nfob-title {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  color: #fff;
  flex: 1 1 220px;
}

.nfob-title strong {
  font-weight: 800;
}

/* Centre: phone pill */
.nfob-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.30);
  border-radius: 50px;
  padding: 6px 14px;
  text-decoration: none !important;
  color: #fff !important;
  transition: background 0.3s ease, transform 0.3s ease;
  flex-shrink: 0;
}

.nfob-phone:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  color: #fff !important;
}

.nfob-phone-icon {
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.20);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.nfob-phone-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1.3;
}

.nfob-phone-text {
  font-size: 0.88rem;
  font-weight: 700;
}

/* Right: CTA button */
.footer-orange-btn {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  background: #1e3a8a !important;
  color: #fff !important;
  padding: 8px 20px !important;
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: 50px !important;
  border: none !important;
  text-decoration: none !important;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.footer-orange-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.footer-orange-btn:hover {
  background: #2563eb !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 99, 235, 0.50) !important;
  color: #fff !important;
}

/* Responsive */
@media (max-width: 767px) {
  .new-footer-orange-bar {
    padding: 18px 0;
  }

  /* Shrink blobs so they don't bloat the section height */
  .nfob-blob--left {
    width: 100px;
    height: 100px;
    top: -30px;
    left: -30px;
  }

  .nfob-blob--right {
    width: 80px;
    height: 80px;
    bottom: -25px;
    right: -20px;
  }

  .new-footer-orange-bar-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  .nfob-title {
    font-size: 0.9rem;
    flex: none;
    width: 100%;
  }

  .nfob-phone {
    width: 100%;
    justify-content: center;
    padding: 7px 12px;
    font-size: 0.82rem;
  }

  .nfob-phone-icon {
    width: 24px;
    height: 24px;
    font-size: 0.78rem;
  }

  .footer-orange-btn {
    width: 100%;
    justify-content: center;
    padding: 9px 16px !important;
    font-size: 0.85rem;
  }
}

.new-footer-main {
  background-color: #0f172a;
  color: #94a3b8;
  padding: 60px 0;
  font-size: 0.8125rem;
}

.new-footer-main h5 {
  color: #ffffff;
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.new-footer-main h5 span {
  color: #ea580c;
}

.footer-action-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 15px;
}

.footer-act-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none !important;
  font-size: 0.75rem;
}

.footer-btn-orange {
  background-color: #ea580c;
  color: #ffffff;
}

.footer-btn-blue {
  background-color: #2563eb;
  color: #ffffff;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-list li {
  margin-bottom: 10px;
}

.footer-links-list a {
  color: #94a3b8;
  text-decoration: none !important;
  transition: color 0.15s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links-list a:hover {
  color: #ffffff;
}

.footer-links-list i {
  font-size: 0.75rem;
}

.footer-social-follows {
  display: flex;
  gap: 8px;
  margin-top: 15px;
}

.footer-social-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #334155;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none !important;
  transition: background-color 0.15s;
}

.footer-social-icon:hover {
  background-color: #2563eb;
  color: #ffffff;
}

.footer-social-icon.active {
  background-color: #ea580c;
}

.new-footer-bottom {
  background-color: #020617;
  color: #64748b;
  padding: 15px 0;
  font-size: 0.75rem;
}

.new-footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.new-footer-bottom a {
  color: #ea580c;
  text-decoration: none !important;
}

/* ===== MODAL — Premium Redesign ===== */
/* Inter font loaded via <link> in HTML head for better performance */

/* Backdrop blur */
#myModal.modal {
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

#myModal .modal-dialog {
  max-width: 900px;
  margin: 30px auto;
}

/* Main card wrapper */
.lead-modal-content {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  display: flex;
  max-height: calc(100vh - 80px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  border: none;
  padding: 0;
  font-family: 'Inter', sans-serif;
  animation: lmSlideUp 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes lmSlideUp {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ---- LEFT HERO PANEL ---- */
.lead-modal-hero {
  width: 35%;
  flex-shrink: 0;
  background: linear-gradient(155deg, #0d1b6e 0%, #1a3faa 45%, #1976d2 78%, #0288d1 100%);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.lead-modal-hero::before {
  content: '';
  position: absolute;
  top: -70px;
  right: -70px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.10) 0%, transparent 70%);
  border-radius: 50%;
}

.lead-modal-hero::after {
  content: '';
  position: absolute;
  bottom: -90px;
  left: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(2, 136, 209, 0.18) 0%, transparent 70%);
  border-radius: 50%;
}

.lead-modal-hero-top {
  position: relative;
  z-index: 2;
}

.lead-modal-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 0 8px 0;
  border: 2px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.lead-modal-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lead-modal-brand {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.lead-modal-tagline {
  font-size: 1.3rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.28;
  text-align: left;
  margin-bottom: 0;
  letter-spacing: -0.4px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.22);
}


.lead-modal-sub {
  display: none;
}

/* Sub tagline */
.lead-modal-sub-tag {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
  margin-top: 7px;
}

/* Features checklist */
.lead-modal-features {
  display: flex;
  flex-direction: column;
  gap: 9px;
  position: relative;
  z-index: 2;
}

.lead-modal-feature {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.775rem;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
  line-height: 1.3;
}

.feature-check {
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: rgba(74, 222, 128, 0.2);
  border: 1.5px solid rgba(74, 222, 128, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 800;
  color: #4ade80;
  flex-shrink: 0;
}

/* Trust bar */
.lead-modal-trust {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 10px;
}

.lead-modal-trust-stars {
  color: #fbbf24;
  font-size: 0.8rem;
  letter-spacing: 2px;
  margin-bottom: 3px;
}

.lead-modal-trust-text {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  letter-spacing: 0.2px;
}


/* Trust badges */
.lead-modal-badges {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  z-index: 2;
}

.lead-modal-badge {
  display: flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 8px 10px;
  backdrop-filter: blur(8px);
  transition: background 0.2s;
}

.lead-modal-badge:hover {
  background: rgba(255, 255, 255, 0.18);
}

.lead-modal-badge-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.lead-modal-badge-text {
  font-size: 0.7rem;
  color: #fff;
  font-weight: 500;
  line-height: 1.35;
}

.lead-modal-badge-text strong {
  display: block;
  font-size: 0.74rem;
  font-weight: 700;
}

/* ---- RIGHT FORM PANEL ---- */
.lead-modal-form-panel {
  flex: 1;
  padding: 22px 26px 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: #f8faff;
  overflow-y: auto;
  border-left: 1px solid rgba(21, 101, 192, 0.08);
}

/* Close button */
.lead-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: rgba(255, 255, 255, 0.9);
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.25rem;
  color: #475569;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
}

.lead-modal-close:hover {
  background: #ef4444;
  color: #fff;
  border-color: #ef4444;
  transform: scale(1.08);
  box-shadow: 0 4px 16px rgba(239, 68, 68, 0.3);
}

/* Form heading */
.lead-modal-form-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #0d1b6e;
  margin-bottom: 5px;
  letter-spacing: -0.2px;
  line-height: 1.3;
  white-space: nowrap;
}

.lead-modal-form-subtitle {
  font-size: 0.775rem;
  color: #64748b;
  margin-bottom: 16px;
  line-height: 1.5;
  padding-bottom: 14px;
  border-bottom: 1.5px solid rgba(21, 101, 192, 0.09);
}

/* Floating label inputs */
.lead-modal-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.lead-modal-form .lm-field {
  position: relative;
  margin-bottom: 8px;
}

.lead-modal-form .lm-field .lm-input,
.lead-modal-form .lm-field .lm-select {
  width: 100%;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  background: #ffffff;
  padding: 11px 12px 5px 12px;
  font-size: 0.8125rem;
  color: #0f172a;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
  font-family: 'Inter', sans-serif;
}

.lead-modal-form .lm-field .lm-input:focus,
.lead-modal-form .lm-field .lm-select:focus {
  border-color: #1565c0;
  box-shadow: 0 0 0 3px rgba(21, 101, 192, 0.12);
}

.lead-modal-form .lm-field label {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.775rem;
  color: #94a3b8;
  pointer-events: none;
  transition: all 0.18s;
  background: transparent;
  padding: 0 2px;
  font-family: 'Inter', sans-serif;
}

.lead-modal-form .lm-field .lm-input:focus+label,
.lead-modal-form .lm-field .lm-input:not(:placeholder-shown)+label,
.lead-modal-form .lm-field .lm-select:focus+label,
.lead-modal-form .lm-field .lm-select.has-value+label {
  top: 6px;
  transform: translateY(0);
  font-size: 0.58rem;
  color: #1565c0;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

/* Select arrow */
.lead-modal-form .lm-field .select-arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #94a3b8;
  font-size: 0.6875rem;
}

/* Captcha row */
.lead-modal-captcha-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.lead-captcha-badge {
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  padding: 7px 12px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #1e3a8a;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 1px;
  font-family: 'Courier New', monospace;
}

.lead-modal-captcha-row .lm-field {
  flex: 1;
  margin-bottom: 0;
}

/* Submit button */
.lead-modal-form .lm-submit-btn {
  width: 100%;
  padding: 11px 14px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, #0d1b6e 0%, #1565c0 55%, #0288d1 100%);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.4px;
  transition: transform 0.18s, box-shadow 0.18s, filter 0.18s;
  box-shadow: 0 6px 20px rgba(21, 101, 192, 0.4);
  position: relative;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
  margin-top: 6px;
}

.lead-modal-form .lm-submit-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.15) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.5s;
}

.lead-modal-form .lm-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(21, 101, 192, 0.5);
  filter: brightness(1.08);
}

.lead-modal-form .lm-submit-btn:hover::after {
  transform: translateX(100%);
}

.lead-modal-form .lm-submit-btn:active {
  transform: translateY(0);
}

/* Alert messages */
.lead-modal-form .alert {
  font-size: 0.75rem;
  padding: 8px 12px;
  border-radius: 8px;
  margin-bottom: 10px;
}

/* Responsive: stack panels on mobile */
@media (max-width: 1024px) {
  #myModal .modal-dialog {
    max-width: calc(100% - 40px);
    margin: 20px auto;
  }
}

@media (max-width: 640px) {
  #myModal .modal-dialog {
    margin: 10px;
    max-width: calc(100% - 20px);
  }

  .lead-modal-content {
    flex-direction: column;
    min-height: auto;
    border-radius: 18px;
  }

  .lead-modal-hero {
    width: 100%;
    padding: 26px 22px;
    min-height: 200px;
  }

  .lead-modal-tagline {
    font-size: 1.3rem;
  }

  .lead-modal-badges {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .lead-modal-badge {
    flex: 1 1 140px;
  }

  .lead-modal-form-panel {
    padding: 26px 22px;
    max-height: none;
  }
}

/* ===== NAVBAR CTA ===== */
.web-pulse-navigation-wps .web-p-u-l-s-e-menu ul {
  white-space: nowrap;
  overflow: visible;
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: center;
}

.web-pulse-navigation-wps .web-p-u-l-s-e-menu ul>li.menu-cta-btn-item {
  float: none !important;
  display: inline-flex !important;
  align-items: center !important;
  padding-top: 0 !important;
  padding-left: 10px !important;
  position: relative !important;
  flex-shrink: 0 !important;
}

.web-pulse-navigation-wps .web-p-u-l-s-e-menu ul>li.menu-cta-btn-item>a {
  display: inline-block !important;
  color: #ffffff !important;
  background: linear-gradient(135deg, #1d4ed8, #2563eb) !important;
  border-radius: 10px !important;
  font-weight: 600 !important;
  font-size: 0.8125rem !important;
  line-height: 1.2 !important;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35) !important;
  text-transform: capitalize !important;
  white-space: nowrap !important;
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s !important;
}

.web-pulse-navigation-wps .web-p-u-l-s-e-menu ul>li.menu-cta-btn-item>a:hover {
  background: linear-gradient(135deg, #1e40af, #1d4ed8) !important;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5) !important;
  transform: translateY(-1px) !important;
  color: #ffffff !important;
}

/* ===== DROPDOWN REDESIGN ===== */
.cs-submenu {
  position: relative;
}

/* Chevron icon */
.cs-submenu>a .fa-angle-down {
  transition: transform 0.25s ease;
  font-size: 0.75rem;
  margin-left: 3px;
  vertical-align: middle;
}

.cs-submenu:hover>a .fa-angle-down {
  transform: rotate(180deg);
}

/* Dropdown panel */
.cs-dropdown {
  display: block !important;
  flex-direction: column !important;
  position: absolute !important;
  top: calc(100% + 4px) !important;
  left: 0 !important;
  min-width: 260px !important;
  background: #ffffff !important;
  border-radius: 10px !important;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.13), 0 0 0 1px rgba(0, 0, 0, 0.05) !important;
  padding: 4px 0 !important;
  list-style: none !important;
  margin: 0 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(6px) !important;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s !important;
  z-index: 9999 !important;
  overflow: hidden !important;
}

/* Show on hover */
.cs-submenu:hover>.cs-dropdown,
.cs-submenu:focus-within>.cs-dropdown {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}

/* Dropdown items — base */
.web-pulse-navigation-wps .web-p-u-l-s-e-menu ul>li ul.cs-dropdown li,
.cs-dropdown li {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* ── Default state: always white bg, dark text ── */
.web-pulse-navigation-wps .web-p-u-l-s-e-menu ul>li ul.cs-dropdown li a,
.web-pulse-navigation-wps .web-p-u-l-s-e-menu ul>li ul.cs-dropdown li>a,
.cs-dropdown li a {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  padding: 10px 16px 10px 14px !important;
  font-size: 0.9rem !important;
  font-weight: 500 !important;
  color: #1e293b !important;
  background: #ffffff !important;
  /* no orange, ever */
  text-decoration: none !important;
  white-space: nowrap !important;
  transition: background 0.15s, color 0.15s, padding-left 0.15s !important;
  border-left: 3px solid transparent !important;
  line-height: 1.35 !important;
}

/* ── Hover state: light blue bg, blue text — beats theme8's orange ── */
.web-pulse-navigation-wps .web-p-u-l-s-e-menu ul>li ul.cs-dropdown li:hover>a,
.web-pulse-navigation-wps .web-p-u-l-s-e-menu ul>li ul.cs-dropdown li a:hover,
.cs-dropdown li:hover>a,
.cs-dropdown li a:hover {
  background: #eff6ff !important;
  /* blue-50, replaces orange */
  color: #1d4ed8 !important;
  padding-left: 20px !important;
  border-left-color: #2563eb !important;
}

/* ── Active (current page) item: same blue style, no orange ── */
.web-pulse-navigation-wps .web-p-u-l-s-e-menu ul>li ul.cs-dropdown li.active>a,
.web-pulse-navigation-wps .web-p-u-l-s-e-menu ul>li ul.cs-dropdown li.active a,
.cs-dropdown li.active>a,
.cs-dropdown li.active a {
  background: #dbeafe !important;
  /* blue-100 */
  color: #1d4ed8 !important;
  border-left-color: #2563eb !important;
  font-weight: 600 !important;
}

/* ── Arrow indicator ── */
.cs-dropdown li a::before {
  content: '›';
  font-size: 1rem;
  color: #2563eb;
  font-weight: 700;
  line-height: 1;
  opacity: 0;
  transition: opacity 0.15s;
  flex-shrink: 0;
}

.cs-dropdown li:hover>a::before,
.cs-dropdown li a:hover::before {
  opacity: 1;
}

/* No extra spacing on first child */
.cs-dropdown li:first-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

/* ===== MOBILE NAV ===== */
@media (max-width: 991px) {
  .web-pulse-navigation-wps .web-p-u-l-s-e-menu ul {
    white-space: normal;
    display: block !important;
    flex-wrap: wrap !important;
  }

  .web-pulse-navigation-wps .web-p-u-l-s-e-menu ul>li.menu-cta-btn-item {
    padding: 10px 15px !important;
    display: block !important;
    float: none !important;
  }

  .web-pulse-navigation-wps .web-p-u-l-s-e-menu ul>li.menu-cta-btn-item>a {
    display: block !important;
    text-align: center;
  }

  /* Mobile dropdown — always visible under parent */
  .cs-dropdown {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    background: rgba(0, 0, 0, 0.04) !important;
    border-left: 3px solid #2563eb !important;
    margin: 4px 0 0 10px !important;
    padding: 4px 0 !important;
    display: none;
  }

  .cs-submenu.open>.cs-dropdown {
    display: block;
  }

  .cs-dropdown li a {
    font-size: 0.8rem !important;
    padding: 8px 12px !important;
    color: #1e293b !important;
    border-left: none !important;
  }

  .cs-dropdown li a:hover {
    padding-left: 16px !important;
    background: rgba(37, 99, 235, 0.08) !important;
  }

  /* Toggle arrow on mobile tap */
  .cs-submenu>a {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

@media (min-width: 992px) {
  .web-pulse-navigation-wps .web-p-u-l-s-e-menu ul>li>a {
    padding: 10px 11px !important;
    /* tighter vertical padding — was 15px */
    font-size: 0.875rem !important;
    font-weight: 500 !important;
    color: #1e293b !important;
    line-height: 1.2 !important;
  }

  /* Don't apply the pill padding override to the CTA button li */
  .web-pulse-navigation-wps .web-p-u-l-s-e-menu ul>li.menu-cta-btn-item>a {
    padding: 8px 20px !important;
    /* keep pill shape tight */
  }
}


@media (max-width: 768px) {
  .hp-float-pills {
    display: none;
  }
}

/* ===== FLOATING ICONS SPACING ===== */
.whatapp_btn,
#web-pulse-scroll-up {
  bottom: 35px !important;
  z-index: 9999 !important;
}

@media (max-width: 768px) {

  .whatapp_btn,
  #web-pulse-scroll-up {
    bottom: 25px !important;
  }
}

/* ===== FOOTER TEXT COLOR FIX ===== */
.new-footer-main p {
  color: rgba(255, 255, 255, 0.75) !important;
}

.new-footer-main p strong {
  color: #fff !important;
}

.new-footer-main p a,
.footer-links-list li a {
  color: rgba(255, 255, 255, 0.75) !important;
  transition: color 0.3s;
}

.new-footer-main p a:hover,
.footer-links-list li a:hover {
  color: var(--hp-orange) !important;
}

.footer-links-list li a i {
  color: var(--hp-orange);
}

/* ===== FOOTER BUTTONS FIX ===== */
.footer-action-buttons {
  display: flex !important;
  flex-direction: row !important;
  gap: 8px !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
  margin-top: 15px !important;
  width: 100% !important;
}

.footer-action-buttons .footer-act-btn {
  display: inline-flex !important;
  flex: 1 1 0 !important;
  width: auto !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 8px 10px !important;
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  border-radius: 8px !important;
  margin-bottom: 0 !important;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}

.footer-action-buttons .footer-act-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  color: #ffffff !important;
}

/* ===== FOOTER BOTTOM COPYRIGHT ===== */
.new-footer-bottom {
  padding: 20px 0 !important;
  background: #0b1120;
}

.new-footer-bottom-inner,
.new-footer-bottom-inner div {
  color: #f8fafc !important;
  /* bright white/slate */
  font-size: 0.85rem !important;
  /* slightly smaller text */
  letter-spacing: 0.5px;
}

/* ===== PREMIUM NAVBAR DEMO BUTTON ===== */
.nav-demo-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 26px;
  background: linear-gradient(135deg, #4f46e5 0%, #0ea5e9 100%);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 15px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(79, 70, 229, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid transparent;
  overflow: hidden;
  z-index: 1;
}

.nav-demo-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: all 0.6s ease;
  z-index: -1;
}

.nav-demo-btn:hover {
  background: linear-gradient(135deg, #4338ca 0%, #0284c7 100%);
  box-shadow: 0 8px 25px rgba(79, 70, 229, 0.6);
  transform: translateY(-3px) scale(1.02);
  color: #ffffff;
}

.nav-demo-btn:hover::before {
  left: 100%;
}

.nav-demo-btn i {
  transition: transform 0.3s ease;
}

.nav-demo-btn:hover i {
  transform: scale(1.15) rotate(-10deg);
}


/* ================================================================
   COURSE PAGE DESIGN SYSTEM  (prefix: cp-)
   Common design for ALL course/training pages.
   To use: include these styles and wrap page content in the
   same HTML structure used in digital_marketing.php
   ================================================================ */

/* ── CSS Custom Properties (per-course accent override) ────────── */
.cp-hero {
  --cp-accent: #f97316;
  --cp-accent-rgb: 249, 115, 22;
}

/* ════════════════════════════════════════════════════════════════
   1. HERO SECTION
   ════════════════════════════════════════════════════════════════ */
.cp-hero {
  position: relative;
  background: linear-gradient(135deg, #0a1628 0%, #0f2042 60%, #071020 100%);
  padding: 70px 0 60px;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  align-items: center;
}

/* ── Animated background shapes ── */
.cp-hero__shapes {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  z-index: 0;
}

.cp-hero__blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.09;
  animation: cp-blob-float 8s ease-in-out infinite;
}

.cp-hero__blob--1 {
  width: 460px;
  height: 460px;
  background: var(--cp-accent);
  top: -160px;
  right: -120px;
  animation-delay: 0s;
}

.cp-hero__blob--2 {
  width: 280px;
  height: 280px;
  background: #3b82f6;
  bottom: -100px;
  left: -60px;
  animation-delay: 2.5s;
}

.cp-hero__blob--3 {
  width: 180px;
  height: 180px;
  background: var(--cp-accent);
  top: 30%;
  left: 42%;
  opacity: 0.05;
  animation-delay: 1.2s;
}

@keyframes cp-blob-float {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-18px) scale(1.04);
  }
}

.cp-hero__grid-lines {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 50px 50px;
}

/* ── Hero inner layout ── */
/* Bootstrap 3 .row uses floats — do NOT set display:flex on it */
.cp-hero__inner {
  position: relative;
  z-index: 2;
}

/* Each column inside the hero needs z-index above shapes layer */
.cp-hero__inner>div {
  position: relative;
  z-index: 2;
}

.cp-hero__copy {
  padding: 10px 0 20px;
}

/* ── Eyebrow tag ── */
.cp-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(var(--cp-accent-rgb), 0.15);
  border: 1px solid rgba(var(--cp-accent-rgb), 0.35);
  color: var(--cp-accent);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

/* ── Title ── */
.cp-hero__title {
  font-size: 2.4rem;
  font-weight: 650;
  color: #ffffff;
  line-height: 1.18;
  margin-bottom: 14px;
  font-family: 'Inter', 'Poppins', sans-serif;
}

.cp-hero__title--accent {
  color: var(--cp-accent);
}

/* ── Location ── */
.cp-hero__location {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  margin-bottom: 18px;
}

.cp-hero__location i {
  color: var(--cp-accent);
  margin-right: 4px;
}

.cp-hero__location strong {
  color: #fff;
}

/* ── Feature pills ── */
.cp-hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
}

.cp-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 500;
  backdrop-filter: blur(4px);
  transition: background 0.2s;
}

.cp-pill:hover {
  background: rgba(255, 255, 255, 0.14);
}

.cp-pill i {
  color: var(--cp-accent);
  font-size: 0.75rem;
}

/* ── CTA Buttons ── */
.cp-hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cp-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none !important;
  transition: all 0.25s ease;
  letter-spacing: 0.02em;
  cursor: pointer;
}

.cp-cta-btn--primary {
  background: linear-gradient(135deg, var(--cp-accent) 0%, rgba(var(--cp-accent-rgb), 0.8) 100%);
  color: #fff !important;
  box-shadow: 0 6px 24px rgba(var(--cp-accent-rgb), 0.45);
}

.cp-cta-btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(var(--cp-accent-rgb), 0.6);
  color: #fff !important;
}

.cp-cta-btn--outline {
  background: transparent;
  color: #fff !important;
  border: 2px solid rgba(255, 255, 255, 0.35);
}

.cp-cta-btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.65);
  transform: translateY(-3px);
  color: #fff !important;
}

/* ── Hero badge card (right side) ── */
.cp-hero__badge-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 28px 24px;
  text-align: center;
  backdrop-filter: blur(10px);
  margin-left: auto;
  max-width: 220px;
}

.cp-hero__badge-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--cp-accent), rgba(var(--cp-accent-rgb), 0.7));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(var(--cp-accent-rgb), 0.4);
}

.cp-hero__badge-icon i {
  font-size: 1.8rem;
  color: #fff;
}

.cp-hero__stat-row {
  display: flex;
  justify-content: space-around;
  gap: 8px;
}

.cp-hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cp-hero__stat-num {
  font-size: 1.4rem;
  font-weight: 650;
  color: #fff;
  line-height: 1;
}

.cp-hero__stat-label {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 3px;
  font-weight: 500;
}


/* ════════════════════════════════════════════════════════════════
   2. BODY / CONTENT AREA
   ════════════════════════════════════════════════════════════════ */
.cp-body {
  padding: 50px 0 60px;
  background: #f7f9fc;
}

/* ── Content column wrapper ── */

/* ── Content header ── */
.cp-content__header {
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 2px solid #f1f5f9;
}

.cp-content__title {
  font-size: 1.65rem;
  font-weight: 800;
  color: #0a1628;
  margin-bottom: 10px;
  font-family: 'Inter', 'Poppins', sans-serif;
  line-height: 1.3;
}

.cp-content__title span {
  color: var(--hp-blue, #2563eb);
}

.cp-content__intro {
  color: #64748b;
  font-size: 0.97rem;
  line-height: 1.7;
  margin: 0;
}

/* ── Course image banner ── */
.cp-img-banner {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 36px;
  max-height: 280px;
}

.cp-img-banner__img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  border-radius: 14px;
  transition: transform 0.4s ease;
}

.cp-img-banner:hover .cp-img-banner__img {
  transform: scale(1.02);
}

.cp-img-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.55) 0%, transparent 70%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.cp-img-banner__tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(var(--cp-accent-rgb, 249, 115, 22), 0.9);
  color: #fff;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
}


/* ════════════════════════════════════════════════════════════════
   3. CURRICULUM ACCORDION (PREMIUM REDESIGN)
   ════════════════════════════════════════════════════════════════ */
.cp-curriculum {
  margin-bottom: 60px;
}

/* ── Section heading ── */
.cp-curriculum__head {
  text-align: left;
  margin-bottom: 48px;
}

.cp-curriculum__head h3 {
  font-size: 2rem;
  font-weight: 800;
  color: #0f172a;
  margin: 14px 0 10px;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.cp-curriculum__head p {
  color: #64748b;
  font-size: 1rem;
  margin: 0;
  font-weight: 500;
}

/* shared tag */
.cp-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.12), rgba(249, 115, 22, 0.06));
  color: #ea6c10;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid rgba(249, 115, 22, 0.25);
}

/* ════════════════════════════════════════════════════════════════
   4b. RELATED COURSES FULL-WIDTH SLIDER
   ════════════════════════════════════════════════════════════════ */
/* ════════════════════════════════════════════════════════════════
   PREMIUM RELATED COURSES SLIDER — v2
   ════════════════════════════════════════════════════════════════ */
.cp-related-fw {
  background: #f8fafc;
  padding: 40px 0 80px;
}

.cp-related-fw__head {
  text-align: center;
  margin-bottom: 48px;
}

.cp-related-fw__tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.10), rgba(234, 88, 12, 0.05));
  color: #f97316;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid rgba(249, 115, 22, 0.25);
  margin-bottom: 14px;
}

.cp-related-fw__head h3 {
  font-size: 2rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
  letter-spacing: -0.025em;
}

/* ── SLIDER WRAPPER ── */
.cp-related-slider-wrap {
  position: relative;
  z-index: 2;
}

.cp-related-slider-track {
  overflow: hidden;
  padding: 16px 4px;
  margin: -16px -4px;
}

.cp-related-slider {
  display: flex;
  gap: 22px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* ── CARD BASE ── */
.cp-related-card {
  flex: 0 0 calc(25% - 17px);
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e8edf3;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07), 0 1px 3px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.38s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* gradient top-accent bar */
.cp-related-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #f97316, #fb923c, #fbbf24);
  z-index: 3;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cp-related-card:hover::before {
  opacity: 1;
}

.cp-related-card:hover {
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.13),
    0 0 0 1.5px rgba(249, 115, 22, 0.2);
  transform: translateY(-6px);
  border-color: rgba(249, 115, 22, 0.15);
}

/* ── CARD IMAGE ── */
.cp-related-card__img {
  aspect-ratio: 16 / 9;
  height: auto;
  overflow: hidden;
  position: relative;
  background: #e2e8f0;
}

.cp-related-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
  display: block;
}

/* hover overlay on image */
.cp-related-card__img::after {
  content: '\f0c1';
  /* fa-link */
  font-family: 'FontAwesome';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(249, 115, 22, 0.75) 0%, rgba(15, 28, 63, 0.78) 100%);
  color: #fff;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.cp-related-card:hover .cp-related-card__img::after {
  opacity: 1;
}

.cp-related-card:hover .cp-related-card__img img {
  transform: scale(1.06);
  filter: brightness(0.72);
}

/* ── CARD BODY ── */
.cp-related-card__body {
  padding: 16px 14px 75px;
  /* Added extra bottom padding to prevent text overlapping with absolute buttons */
  display: flex;
  flex-direction: column;
  background: #fff;
  text-align: center;
}

.cp-related-card__body h4 {
  font-size: 0.99rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.45;
  color: #0f172a;
}

.cp-related-card__body h4 a {
  color: #0f172a;
  text-decoration: none;
  transition: color 0.22s ease;
}

.cp-related-card__body h4 a:hover {
  color: #f97316;
}

.cp-related-card__body p {
  color: #64748b;
  margin: 0;
  line-height: 1.6;
}



/* ── ACTION BUTTONS ── */
.cp-related-card__actions {
  display: flex;
  gap: 6px;
  flex-wrap: nowrap;
  justify-content: center;
  position: absolute;
  bottom: 18px;
  left: 14px;
  right: 14px;
}

.cp-related-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none !important;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 1.5px solid transparent;
  letter-spacing: 0.02em;
  white-space: nowrap;
  flex: 1;
  justify-content: center;
}


.cp-related-card__btn--primary {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  color: #ffffff !important;
  box-shadow: 0 3px 12px rgba(249, 115, 22, 0.35);
}

.cp-related-card__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.5);
  color: #ffffff !important;
  background: linear-gradient(135deg, #fb923c 0%, #f97316 100%);
}

.cp-related-card__btn--outline {
  background: transparent;
  color: #475569 !important;
  border-color: #cbd5e1;
}

.cp-related-card__btn--outline:hover {
  border-color: #f97316;
  color: #f97316 !important;
  background: rgba(249, 115, 22, 0.06);
  transform: translateY(-2px);
}

.cp-related-card__btn--wa {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #ffffff !important;
  box-shadow: 0 3px 10px rgba(37, 211, 102, 0.3);
}

.cp-related-card__btn--wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45);
  color: #ffffff !important;
  filter: brightness(1.08);
}

/* ── NAVIGATION BUTTONS ── */
.cp-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: none;
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.22),
    0 1px 4px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  color: #374151;
  font-size: 0.85rem;
}

.cp-slider-btn:hover {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  color: #ffffff;
  box-shadow:
    0 8px 24px rgba(249, 115, 22, 0.45),
    0 2px 6px rgba(249, 115, 22, 0.2);
  transform: translateY(calc(-50% - 2px));
}

.cp-slider-btn:active {
  transform: translateY(calc(-50%));
}

.cp-slider-btn--prev {
  left: -23px;
}

.cp-slider-btn--next {
  right: -23px;
}

/* ── DOT INDICATORS ── */
.cp-slider-dots {
  display: none;
}

.cp-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cbd5e1;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
  display: block;
}

.cp-slider-dot.active {
  background: #f97316;
  width: 24px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(249, 115, 22, 0.4);
}

.cp-slider-dot:hover:not(.active) {
  background: #94a3b8;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .cp-related-card {
    flex: 0 0 calc(33.33% - 15px);
  }
}

@media (max-width: 768px) {
  .cp-related-card {
    flex: 0 0 calc(50% - 11px);
  }

  .cp-slider-btn--prev {
    left: -10px;
  }

  .cp-slider-btn--next {
    right: -10px;
  }

  .cp-related-fw__head h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .cp-related-card {
    flex: 0 0 calc(100% - 0px);
  }

  .cp-related-fw {
    padding: 48px 0 56px;
  }
}

/* ════════════════════════════════════════════════════════════════
   4. KEY HIGHLIGHTS GRID
   ════════════════════════════════════════════════════════════════ */
.cp-highlights {
  margin: 36px 0 28px;
}

.cp-highlights__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.cp-highlight-card {
  background: #f8faff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 20px 16px;
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.cp-highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: #bfdbfe;
}

.cp-highlight-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.cp-highlight-card__icon i {
  font-size: 1.35rem;
  color: #fff;
}

.cp-highlight-card__icon--blue {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.28);
}

.cp-highlight-card__icon--orange {
  background: linear-gradient(135deg, #f97316, #fb923c);
  box-shadow: 0 6px 18px rgba(249, 115, 22, 0.28);
}

.cp-highlight-card__icon--green {
  background: linear-gradient(135deg, #16a34a, #22c55e);
  box-shadow: 0 6px 18px rgba(22, 163, 74, 0.28);
}

.cp-highlight-card__icon--purple {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  box-shadow: 0 6px 18px rgba(124, 58, 237, 0.28);
}

.cp-highlight-card h5 {
  font-size: 0.88rem;
  font-weight: 700;
  color: #0a1628;
  margin-bottom: 6px;
}

.cp-highlight-card p {
  font-size: 0.78rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}


/* ════════════════════════════════════════════════════════════════
   5. SIDEBAR UPGRADES
   ════════════════════════════════════════════════════════════════ */
.left_sidebar {
  background: #fff !important;
  border-radius: 16px !important;
  padding: 0 !important;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1) !important;
  overflow: hidden !important;
  margin-bottom: 24px !important;
  border: 1px solid #e2e8f0 !important;
}

/* Override dark theme title bar */
.left_sidebar .left_title {
  background: linear-gradient(135deg, #0a1628, #1d4ed8) !important;
  color: #fff !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  padding: 14px 20px !important;
  line-height: 1.4 !important;
  border-radius: 0 !important;
}

/* Override dark #222220 background on ul */
.left_sidebar ul {
  background: #fff !important;
  padding: 6px 0 !important;
  margin: 0 !important;
  list-style: none !important;
}

.left_sidebar ul li {
  border-bottom: 1px solid #f1f5f9 !important;
  float: none !important;
  width: 100% !important;
}

.left_sidebar ul li:last-child {
  border-bottom: none !important;
}

/* Override white text on dark background */
.left_sidebar ul li a {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 10px 18px !important;
  font-size: 0.84rem !important;
  color: #374151 !important;
  text-transform: none !important;
  font-weight: 500 !important;
  line-height: 1.45 !important;
  text-decoration: none !important;
  border-left: 3px solid transparent !important;
  background: transparent !important;
  transition: all 0.18s ease !important;
}

.left_sidebar ul li a::before {
  content: '›' !important;
  color: #2563eb !important;
  font-weight: 650 !important;
  font-size: 1.1rem !important;
  flex-shrink: 0 !important;
  line-height: 1 !important;
}

.left_sidebar ul li a:hover,
.left_sidebar ul li a:focus,
.left_sidebar ul li a.active {
  background: #eff6ff !important;
  color: #1d4ed8 !important;
  border-left-color: #2563eb !important;
  padding-left: 24px !important;
}

/* Quick contact form inside sidebar */
.quick_form .form-control {
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.84rem;
  padding: 9px 12px;
  color: #374151;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.quick_form .form-control:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
  outline: none;
}

.quick_form .modal_btn {
  width: 100%;
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 11px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35);
  letter-spacing: 0.02em;
}

.quick_form .modal_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(249, 115, 22, 0.5);
}

/* sidebar sticky anchor */
#sticky-anchor {
  margin-top: 0;
}

#sidebar {
  position: -webkit-sticky;
  position: sticky;
  top: 80px;
}


/* ════════════════════════════════════════════════════════════════
   6. RESPONSIVE
   ════════════════════════════════════════════════════════════════ */
@media (max-width: 991px) {
  .cp-hero {
    padding: 50px 0 40px;
    min-height: auto;
  }

  .cp-hero__title {
    font-size: 1.85rem;
  }

  .cp-content {
    padding: 24px 20px 20px;
  }

  .cp-highlights__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cp-topic-list {
    grid-template-columns: 1fr;
    padding-left: 60px;
  }
}

@media (max-width: 767px) {
  .cp-hero {
    padding: 36px 0 30px;
  }

  .cp-hero__title {
    font-size: 1.5rem;
  }

  .cp-hero__pills {
    gap: 6px;
  }

  .cp-pill {
    font-size: 0.72rem;
    padding: 4px 10px;
  }

  .cp-cta-btn {
    padding: 10px 20px;
    font-size: 0.82rem;
  }

  .cp-content__title {
    font-size: 1.3rem;
  }

  .cp-highlights__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .cp-module__header {
    padding: 14px 14px;
  }

  .cp-topic-list {
    grid-template-columns: 1fr;
    padding-left: 16px;
  }

  .cp-img-banner__img,
  .cp-img-banner {
    max-height: 180px;
    height: 180px;
  }
}

@media (max-width: 480px) {
  .cp-highlights__grid {
    grid-template-columns: 1fr 1fr;
  }

  .cp-hero__ctas {
    flex-direction: column;
    gap: 10px;
  }

  .cp-cta-btn {
    justify-content: center;
    width: 100%;
  }
}

/* ════════════════════════════════════════════════════════════════
   HERO IMAGE CARD — right-column generated image with stats strip
   ════════════════════════════════════════════════════════════════ */
.cp-hero__img-wrap {
  position: relative;
  margin-top: 10px;
  animation: cp-hero-img-float 5s ease-in-out infinite;
}

@keyframes cp-hero-img-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.cp-hero__img {
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  box-shadow:
    0 0 0 3px rgba(249, 115, 22, 0.3),
    0 20px 50px rgba(0, 0, 0, 0.55),
    0 0 60px rgba(249, 115, 22, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.08);
}

/* Stats pill strip below the image */
.cp-hero__img-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(10, 22, 40, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 50px;
  padding: 10px 22px;
  margin-top: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.cp-hero__img-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
}

.cp-hero__img-stat-num {
  font-size: 1.3rem;
  font-weight: 650;
  color: #fff;
  line-height: 1;
  font-family: 'Inter', 'Poppins', sans-serif;
}

.cp-hero__img-stat-lbl {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  margin-top: 3px;
  letter-spacing: 0.04em;
}

.cp-hero__img-stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

/* ── Hero upgraded elements ── */

/* Diagonal accent streaks */
.cp-hero__streak {
  position: absolute;
  opacity: 0.045;
  pointer-events: none;
}

.cp-hero__streak--1 {
  width: 3px;
  height: 200px;
  background: linear-gradient(180deg, transparent, var(--cp-accent), transparent);
  top: 0;
  right: 28%;
  transform: rotate(25deg);
}

.cp-hero__streak--2 {
  width: 2px;
  height: 140px;
  background: linear-gradient(180deg, transparent, #3b82f6, transparent);
  bottom: 10px;
  right: 40%;
  transform: rotate(25deg);
}

/* Eyebrow row with live badge */
.cp-hero__eyebrow-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.cp-hero__eyebrow-row .cp-hero__eyebrow {
  margin-bottom: 0;
}

/* Live badge */
.cp-hero__live-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #4ade80;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 5px 12px;
  border-radius: 50px;
  text-transform: uppercase;
}

.cp-hero__live-dot {
  width: 7px;
  height: 7px;
  background: #4ade80;
  border-radius: 50%;
  flex-shrink: 0;
  animation: cp-live-pulse 1.5s ease-in-out infinite;
}

@keyframes cp-live-pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.45;
    transform: scale(1.4);
  }
}

/* Rating row */
.cp-hero__rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.cp-hero__stars {
  display: inline-flex;
  gap: 2px;
}

.cp-hero__stars .fa {
  color: #fbbf24;
  font-size: 0.85rem;
}

.cp-hero__rating-num {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
}

.cp-hero__rating-count {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
}

.cp-hero__sep {
  color: rgba(255, 255, 255, 0.25);
  font-size: 1rem;
}

.cp-hero__enrolled {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.78rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.cp-hero__enrolled .fa {
  color: var(--cp-accent);
  font-size: 0.75rem;
}

/* Trust bar */
.cp-hero__trust-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
  font-weight: 500;
}

.cp-hero__trust-bar .fa {
  color: var(--cp-accent);
  margin-right: 4px;
}

.cp-hero__trust-sep {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.15);
  display: inline-block;
  flex-shrink: 0;
}

/* Image card wrapper (replaces img-wrap) */
.cp-hero__img-card {
  position: relative;
  margin-top: 10px;
  animation: cp-hero-img-float 5s ease-in-out infinite;
}

/* Outer glow ring */
.cp-hero__img-glow {
  position: absolute;
  inset: -12px;
  border-radius: 28px;
  background: radial-gradient(ellipse at center, rgba(var(--cp-accent-rgb), 0.22) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

/* Floating mini badges */
.cp-hero__float-badge {
  position: absolute;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(10, 22, 40, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 9px 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  animation: cp-hero-img-float 6s ease-in-out infinite reverse;
}

.cp-hero__float-badge .fa {
  font-size: 1.1rem;
  color: var(--cp-accent);
  flex-shrink: 0;
}

.cp-hero__float-badge span {
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.cp-hero__float-badge--tl {
  top: -14px;
  left: -14px;
  animation-delay: 0.8s;
}

.cp-hero__float-badge--br {
  bottom: 58px;
  right: -14px;
  animation-delay: 1.8s;
}

/* Make sure img sits above glow */
.cp-hero__img-card .cp-hero__img {
  position: relative;
  z-index: 1;
}

.cp-hero__img-card .cp-hero__img-stats {
  position: relative;
  z-index: 1;
}

/* Responsive: hide badges on smaller desktops */
@media (max-width: 1200px) {
  .cp-hero__float-badge--tl {
    left: -6px;
  }

  .cp-hero__float-badge--br {
    right: -6px;
  }
}

@media (max-width: 991px) {
  .cp-hero__float-badge {
    display: none;
  }

  .cp-hero__img-glow {
    display: none;
  }

  .cp-hero__trust-bar {
    font-size: 0.72rem;
    gap: 8px;
  }
}

@media (max-width: 767px) {
  .cp-hero__rating-row {
    font-size: 0.74rem;
  }

  .cp-hero__trust-bar {
    display: none;
  }
}


/* ════════════════════════════════════════════════════════════════
   DM TOP CARD — new course info card replacing cp-img-banner
   ════════════════════════════════════════════════════════════════ */
.dm-top-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 36px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
}

/* ── Top body (image + info side by side) ── */
.dm-top-card__body {
  display: flex;
  gap: 0;
}

/* ── Left image column ── */
.dm-top-card__img-col {
  position: relative;
  flex: 0 0 42%;
  background: #070e1e;
  border-radius: 0;
  overflow: hidden;
  min-height: 320px;
}

.dm-top-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.95;
}

.dm-top-card__badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f97316;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 10px rgba(249, 115, 22, 0.4);
}

.dm-top-card__badge .fa-star {
  font-size: 0.72rem;
}

/* ── Right info column ── */
.dm-top-card__info {
  flex: 1;
  padding: 28px 30px 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dm-top-card__eyebrow {
  font-size: 0.8rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin: 0 0 6px;
}

.dm-top-card__title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #111827;
  line-height: 1.2;
  margin: 0 0 12px;
}

.dm-top-card__title-city {
  color: #1d6fdb;
  font-weight: 800;
}

.dm-top-card__desc {
  font-size: 0.9rem;
  color: #4b5563;
  line-height: 1.65;
  margin: 0 0 18px;
}

/* ── Feature list (2-column grid) ── */
.dm-top-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
}

.dm-top-card__features li {
  font-size: 0.855rem;
  color: #374151;
  display: flex;
  align-items: flex-start;
  gap: 7px;
  line-height: 1.45;
}

.dm-top-card__features li .fa-check-circle {
  color: #22c55e;
  font-size: 1rem;
  margin-top: 1px;
  flex-shrink: 0;
}

/* ── CTA button ── */
.dm-top-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #111827;
  color: #fff !important;
  text-decoration: none !important;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 50px;
  letter-spacing: 0.02em;
  align-self: flex-start;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 14px rgba(17, 24, 39, 0.25);
}

.dm-top-card__cta:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(29, 78, 216, 0.35);
}

.dm-top-card__cta--outline {
  background: transparent;
  color: #111827 !important;
  border: 2px solid #d1d5db;
  box-shadow: none;
}

.dm-top-card__cta--outline:hover {
  background: #f9fafb;
  border-color: #111827;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.10);
}

.dm-top-card__cta--whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff !important;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.dm-top-card__cta--whatsapp:hover {
  background: linear-gradient(135deg, #20ba59, #0e7a6a);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.dm-top-card__cta--whatsapp .fa {
  font-size: 1.1rem;
}

/* ── Rating row ── */
.dm-top-card__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.dm-top-card__stars {
  color: #f59e0b;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.dm-top-card__rating strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1e293b;
}

.dm-top-card__rating-count {
  font-size: 0.8rem;
  color: #64748b;
}

.dm-top-card__enrolled {
  font-size: 0.8rem;
  color: #2563eb;
  font-weight: 600;
  background: #eff6ff;
  padding: 3px 10px;
  border-radius: 50px;
  margin-left: 4px;
}

.dm-top-card__enrolled .fa {
  margin-right: 3px;
}

/* ── Tools / Tags strip ── */
.dm-top-card__tools {
  margin: 14px 0 16px;
}

.dm-top-card__tool-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 8px;
}

.dm-top-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.dm-top-card__tags span {
  display: inline-block;
  background: #f1f5f9;
  color: #334155;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  border: 1px solid #e2e8f0;
  transition: all 0.2s ease;
}

.dm-top-card__tags span:hover {
  background: #f97316;
  color: #fff;
  border-color: #f97316;
}

/* ── Batch info row ── */
.dm-top-card__batch {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  padding: 14px 16px;
  background: #f8fafc;
  border-radius: 10px;
  border: 1px solid #e8edf5;
}

.dm-top-card__batch-item {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 120px;
}

.dm-top-card__batch-item .fa {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.dm-top-card__batch-item strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
}

.dm-top-card__batch-item span {
  font-size: 0.73rem;
  color: #64748b;
  line-height: 1.3;
}

/* ── Bottom stats bar ── */
.dm-top-card__stats {
  display: flex;
  align-items: center;
  justify-content: space-around;
  border-top: 1px solid #e5e7eb;
  padding: 16px 28px;
  background: #fafafa;
  gap: 12px;
}

.dm-stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dm-stat-item__icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.dm-stat-item>div {
  display: flex;
  flex-direction: column;
}

.dm-stat-item>div strong {
  font-size: 0.92rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
}

.dm-stat-item>div span {
  font-size: 0.7rem;
  color: #9ca3af;
  letter-spacing: 0.06em;
  font-weight: 600;
  text-transform: uppercase;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .dm-top-card__body {
    flex-direction: column;
  }

  .dm-top-card__img-col {
    flex: none;
    min-height: 200px;
  }

  .dm-top-card__info {
    padding: 20px;
  }

  .dm-top-card__title {
    font-size: 1.35rem;
  }

  .dm-top-card__features {
    grid-template-columns: 1fr;
  }

  .dm-top-card__stats {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 14px;
    padding: 14px 16px;
  }
}

@media (max-width: 480px) {
  .dm-top-card__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

/* =========================================================================
   CURRICULUM SECTION — PREMIUM REDESIGN v2
   ========================================================================= */

/* ── Full-width section wrapper (dark bg) ── */
.cp-curriculum-section {
  background: linear-gradient(160deg, #0f172a 0%, #1e293b 60%, #0f172a 100%);
  padding: 70px 0;
  position: relative;
  overflow: clip;
}

.cp-curriculum-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 30%, rgba(249, 115, 22, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 85% 70%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

/* ── Inner layout wrapper (transparent, no card) ── */
#cp-curriculum {
  background: transparent;
  border-radius: 0;
  padding: 0;
  margin: 0;
  position: static;
  overflow: visible;
}

#cp-curriculum::before {
  display: none;
}

/* ── Split layout ── */
.cp-curriculum--split {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.cp-curriculum__left {
  min-width: 0;
}

.cp-curriculum__right {
  min-width: 0;
  position: relative;
  align-self: stretch;
  /* must stretch to full row height so sticky works */
}

/* ── Section heading ── */
.cp-curriculum__head {
  margin-bottom: 32px;
}

.cp-curriculum__head .cp-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(249, 115, 22, 0.15);
  border: 1px solid rgba(249, 115, 22, 0.3);
  color: #fb923c;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.cp-curriculum__head h3 {
  font-size: 2rem;
  font-weight: 800;
  color: #f8fafc;
  margin: 0 0 10px;
  line-height: 1.2;
}

.cp-curriculum__head p {
  color: #94a3b8;
  font-size: 0.97rem;
  margin: 0;
}

/* ── Stats bar ── */
.cp-curriculum__stats {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 16px 24px;
  margin-bottom: 28px;
  gap: 0;
}

.cp-curriculum__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  gap: 2px;
}

.cp-curriculum__stat strong {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fb923c;
  line-height: 1;
}

.cp-curriculum__stat span {
  font-size: 0.7rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-top: 2px;
}

.cp-curriculum__stat-div {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

/* ── Module accordion ── */
.cp-module {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(6px);
}

.cp-module:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(249, 115, 22, 0.3);
  transform: translateX(3px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25), -3px 0 0 #f97316;
}

.cp-module.cp-module--open {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(249, 115, 22, 0.4);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), -3px 0 0 #f97316;
  transform: none;
}

.cp-module__header {
  padding: 3px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  gap: 12px;
}

.cp-module__header::before {
  display: none;
  /* replaced by border trick on .cp-module */
}

.cp-module__info {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

/* Numbered badge */
.cp-module__num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  color: #64748b;
  transition: all 0.3s ease;
  letter-spacing: 0;
}

.cp-module.cp-module--open .cp-module__num,
.cp-module:hover .cp-module__num {
  background: rgba(249, 115, 22, 0.15);
  border-color: rgba(249, 115, 22, 0.4);
  color: #fb923c;
}

.cp-module__title-group {
  min-width: 0;
}

.cp-module__title {
  font-size: 0.97rem;
  font-weight: 700;
  color: #e2e8f0;
  margin: 0;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cp-module:hover .cp-module__title,
.cp-module.cp-module--open .cp-module__title {
  color: #f8fafc;
}

.cp-module__right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.cp-module__badge {
  background: rgba(99, 102, 241, 0.15);
  border: 1px solid rgba(99, 102, 241, 0.25);
  color: #a5b4fc;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  white-space: nowrap;
}

.cp-module.cp-module--open .cp-module__badge {
  background: rgba(249, 115, 22, 0.15);
  border-color: rgba(249, 115, 22, 0.3);
  color: #fb923c;
}

.cp-module__toggle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.cp-module.cp-module--open .cp-module__toggle {
  transform: rotate(180deg);
  background: rgba(249, 115, 22, 0.15);
  color: #fb923c;
}

/* ── Module body (topics) ── */
.cp-module__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.cp-module.cp-module--open .cp-module__body {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.cp-topic-list {
  list-style: none;
  padding: 16px 22px 20px 22px;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 16px;
}

.cp-topic-list li {
  position: relative;
  padding: 7px 0 7px 26px;
  font-size: 0.855rem;
  color: #dddddd;
  line-height: 1.45;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.04);
  transition: color 0.2s;
}

.cp-topic-list li:hover {
  color: #cbd5e1;
}

.cp-topic-list li .fa-check {
  position: absolute;
  left: 0;
  top: 10px;
  color: #fff;
  font-size: 0.72rem;
  background: rgba(16, 185, 129, 0.12);
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/* ── RIGHT sticky column ── */
.cp-curriculum__sticky {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* Achievement float cards */
.cp-curric-float {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 12px 16px;
  border-radius: 14px;
  width: 100%;
  animation: curric-float 4s ease-in-out infinite;
  position: static;
  /* override absolute from old design */
  transform: none;
}

@keyframes curric-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

.cp-curric-float i {
  flex-shrink: 0;
  font-size: 1rem;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: #fff;
}

.cp-curric-float--top i {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.cp-curric-float--bottom i {
  background: linear-gradient(135deg, #10b981, #059669);
}

.cp-curric-float strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #f1f5f9;
}

.cp-curric-float span {
  display: block;
  font-size: 0.72rem;
  color: #94a3b8;
}

/* Curriculum illustration (transparent PNG) */
.cp-curriculum__girl-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 40px rgba(249, 115, 22, 0.15)) drop-shadow(0 4px 16px rgba(99, 102, 241, 0.1));
  animation: curric-img-float 6s ease-in-out infinite;
}

@keyframes curric-img-float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* CTA card */
.cp-curric-cta-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 24px 20px;
  text-align: center;
  width: 100%;
}

.cp-curric-cta-card p {
  font-size: 1rem;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 16px;
  line-height: 1.4;
}

.cp-curric-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 13px 22px;
  border-radius: 50px;
  text-decoration: none !important;
  transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 10px;
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.35);
  letter-spacing: 0.02em;
}

.cp-curric-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(249, 115, 22, 0.5);
  filter: brightness(1.1);
}

.cp-curric-cta-btn--wa {
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
  margin-bottom: 0;
}

.cp-curric-cta-btn--wa:hover {
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .cp-curriculum--split {
    grid-template-columns: 1fr 300px;
    gap: 32px;
  }

  .cp-curriculum-section {
    padding: 56px 0;
  }
}

@media (max-width: 991px) {
  .cp-curriculum--split {
    grid-template-columns: 1fr;
  }

  .cp-curriculum__right {
    display: none;
  }

  .cp-topic-list {
    grid-template-columns: 1fr;
  }

  .cp-curriculum-section {
    padding: 44px 0;
  }
}

@media (max-width: 576px) {
  .cp-curriculum-section {
    padding: 36px 0;
  }

  .cp-curriculum__head h3 {
    font-size: 1.5rem;
  }

  .cp-module__title {
    font-size: 0.9rem;
    white-space: normal;
  }

  .cp-module__badge {
    display: none;
  }

  .cp-topic-list {
    grid-template-columns: 1fr;
    padding: 12px 16px 16px;
  }
}

/* =========================================================================
   KEY HIGHLIGHTS SECTION — White/Light theme
   ========================================================================= */
.cp-benefits-fw {
  background: #f1f5f9;
  padding: 40px 0;
  position: relative;
  overflow: clip;
}

.cp-benefits-fw::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 50%, rgba(249, 115, 22, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 90% 50%, rgba(99, 102, 241, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.cp-benefits-fw .container {
  position: relative;
  z-index: 1;
}

/* Section heading */
.cp-benefits-fw__head {
  text-align: center;
  margin-bottom: 52px;
}

.cp-benefits-fw__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(249, 115, 22, 0.10);
  border: 1px solid rgba(249, 115, 22, 0.25);
  color: #ea580c;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.cp-benefits-fw__title {
  font-size: 2rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 12px;
  line-height: 1.2;
}

.cp-benefits-fw__sub {
  color: #64748b;
  font-size: 1rem;
  margin: 0;
}

/* 4-column grid */
.cp-benefits-fw__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Individual benefit card */
.cp-benefit-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.cp-benefit-item::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.35s ease;
  border-radius: 20px;
}

.cp-benefit-item:nth-child(1)::before {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(79, 134, 247, 0.02));
}

.cp-benefit-item:nth-child(2)::before {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.06), rgba(251, 146, 60, 0.02));
}

.cp-benefit-item:nth-child(3)::before {
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.05), rgba(74, 222, 128, 0.02));
}

.cp-benefit-item:nth-child(4)::before {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.05), rgba(167, 139, 250, 0.02));
}

.cp-benefit-item:hover::before {
  opacity: 1;
}

.cp-benefit-item:hover {
  transform: translateY(-8px);
  border-color: #cbd5e1;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.10);
}

/* Icon box */
.cp-benefit-item__icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cp-benefit-item:hover .cp-benefit-item__icon {
  transform: scale(1.1) rotate(-3deg);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.20);
}

.cp-benefit-item__icon i {
  font-size: 1.6rem;
  color: #fff;
}

/* Text */
.cp-benefit-item h5 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 10px;
  position: relative;
  z-index: 1;
}

.cp-benefit-item p {
  font-size: 0.88rem;
  color: #64748b;
  margin: 0;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* Responsive */
@media (max-width: 991px) {
  .cp-benefits-fw__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cp-benefits-fw {
    padding: 60px 0;
  }
}

@media (max-width: 576px) {
  .cp-benefits-fw__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .cp-benefits-fw {
    padding: 44px 0;
  }

  .cp-benefit-item {
    padding: 28px 20px;
  }
}

/* =========================================================================
   ENROLL MODAL — Premium redesign
   ========================================================================= */
.ep-enroll-modal .modal-dialog,
.ep-enroll-modal__dialog {
  max-width: 780px;
  margin: 30px auto;
}

.ep-enroll-modal__content {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.28);
  position: relative;
}

/* ── Floating close button ── */
.ep-enroll-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 100;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}

.ep-enroll-modal__close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

/* ── Left: Visual panel ── */
.ep-enroll-modal__visual {
  width: 42%;
  flex-shrink: 0;
  position: relative;
  background: #0f172a;
  overflow: hidden;
}

.ep-enroll-modal__img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  object-position: center center;
  display: block;
  padding: 20px;
}

.ep-enroll-modal__visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg,
      rgba(10, 20, 50, 0.92) 0%,
      rgba(10, 20, 50, 0.4) 50%,
      transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
}

.ep-enroll-modal__visual-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
  width: fit-content;
}

.ep-enroll-modal__course-name {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.3;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* ── Right: Form side ── */
.ep-enroll-modal__form-side {
  flex: 1;
  padding: 36px 32px;
  background: #ffffff;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.ep-enroll-modal__form-head {
  margin-bottom: 24px;
}

.ep-enroll-modal__form-head h5 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 6px;
}

.ep-enroll-modal__form-head p {
  font-size: 0.84rem;
  color: #64748b;
  margin: 0;
}

/* ── Icon fields ── */
.ep-enroll-modal__field {
  position: relative;
  margin-bottom: 14px;
}

.ep-enroll-modal__field i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 0.88rem;
  pointer-events: none;
  z-index: 1;
}

.ep-enroll-modal__field--textarea i {
  top: 16px;
  transform: none;
}

.ep-enroll-modal__field input,
.ep-enroll-modal__field textarea {
  width: 100%;
  padding: 11px 14px 11px 40px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: 0.875rem;
  color: #1e293b;
  background: #f8fafc;
  outline: none;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
  font-family: inherit;
}

.ep-enroll-modal__field input:focus,
.ep-enroll-modal__field textarea:focus {
  border-color: #f97316;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.12);
}

.ep-enroll-modal__field input::placeholder,
.ep-enroll-modal__field textarea::placeholder {
  color: #94a3b8;
}

.ep-enroll-modal__field textarea {
  height: 90px;
  resize: none;
}

/* ── Submit button ── */
.ep-enroll-modal__submit {
  width: 100%;
  padding: 13px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35);
  transition: all 0.25s ease;
}

.ep-enroll-modal__submit:hover {
  background: linear-gradient(135deg, #fb923c, #f97316);
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.5);
  transform: translateY(-2px);
}

/* ── Responsive ── */
@media (max-width: 767px) {
  .ep-enroll-modal__content {
    flex-direction: column;
    min-height: auto;
    border-radius: 16px;
  }

  .ep-enroll-modal__visual {
    width: 100%;
    height: 200px;
  }

  .ep-enroll-modal__form-side {
    padding: 24px 20px;
  }

  .ep-enroll-modal__dialog {
    margin: 12px;
  }
}

/* =========================================================================
   DM ENROLL MODAL — Reference-style (blue left + white right)
   ========================================================================= */
.dm-enroll__dialog,
#dmEnrollModal .modal-dialog {
  max-width: 800px;
  margin: 40px auto;
}

.dm-enroll__content {
  border: 3px solid #2563eb;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25), 0 0 0 4px rgba(37, 99, 235, 0.15);
}

/* ── Left blue panel ── */
.dm-enroll__left {
  width: 44%;
  flex-shrink: 0;
  background: linear-gradient(160deg, #1e3a8a 0%, #1d4ed8 60%, #2563eb 100%);
  padding: 28px 22px 28px;
  display: flex;
  flex-direction: column;
  color: #fff;
}

.dm-enroll__logo-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.dm-enroll__logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: contain;
  background: #fff;
  padding: 4px;
  flex-shrink: 0;
}

.dm-enroll__brand {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.2;
}

.dm-enroll__left-img-wrap {
  width: 100%;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.dm-enroll__course-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dm-enroll__course-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 10px;
  line-height: 1.35;
}

.dm-enroll__tagline {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 16px;
  line-height: 1.55;
}

.dm-enroll__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.dm-enroll__stats span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 50px;
  white-space: nowrap;
}

.dm-enroll__stats span i {
  font-size: 0.72rem;
  opacity: 0.85;
}

.dm-enroll__bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dm-enroll__bullets li {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  gap: 8px;
}

.dm-enroll__bullets li i {
  color: #4ade80;
  font-size: 1rem;
  flex-shrink: 0;
}

.dm-enroll__stars {
  margin-top: auto;
}

.dm-enroll__stars i {
  color: #fbbf24;
  font-size: 0.9rem;
}

.dm-enroll__stars span {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 4px;
}

/* ── Right form panel ── */
.dm-enroll__right {
  flex: 1;
  padding: 32px 28px;
  background: #fff;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dm-enroll__close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid #e2e8f0;
  background: #f8fafc;
  font-size: 1.1rem;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: all 0.2s ease;
}

.dm-enroll__close:hover {
  background: #fee2e2;
  border-color: #fca5a5;
  color: #dc2626;
}

.dm-enroll__form-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 6px;
  padding-right: 36px;
}

.dm-enroll__form-sub {
  font-size: 0.82rem;
  color: #64748b;
  margin: 0 0 20px;
}

.dm-enroll__field {
  margin-bottom: 12px;
}

.dm-enroll__field input {
  width: 100%;
  padding: 11px 16px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: 0.875rem;
  color: #1e293b;
  background: #f8fafc;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  font-family: inherit;
}

.dm-enroll__field input:focus {
  border-color: #2563eb;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.dm-enroll__field input::placeholder {
  color: #94a3b8;
}

.dm-enroll__submit {
  width: 100%;
  padding: 13px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 6px;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
  transition: all 0.25s ease;
  letter-spacing: 0.02em;
}

.dm-enroll__submit:hover {
  background: linear-gradient(135deg, #1e40af, #1d4ed8);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.45);
  transform: translateY(-2px);
}

/* ── Responsive ── */
@media (max-width: 767px) {
  .dm-enroll__content {
    flex-direction: column;
    border-radius: 14px;
  }

  .dm-enroll__left {
    width: 100%;
    padding: 24px 20px;
  }

  .dm-enroll__left-img-wrap {
    height: 100px;
  }

  .dm-enroll__right {
    padding: 24px 20px;
  }

  .dm-enroll__dialog {
    margin: 12px;
  }
}

/* ── Know More button for related course cards ── */
.cp-related-card__btn--readmore {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 18px;
  border-radius: 50px;
  border: none;
  background: linear-gradient(135deg, #0ea5e9 0%, #2563eb 100%);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.cp-related-card__btn--readmore::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, transparent 60%);
  pointer-events: none;
}

.cp-related-card__btn--readmore:hover {
  background: linear-gradient(135deg, #0284c7 0%, #1d4ed8 100%);
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(37, 99, 235, 0.45);
}

.cp-related-card__btn--readmore i {
  font-size: 0.72rem;
  transition: transform 0.25s ease;
}

.cp-related-card__btn--readmore:hover i {
  transform: translateX(3px);
}

/* ================================================================
   TESTIMONIALS + FAQ — REDESIGNED SECTION  (tf- prefix)
   ================================================================ */

/* ── Section wrapper ── */
.tf-section {
  background: linear-gradient(160deg, #0a1628 0%, #0f2042 55%, #111827 100%);
  padding: 40px 0 72px;
  position: relative;
  overflow: hidden;
}

.tf-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 15% 20%, rgba(37, 99, 235, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 50% 35% at 85% 80%, rgba(249, 115, 22, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Section header ── */
.tf-header {
  text-align: center;
  margin-bottom: 52px;
  position: relative;
  z-index: 1;
}

.tf-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(37, 99, 235, 0.35);
  color: #60a5fa;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.tf-main-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.2;
}

.tf-main-sub {
  color: #94a3b8;
  font-size: 1rem;
  margin: 0;
}

/* ── Two-column grid ── */
.tf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  position: relative;
  z-index: 1;
}

@media (max-width: 991px) {
  .tf-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Shared column label ── */
.tf-testi-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f97316;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ════════════════════════════════════════
   TESTIMONIAL SLIDER
   ════════════════════════════════════════ */

.tf-testi-track {
  position: relative;
  min-height: 240px;
}

.tf-testi-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 18px;
  padding: 28px 30px 26px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  pointer-events: none;
}

.tf-testi-card--active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
  pointer-events: auto;
}

/* Stars */
.tf-testi-stars {
  color: #f59e0b;
  font-size: 0.88rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

/* Quote text */
.tf-testi-text {
  color: #e2e8f0;
  font-size: 0.97rem;
  line-height: 1.75;
  margin: 0 0 22px;
  font-style: italic;
}

/* Author row */
.tf-testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.tf-testi-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #f97316;
  flex-shrink: 0;
}

.tf-testi-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tf-testi-name {
  display: block;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
}

.tf-testi-role {
  display: block;
  color: #64748b;
  font-size: 0.8rem;
  margin-top: 2px;
}

/* Dot navigation */
.tf-testi-nav {
  display: flex;
  gap: 8px;
  margin-top: 22px;
}

.tf-testi-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, transform 0.3s ease;
}

.tf-testi-dot--active {
  background: #f97316;
  transform: scale(1.3);
}

/* Stats strip */
.tf-stats-strip {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(37, 99, 235, 0.25);
  border-radius: 14px;
  padding: 18px 24px;
  margin-top: 28px;
}

.tf-stat {
  flex: 1;
  text-align: center;
}

.tf-stat strong {
  display: block;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1.2;
}

.tf-stat span {
  display: block;
  color: #64748b;
  font-size: 0.75rem;
  margin-top: 3px;
}

.tf-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.12);
}

/* ════════════════════════════════════════
   FAQ ACCORDION
   ════════════════════════════════════════ */

.tf-faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tf-faq-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.tf-faq-item--open {
  background: rgba(37, 99, 235, 0.10);
  border-color: rgba(37, 99, 235, 0.40);
}

.tf-faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  text-align: left;
  color: #e2e8f0;
  font-size: 0.93rem;
  font-weight: 600;
  line-height: 1.4;
  transition: color 0.25s ease;
}

.tf-faq-item--open .tf-faq-q {
  color: #fff;
}

.tf-faq-q:hover {
  color: #fff;
}

.tf-faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: #60a5fa;
  transition: background 0.3s ease, transform 0.3s ease;
}

.tf-faq-item--open .tf-faq-icon {
  background: #2563eb;
  color: #fff;
}

.tf-faq-a {
  overflow: hidden;
}

.tf-faq-a-inner {
  padding: 0 20px 18px;
  color: #94a3b8;
  font-size: 0.9rem;
  line-height: 1.7;
}

.tf-faq-a-inner p {
  margin: 0 0 8px;
  color: #94a3b8;
}

.tf-faq-a-inner strong {
  color: #e2e8f0;
}

.tf-faq-list-inner {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tf-faq-list-inner li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #94a3b8;
  font-size: 0.88rem;
}

.tf-faq-list-inner li i {
  color: #22c55e;
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* View All link */
.tf-faq-viewall {
  margin-top: 18px;
  text-align: right;
}

.tf-faq-viewall a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #60a5fa;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.25s ease, color 0.25s ease;
}

.tf-faq-viewall a:hover {
  color: #f97316;
  gap: 10px;
}

/* ── Responsive tweaks ── */
@media (max-width: 767px) {
  .tf-section {
    padding: 56px 0 48px;
  }

  .tf-stats-strip {
    padding: 14px 16px;
  }

  .tf-stat strong {
    font-size: 1.1rem;
  }

  .tf-testi-card {
    padding: 22px 20px;
  }
}

/* ============================================================
   TOPBAR MOBILE ALIGNMENT FIX
   ============================================================ */
@media (max-width: 992px) {

  /* Turn the topbar Bootstrap row into a single flex row */
  .w-e-b-p-u-l-s-e-topbar .container>.row {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    padding: 4px 0;
  }

  /* Phone / social column — takes remaining space on the left */
  .w-e-b-p-u-l-s-e-topbar .phone_mail_social_media {
    flex: 1 1 auto !important;
    width: auto !important;
    float: none !important;
    padding-left: 8px;
    padding-right: 4px;
  }

  /* "Our Brochure" column — compact, don't stretch */
  .w-e-b-p-u-l-s-e-topbar .col-lg-2.col-md-2 {
    flex: 0 0 auto !important;
    width: auto !important;
    float: none !important;
    padding: 0 4px;
  }

  /* "Get Hired" column — compact, no pull-right needed */
  .w-e-b-p-u-l-s-e-topbar .top_search_bar {
    flex: 0 0 auto !important;
    width: auto !important;
    float: none !important;
    padding: 0 4px;
  }

  /* Style the brochure / get-hired buttons */
  .w-e-b-p-u-l-s-e-topbar .brochure_btn {
    display: inline-block !important;
    float: none !important;
    padding: 4px 10px !important;
    font-size: 11px !important;
    white-space: nowrap;
    line-height: 1.4;
  }

  /* Phone link stays on one line */
  .w-e-b-p-u-l-s-e-topbar .connect_option .login {
    font-size: 12px;
    white-space: nowrap;
  }
}

/* On very small screens hide "Our Brochure" to prevent overflow */
@media (max-width: 400px) {
  .w-e-b-p-u-l-s-e-topbar .col-lg-2.col-md-2 {
    display: none !important;
  }
}

/* ============================================================
   MOBILE OFFCANVAS NAVBAR
   ============================================================ */

/* --- CRITICAL: Kill the old slideToggle dropdown on mobile/tablet --- */
@media (max-width: 992px) {

  /* Force-hide the old inline dropdown — offcanvas replaces it */
  .webpulse-soluction .web-pulse-navigation-wps .web-p-u-l-s-e-menu {
    display: none !important;
    max-height: 0 !important;
    overflow: hidden !important;
  }

  /* Make the hamburger button clearly tappable */
  .web-pulse-navigation-wps .navbar #nav-offcanvas-trigger {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: #0a1628;
    font-size: 22px;
    cursor: pointer;
    padding: 6px 10px;
    line-height: 1;
  }
}


/* --- Overlay backdrop --- */
.nav-offcanvas-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(5, 12, 30, 0.65);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 9998;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-offcanvas-overlay.is-visible {
  display: block;
  opacity: 1;
}

/* --- Offcanvas panel --- */
.nav-offcanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  max-width: 85vw;
  height: 100%;
  background: linear-gradient(160deg, #0a1628 0%, #0f2042 50%, #0a1628 100%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  box-shadow: 6px 0 40px rgba(0, 0, 0, 0.5);
}

.nav-offcanvas.is-open {
  transform: translateX(0);
}

/* Prevent body scroll when open */
body.offcanvas-open {
  overflow: hidden;
}

/* --- Decorative gradient strip on left edge --- */
.nav-offcanvas::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #f97316, #2563eb, #f97316);
  z-index: 1;
}

/* --- Header row (logo + close) --- */
.nav-offcanvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 18px 16px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.nav-offcanvas-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
}

.nav-offcanvas-logo .fa {
  color: #f97316;
  font-size: 22px;
}

.nav-offcanvas-logo span {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: #fff;
  letter-spacing: 0.4px;
  line-height: 1.2;
  text-transform: uppercase;
}

.nav-offcanvas-logo span em {
  color: #f97316;
  font-style: normal;
}

.nav-offcanvas-close {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: #fff;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
}

.nav-offcanvas-close:hover {
  background: rgba(249, 115, 22, 0.25);
  transform: rotate(90deg);
}

/* --- Menu list --- */
.nav-offcanvas-menu {
  list-style: none;
  margin: 0;
  padding: 10px 0 10px 0;
  overflow-y: auto;
  flex: 1;
}

.nav-offcanvas-menu::-webkit-scrollbar {
  width: 4px;
}

.nav-offcanvas-menu::-webkit-scrollbar-track {
  background: transparent;
}

.nav-offcanvas-menu::-webkit-scrollbar-thumb {
  background: rgba(249, 115, 22, 0.4);
  border-radius: 4px;
}

.nav-offcanvas-menu>li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-offcanvas-menu>li>a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 20px 13px 22px;
  color: rgba(255, 255, 255, 0.88);
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, padding-left 0.2s;
  position: relative;
}

.nav-offcanvas-menu>li>a .fa:first-child {
  color: #f97316;
  font-size: 14px;
  width: 16px;
  flex-shrink: 0;
}

.nav-offcanvas-menu>li>a:hover,
.nav-offcanvas-menu>li.sub-open>a {
  background: rgba(249, 115, 22, 0.1);
  color: #fff;
  padding-left: 28px;
}

/* Arrow toggle pushed to the right */
.nav-offcanvas-toggle {
  margin-left: auto;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.25s;
}

.nav-offcanvas-has-sub.sub-open .nav-offcanvas-toggle {
  background: rgba(249, 115, 22, 0.2);
}

/* --- Sub-menu accordion --- */
.nav-offcanvas-sub {
  list-style: none;
  margin: 0;
  padding: 0;
  background: rgba(0, 0, 0, 0.25);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.nav-offcanvas-sub li {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.nav-offcanvas-sub li a {
  display: flex;
  align-items: center;
  padding: 10px 20px 10px 46px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12.5px;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}

.nav-offcanvas-sub li a::before {
  content: '›';
  margin-right: 8px;
  color: #f97316;
  font-size: 16px;
  line-height: 1;
}

.nav-offcanvas-sub li a:hover {
  color: #f97316;
  background: rgba(249, 115, 22, 0.07);
}

/* --- Footer (CTA + social) --- */
.nav-offcanvas-footer {
  padding: 16px 18px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.nav-offcanvas-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 16px;
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: #fff !important;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(249, 115, 22, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.nav-offcanvas-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(249, 115, 22, 0.5);
  text-decoration: none;
  color: #fff !important;
}

.nav-offcanvas-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
}

.nav-offcanvas-social a {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 13px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.nav-offcanvas-social a:hover {
  background: rgba(249, 115, 22, 0.2);
  color: #f97316 !important;
  transform: translateY(-2px);
}

/* --- Hide offcanvas on desktop --- */
@media (min-width: 993px) {

  .nav-offcanvas,
  .nav-offcanvas-overlay {
    display: none !important;
  }
}

/* --- Only show on mobile/tablet breakpoints --- */
@media (max-width: 992px) {
  /* The panel itself is always rendered, just off-screen by default */
  /* Nothing extra needed — transform handles hide/show */
}

/* ============================================================
   STICKY NAVBAR — LAYOUT STABILITY + DROPDOWN STACKING FIX
   ============================================================ */

/* The HEADER element itself must establish a stacking context
   above all page sections (.hp-hero has position:relative +
   overflow:hidden which clips elements painted in the same layer).
   By giving the header z-index here, the dropdown lives in a
   layer that paints over the hero — overflow:hidden cannot clip
   elements from a higher stacking layer. */
.web-pulse-header {
  position: relative;
  z-index: 1040;
  isolation: isolate;
  /* explicit stacking context */
}

/* Reserve height + GPU compositing hint without creating a
   containing block (which would break position:absolute on dropdown) */
.web-pulse-header .webpulse-soluction {
  min-height: 60px;
  will-change: transform;
}

/* Sticky state — NO transform (would re-create the containing block bug) */
.web-pulse-header .webpulse-soluction.stricky-fixed {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 1040 !important;
  background: #fff !important;
  box-shadow: 0 3px 8px rgba(0, 0, 0, .12) !important;
}

/* Dropdown must paint above the sticky bar and all page sections.
   z-index here is within the header's stacking context. */
.web-pulse-header .webpulse-soluction .cs-dropdown,
.cs-submenu>.cs-dropdown {
  z-index: 99999 !important;
  position: absolute !important;
}

/* Prevent Bootstrap modal padding-right from shifting the fixed navbar */
body.modal-open .web-pulse-header .webpulse-soluction.stricky-fixed {
  padding-right: 0 !important;
  width: 100% !important;
}


/* ============================================================
   VERTICAL CENTER ALIGNMENT FOR HEADER LOGO & MENU
   ============================================================ */
@media (min-width: 992px) {

  /* ── Navbar fixed height ── */
  .web-pulse-header .webpulse-soluction {
    height: 68px !important;
    min-height: unset !important;
    overflow: visible !important;
  }

  /* ── Container + row fill the full 68px height ── */
  .web-pulse-header .webpulse-soluction .container,
  .web-pulse-header .webpulse-soluction .container>.row {
    height: 100% !important;
    overflow: visible !important;
  }

  /* Row becomes flexbox; align-items:stretch so cols fill full height */
  .web-pulse-header .webpulse-soluction .container>.row {
    display: flex !important;
    align-items: stretch !important;
    margin: 0 !important;
  }

  /* Hide Bootstrap clearfix pseudo-elements that break flex */
  .web-pulse-header .webpulse-soluction .container>.row::before,
  .web-pulse-header .webpulse-soluction .container>.row::after {
    display: none !important;
  }

  /* ── Logo column: flex so logo is vertically centered ── */
  .web-pulse-header .webpulse-soluction .col-lg-3,
  .web-pulse-header .webpulse-soluction .col-md-4 {
    display: flex !important;
    align-items: center !important;
    float: none !important;
    overflow: visible !important;
  }

  /* ── Nav column: flex so nav wrapper is vertically centered ── */
  .web-pulse-header .webpulse-soluction .col-lg-9,
  .web-pulse-header .webpulse-soluction .col-md-8 {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    float: none !important;
    overflow: visible !important;
  }

  /* ── Logo: override theme8's position:absolute ── */
  .web-pulse-header .webpulse-soluction .w-p-s-logo {
    position: relative !important;
    margin-top: 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    overflow: visible !important;
  }

  /* ── Nav wrapper fills its column ── */
  .web-pulse-header .web-pulse-navigation-wps {
    float: none !important;
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
    overflow: visible !important;
    width: 100% !important;
  }

  /* ── Menu → ul → li: flex chain, overflow:visible keeps dropdown unclipped ── */
  .web-pulse-navigation-wps .web-p-u-l-s-e-menu {
    display: flex !important;
    align-items: center !important;
    overflow: visible !important;
  }

  .web-pulse-navigation-wps .web-p-u-l-s-e-menu ul {
    float: none !important;
    display: flex !important;
    align-items: center !important;
    overflow: visible !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* li: position:relative anchors the dropdown; overflow:visible lets it escape */
  .web-pulse-navigation-wps .web-p-u-l-s-e-menu ul>li {
    float: none !important;
    display: flex !important;
    align-items: center !important;
    position: relative !important;
    overflow: visible !important;
  }
}