/* ===== DESIGN SYSTEM ===== */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800&family=Inter:wght@400;500;600&display=swap");

:root {
  --primary: #035642;
  --secondary: #048e6c;
  --accent: #ff7a00;
  --light-bg: #f5f7f6;
  --dark-bg: #022f2a;
  --text-dark: #1a1a1a;
  --text-light: #6b7280;
  --radius: 16px;
  --shadow: 0 4px 32px rgba(3, 86, 66, 0.1);
  --shadow-card: 0 8px 40px rgba(3, 86, 66, 0.13);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  min-width: 0;
  /* prevents flex/grid children from overflowing */
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: "Inter", "Open Sans", sans-serif;
  color: var(--text-dark);
  background: #fff;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Poppins", sans-serif;
}

/* ===== GLOBAL OVERFLOW PROTECTION ===== */
section,
nav,
footer,
header,
div {
  max-width: 100%;
}

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

.row {
  align-items: stretch !important;
}

.benefit-card,
.why-card,
.testimonial-card-new {
  transform: translateY(0) scale(1) !important;
}

/* ===== NAVBAR ===== */
.navbar {
  background: var(--light-bg);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(3, 86, 66, 0.08);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* LOGO */
.navbar-brand img {
  width: 250px;
  height: auto;
  display: block;
}

/* NAV LINKS */
.navbar-nav {
  align-items: center;
}

.nav-link {
  font-weight: 500;
  color: var(--text-dark) !important;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--primary) !important;
}

/* CTA BUTTON */
.btn-nav {
  background: linear-gradient(90deg, var(--dark-bg), var(--secondary));
  color: #fff !important;
  border-radius: 50px;
  padding: 8px 22px !important;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-nav:hover {
  transform: translateY(-2px);
  color: #fff !important;
}

/* ===== TOGGLER ===== */
.navbar-toggler {
  border: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Custom hamburger icon */
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%23035642' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* ===== TABLET ===== */
@media (max-width: 991px) {
  .navbar-brand img {
    width: 180px;
  }

  .navbar-collapse {
    background: #fff;
    margin-top: 10px;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  }

  .navbar-nav {
    align-items: flex-start !important;
    gap: 10px !important;
  }

  .nav-link {
    width: 100%;
    padding: 8px 0;
  }

  .btn-nav {
    width: 100%;
    text-align: center;
    margin-top: 8px;
  }
}

/* ===== MOBILE ===== */
@media (max-width: 576px) {
  .navbar {
    padding: 10px 0;
  }

  .navbar-brand img {
    width: 140px;
  }
}

/* ===== HERO ===== */
.hero-section {
  background:
    radial-gradient(circle at 50% 90%,
      rgba(255, 215, 185, 0.65) 0%,
      rgba(255, 215, 185, 0) 50%),
    linear-gradient(180deg, #e4fbfa 0%, #ffffff 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

.hero-section::before {
  display: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg, var(--dark-bg), var(--secondary));
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 8px 22px;
  border-radius: 50px;
  margin-bottom: 20px;
  /* box-shadow: 0 4px 16px rgba(255, 122, 0, 0.3); */
  /* animation: pulse-badge 2s infinite; */
}

@keyframes pulse-badge {

  0%,
  100% {
    box-shadow: 0 4px 16px rgba(255, 122, 0, 0.3);
  }

  50% {
    box-shadow: 0 4px 32px rgba(255, 122, 0, 0.55);
  }
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero-title .highlight {
  color: var(--primary);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 24px;
  font-weight: 500;
}

.hero-sub strong {
  color: var(--secondary);
}

/* Scroll Strip */
.scroll-strip {
  background: var(--primary);
  color: #fff;
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
  margin-bottom: 28px;
  border-radius: var(--radius);
  width: 100%;
  position: relative;
}

.scroll-strip-inner {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  animation: scroll-marquee 22s linear infinite;
  gap: 40px;
  /* IMPORTANT */
}

.scroll-strip-inner span {
  padding: 0 32px;
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.92;
  flex-shrink: 0;
}

.scroll-strip-inner span::before {
  content: "🎓 ";
}

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

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

/* Hero Form */
.hero-form {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(3, 86, 66, 0.08);
}

.hero-form .form-label {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.hero-form .form-control,
.hero-form .form-select {
  border-radius: 10px;
  border: 1.5px solid #e0ece8;
  padding: 11px 15px;
  font-size: 0.95rem;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.hero-form .form-control:focus,
.hero-form .form-select:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(4, 142, 108, 0.12);
  outline: none;
}

.btn-cta {
  background: linear-gradient(90deg, var(--dark-bg), var(--secondary));
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  border: none;
  border-radius: 50px;
  padding: 14px 0;
  width: 100%;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  letter-spacing: 0.3px;
}

.btn-cta:hover {
  transform: translateY(-2px) scale(1.02);
}

/* ===== HERO STUDENT SCROLLER ===== */
.hero-scroller-container {
  overflow: hidden;
  position: relative;
  padding: 10px 0;
  width: 100%;
  container-type: inline-size;
}

.hero-scroller-track {
  display: flex;
  gap: 20px;
  transition: transform 0.6s ease-in-out;
  width: max-content;
}

.hero-scroller-track:hover {
  animation-play-state: paused;
}

.hero-scroller-card {
  min-width: calc((100% - 20px) / 2);
  max-width: calc((100% - 20px) / 2);
  background: linear-gradient(180deg, #e6f6f1 0%, #048e6c 100%);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
  height: 450px;
}

.hero-scroller-top {
  background: #fff;
  margin: 12px 12px 0 12px;
  border-radius: 12px;
  padding: 14px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  height: 100px; /* ✅ FIXED HEIGHT */
  text-align: center;
}

.hero-scroller-top span:last-child {
  display: block;
  line-height: 1.3;
}

.scroller-label {
  font-size: 0.75rem;
  color: #555;
  font-weight: 600;
  margin-bottom: 6px;
}

.scroller-logo {
  max-height: 24px;
  width: auto;
  object-fit: contain;
}

.hero-scroller-bottom {
 flex: 1;
  position: relative;
  overflow: hidden;  
   display: flex;
}

.scroller-student-img {
  mask-image: linear-gradient(to top,
      rgba(0, 0, 0, 1) 80%,
      rgba(0, 0, 0, 0) 100%);
  -webkit-mask-image: linear-gradient(to top,
      rgba(0, 0, 0, 1) 80%,
      rgba(0, 0, 0, 0) 100%);
  width: 100%;
  height: 100%;         
  object-fit: cover;
  display: block;
}

.scroller-name {
  color: #fff;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  position: absolute;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  bottom: 16px;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 2;
}

.hero-scroller-bottom::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  z-index: 1;
}

.hero-scroller-track {
  will-change: transform;
}

/* ===== HERO BOTTOM STATS ===== */
.stat-number-sm {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: #000;
}

.stat-label-sm {
  font-size: 0.85rem;
  color: #555;
  font-weight: 500;
  margin-top: 2px;
}

.rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--secondary);
  border-radius: 50px;
  padding: 6px 14px;
  font-weight: 600;
  font-size: 0.85rem;
  color: #333;
}

.rating-pill .stars {
  color: #f5a623;
  font-size: 0.95rem;
}

.hero-stats {
  background: #fff;
  padding: 18px 10px;
  border-radius: 14px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

.stat-number-sm {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
}

.stat-label-sm {
  font-size: 0.8rem;
  color: #666;
}

/* Fix overall alignment */
.hero-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Ensure row is centered */
.hero-section .row {
  margin-left: 0;
  margin-right: 0;
}

/* ============================= */
/* ✅ HERO RESPONSIVE FIX */
/* ============================= */

/* TABLET */
@media (max-width: 991px) {

  .hero-section {
    padding: 80px 0 40px;
    min-height: auto;
  }

  #hero-left {
    text-align: center;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-sub {
    font-size: 1rem;
  }

  .hero-form {
    padding: 24px 20px;
  }

  /* SCROLLER */
  .hero-scroller-card {
    min-width: calc((100% - 16px) / 2);
    max-width: calc((100% - 16px) / 2);
    height: 340px;
  }

  .hero-scroller-track {
    gap: 16px;
  }

  /* STATS */
  .hero-stats {
    margin-top: 20px;
  }
}


/* MOBILE */
@media (max-width: 576px) {

  .hero-section {
    padding: 70px 0 30px;
  }

  .hero-badge {
    font-size: 0.8rem;
    padding: 6px 14px;
  }

  .hero-title {
    font-size: 1.8rem;
    line-height: 1.2;
  }

  .hero-sub {
    font-size: 0.95rem;
  }

  .scroll-strip-inner span {
    font-size: 0.75rem;
    padding: 0 18px;
  }
  

  /* FORM */
  .hero-form {
    padding: 20px 16px;
  }

  .hero-form .form-control,
  .hero-form .form-select {
    font-size: 0.9rem;
    padding: 10px 12px;
  }

  .btn-cta {
    font-size: 0.95rem;
    padding: 12px 0;
  }

  /* SCROLLER FIX */
  .hero-scroller-container {
    margin-top: 20px;
  }

  .hero-scroller-card {
   min-width: 100%;   /* ✅ IMPORTANT */
    max-width: 100%;
    height: 500px;
  }

  .hero-scroller-top {
    padding: 10px;
    min-height: 70px;
  }

  .scroller-name {
    font-size: 0.9rem;
  }

  /* STATS */
  .hero-stats {
    padding: 14px 6px;
  }

  .stat-number-sm {
    font-size: 1.2rem;
  }

  .stat-label-sm {
    font-size: 0.7rem;
  }

  /* RATINGS */
  .rating-pill {
    font-size: 0.75rem;
    padding: 5px 10px;
  }
}


/* SMALL MOBILE (VERY SMALL DEVICES) */
@media (max-width: 400px) {

  .hero-title {
    font-size: 1.6rem;
  }

  .hero-scroller-card {
    min-width: 100%;
    max-width: 100%;
  }

  .scroll-strip-inner span {
    font-size: 0.7rem;
  }
}

/* ===== LOGOS SCROLLER ===== */
.logos-section {
  background: var(--primary);
  padding: 60px 0 0;
  overflow: hidden;
  position: relative;
}

/* Grid line background */
.logos-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}

/* Radial globe glow in the center */
.logos-grid-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 40%,
      rgba(4, 142, 108, 0.25) 0%,
      transparent 70%);
}

.logos-overflow {
  padding-top: 10px;
}

.logos-inner {
  position: relative;
  z-index: 1;
  padding-bottom: 60px;
}

/* Heading */
.logos-text {
  text-align: center;
  margin-bottom: 36px;
  padding: 0 16px;
}

.logos-heading {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.3;
}

.logos-subheading {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.97rem;
  margin: 0;
}

/* Scroll rows */
.logos-overflow {
  overflow: hidden;
}

.logos-track {
  display: flex;
  gap: 16px;
  animation: logos-scroll-left 22s linear infinite;
  width: max-content;
}

.logos-track-reverse {
  animation: logos-scroll-right 22s linear infinite;
}

.logos-track:hover,
.logos-track-reverse:hover {
  animation-play-state: paused;
}


/* ============================= */
/* ✅ LOGOS RESPONSIVE FIX */
/* ============================= */

/* TABLET */
@media (max-width: 991px) {

  .logos-section {
    padding: 50px 0 0;
  }

  .logos-heading {
    font-size: 1.6rem;
  }

  .logos-subheading {
    font-size: 0.9rem;
  }

  .logos-track {
    gap: 12px;
    animation-duration: 28s; /* slower for smoothness */
  }

  .logo-card {
    width: 130px;
    height: 70px;
    padding: 10px;
  }
}


/* MOBILE */
@media (max-width: 576px) {

  .logos-section {
    padding: 40px 0 0;
  }

  .logos-text {
    margin-bottom: 24px;
  }

  .logos-heading {
    font-size: 1.3rem;
  }

  .logos-subheading {
    font-size: 0.8rem;
  }

  .logos-track {
    gap: 10px;
    animation-duration: 5s; /* smoother scroll */
  }

  .logo-card {
    width: 110px;
    height: 60px;
    padding: 8px;
  }

  .logo-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }
}


/* SMALL MOBILE */
@media (max-width: 400px) {

  .logos-heading {
    font-size: 1.1rem;
  }

  .logos-track {
    gap: 8px;
    animation-duration: 5s;
  }

  .logo-card {
    width: 95px;
    height: 55px;
  }
}

/* ===== HIRING PARTNERS ===== */
.hiring-section {
  background: #fff;
  padding: 60px 0 40px;
  overflow: hidden;
}

.hiring-track {
  display: flex;
  align-items: center;
  gap: 0;
  animation: logos-scroll-left 35s linear infinite;
  width: max-content;
}

.hiring-track-reverse {
  animation: logos-scroll-right 35s linear infinite;
}

.hiring-track:hover,
.hiring-track-reverse:hover {
  animation-play-state: paused;
}

.hiring-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 40px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #333;
  white-space: nowrap;
}

.hiring-divider {
  width: 24px;
  height: 40px;
  background:
    radial-gradient(circle at -4px 50%, #fff 12px, transparent 13px),
    radial-gradient(circle at 28px 50%, #fff 12px, transparent 13px);
  background-color: rgba(0, 0, 0, 0.05);
}

/* ===== ACADEMIES (Uses logos-section base) ===== */
.academy-card {
  background: #fff;
  border-radius: 12px;
  padding: 16px 24px;
  min-width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  height: 70px;
}

.academy-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.academy-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Logo cards — image only, white box */
.logo-card {
  background: #fff;
  border-radius: 14px;
  padding: 12px;
  width: 160px;
  height: 80px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
}

.logo-card img {
  max-width: 120px;
  /* 🔥 CONTROL WIDTH */
  max-height: 50px;
  /* 🔥 CONTROL HEIGHT */
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.logo-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

/* Infinite scroll keyframes */
@keyframes logos-scroll-left {
  0% {
    transform: translateX(0);
  }

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

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

  100% {
    transform: translateX(0);
  }
}

/* Half-circle curved bottom */
.logos-curve {
  position: relative;
  height: 80px;
  background: #fff;
  z-index: 2;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  margin-top: -1px;
}

/* ===== WORKSHOP INTRO ===== */
.section-intro {
  padding: 80px 0 40px;
  text-align: center;
}

.section-tag {
  display: inline-block;
  background: rgba(3, 86, 66, 0.08);
  color: var(--primary);
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.section-sub {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
}

/* ===== WORKSHOP SECTIONS ===== */
.workshop-section {
  padding: 80px 0;
}

.workshop-section.alt {
  background: var(--light-bg);
}

.workshop-img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.workshop-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}

.workshop-img:hover img {
  transform: scale(1.04);
}

.workshop-tag {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 15px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.workshop-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.workshop-points {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}

.workshop-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(3, 86, 66, 0.07);
  font-size: 1rem;
  color: var(--text-dark);
}

.workshop-points li::before {
  content: "✓";
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  background: rgba(4, 142, 108, 0.12);
  color: var(--secondary);
  font-weight: 700;
  border-radius: 50%;
  font-size: 0.8rem;
  margin-top: 1px;
}

.duration-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 122, 0, 0.1);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.btn-outline-primary-custom {
  border: 2px solid var(--primary);
  color: var(--primary);
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  padding: 11px 30px;
  border-radius: 50px;
  background: transparent;
  cursor: pointer;
  transition:
    background-color 0.25s,
    color 0.25s,
    transform 0.25s,
    box-shadow 0.25s;
  text-decoration: none;
  display: inline-block;
}

.btn-outline-primary-custom:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}
/* ===================================== */
/* ✅ GLOBAL MOBILE CENTER FIX */
/* ===================================== */
@media (max-width: 576px) {

  .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .row {
    margin-left: 0;
    margin-right: 0;
  }
}


/* ===================================== */
/* ✅ SECTION INTRO RESPONSIVE */
/* ===================================== */
@media (max-width: 991px) {

  .section-intro {
    padding: 60px 0 30px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-sub {
    font-size: 1rem;
    padding: 0 10px;
  }
}

@media (max-width: 576px) {

  .section-intro {
    padding: 40px 0 20px;
    text-align: center;
  }

  .section-tag {
    font-size: 0.7rem;
    padding: 5px 14px;
  }

  .section-title {
    font-size: 1.4rem;
    line-height: 1.3;
  }

  .section-sub {
    font-size: 0.9rem;
    max-width: 100%;
  }
}

@media (max-width: 400px) {
  .section-title {
    font-size: 1.2rem;
  }
}


/* ===================================== */
/* ✅ WORKSHOP SECTION RESPONSIVE */
/* ===================================== */

/* TABLET */
@media (max-width: 991px) {

  .workshop-section {
    padding: 60px 0;
  }

  .workshop-title {
    font-size: 1.6rem;
  }

  .workshop-points li {
    font-size: 0.95rem;
  }

  .workshop-img img {
    max-height: 300px;
  }
}


/* MOBILE */
@media (max-width: 576px) {

  .workshop-section {
    padding: 40px 0;
    text-align: center;
  }

  /* STACK FIX */
  .workshop-section .row {
    flex-direction: column-reverse;
    gap: 20px;
    align-items: center;
  }

  .workshop-section.alt .row {
    flex-direction: column-reverse;
  }

  .workshop-section .col-lg-6 {
    width: 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  /* TEXT */
  .workshop-title {
    font-size: 1.3rem;
  }

  .workshop-tag {
    font-size: 0.7rem;
    padding: 4px 12px;
  }

  .duration-badge {
    font-size: 0.8rem;
    padding: 5px 12px;
  }

  /* LIST */
  .workshop-points {
    text-align: left;
    margin: 0 auto;
    max-width: 95%;
  }

  .workshop-points li {
    font-size: 0.85rem;
    padding: 6px 0;
  }

  /* IMAGE CENTER FIX */
  .workshop-img {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .workshop-img img {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 220px;
    object-fit: cover;
  }
}


/* SMALL MOBILE */
@media (max-width: 400px) {

  .workshop-title {
    font-size: 1.1rem;
  }

  .workshop-img img {
    max-height: 180px;
  }

  .workshop-points li {
    font-size: 0.8rem;
  }
}


/* ===================================== */
/* ✅ IMAGE FIX (CRITICAL) */
/* ===================================== */
.workshop-img img {
  width: 100%;
  height: auto;           /* 🔥 FIXED */
  max-height: 380px;
  object-fit: cover;
}



/* ===== BONUS STRIP ===== */
.bonus-strip {
  background: var(--primary);
  padding: 75px 0 0px;
  text-align: center;
  position: relative;
  overflow: hidden;
  height: 292px;
}

/* Same grid line background as logos section */
.bonus-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}

/* Reverse arch at top — white shape that curves DOWN into the strip */
.bonus-strip::before {
  content: "";
  position: absolute;
  top: 0;
  left: -5%;
  width: 110%;
  height: 72px;
  background: #fff;
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
  z-index: 1;
}

/* Content above pseudo-elements */
.bonus-strip .container {
  position: relative;
  z-index: 2;
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.bonus-strip h3 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: #fff;
  margin: 0;
  letter-spacing: 0.3px;
}

.bonus-strip h3 span {
  color: var(--accent);
}

.bonus-strip p {
  color: rgba(255, 255, 255, 0.75);
  margin-top: 8px;
  font-size: 1rem;
}

.btn-register {
  background: var(--accent);
  color: #fff !important;
  border-radius: 50px;
  padding: 8px 22px !important;
  font-weight: 600;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  text-decoration: none;
  width: 200px;
}

/* ===================================== */
/* ✅ BONUS STRIP RESPONSIVE FIX */
/* ===================================== */

/* TABLET */
@media (max-width: 991px) {

  .bonus-strip {
    padding: 60px 0 20px;
    height: auto; /* 🔥 remove fixed height */
  }

  .bonus-strip .container {
    height: auto;
    padding: 20px 10px;
  }

  .bonus-strip h3 {
    font-size: 1.5rem;
  }

  .bonus-strip p {
    font-size: 0.95rem;
  }
}


/* MOBILE */
@media (max-width: 576px) {

  .bonus-strip {
    padding: 50px 0 20px;
    height: auto; /* 🔥 critical fix */
  }

  .bonus-strip::before {
    height: 50px; /* smaller curve */
  }

  .bonus-strip .container {
    height: auto;
    padding: 10px 12px;
  }

  .bonus-strip h3 {
    font-size: 1.2rem;
    line-height: 1.4;
  }

  .bonus-strip p {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .btn-register {
    width: auto;
    padding: 10px 20px !important;
    font-size: 0.9rem;
    margin-top: 10px;
  }
}


/* SMALL MOBILE */
@media (max-width: 400px) {

  .bonus-strip h3 {
    font-size: 1.05rem;
  }

  .bonus-strip p {
    font-size: 0.8rem;
  }

  .btn-register {
    font-size: 0.85rem;
    padding: 8px 16px !important;
  }
}

/* ===== BENEFITS ===== */
.benefits-section {
  padding: 80px 0;
  background: var(--light-bg);
}

.benefit-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid rgba(3, 86, 66, 0.06);
  height: 100%;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}

.benefit-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-card);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg,
      rgba(3, 86, 66, 0.1),
      rgba(4, 142, 108, 0.15));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 16px;
}

.benefit-card h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.benefit-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin: 0;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  padding: 60px 0;
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

.testimonials-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 1;
}

.testimonials-grid-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%,
      rgba(4, 142, 108, 0.3) 0%,
      transparent 70%);
}

.testimonial-carousel-wrapper {
  margin-top: 40px;
  overflow: hidden;
  padding: 50px 0;
}

.testimonial-carousel {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.testimonial-card-new {
  background: #fff;
  border-radius: 20px;
  width: calc(50% - 12px);
  min-width: calc(50% - 12px);
  max-width: calc(50% - 12px);
  height: auto;
  min-height: 320px;
  display: flex;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
  flex-shrink: 0;
  align-items: stretch;
}

.t-content {
  flex: 1;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* 🔥 EVEN SPACING */
}

.t-text {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.t-highlight {
  color: var(--secondary);
  font-weight: 600;
}

.t-name {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: var(--secondary);
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.t-role {
  font-size: 0.85rem;
  color: #555;
  margin-bottom: auto;
  padding-bottom: 20px;
}

.t-placed {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary);
}

.company-logo {
  font-family: "Arial", sans-serif;
  font-weight: 800;
}

.t-image {
  width: 260px;
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
}

.t-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* 🔥 IMPORTANT */
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 30px;
}

.nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  color: #fff;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  transform: scale(1.05);
}

.testimonial-card-new:hover {
  transform: translateY(-6px);
  transition: 0.3s ease;
}
/* ===================================== */
/* 💻 TABLET (<= 992px) */
/* ===================================== */

@media (max-width: 992px) {

  .testimonial-card-new {
    min-width: 85vw;
    max-width: 85vw;
  }

  .t-content {
    padding: 22px;
  }

  .t-text {
    font-size: 0.9rem;
  }

  .t-image {
    width: 200px;
  }
}

/* ===================================== */
/* 📱 MOBILE (<= 768px) */
/* ===================================== */

@media (max-width: 768px) {

  .testimonial-carousel-wrapper {
    justify-content: flex-start; /* slider feel */
  }

  .testimonial-card-new {
    min-width: 90vw;
    max-width: 90vw;
    border-radius: 16px;
  }

  .t-content {
    padding: 16px;
  }

  .t-text {
    font-size: 0.8rem;
    line-height: 1.4;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .t-name {
    font-size: 1rem;
  }

  .t-placed {
    font-size: 0.8rem;
  }

  .t-image {
    width: 140px;
  }
}

/* ===================================== */
/* 📱 SMALL MOBILE (<= 480px) */
/* ===================================== */

@media (max-width: 480px) {

  .testimonial-card-new {
    min-width: 92vw;
    max-width: 92vw;
  }

  .t-image {
    width: 120px;
  }

  .t-text {
    font-size: 14px;
    height: 200px;
  }

  .t-name {
    font-size: 0.9rem;
  }

  .t-placed {
    font-size: 0.75rem;
  }

  .nav-btn {
    width: 40px;
    height: 40px;
  }
}

/* ======================= */
/* 📱 SMALL MOBILE (<= 400px) */
/* ======================= */
@media (max-width: 400px) {

  .testimonial-card-new {
    min-width: 92vw;
  }

  .t-image {
    width: 130px;
  }

  .t-text {
    font-size: 14px;
    height: 200px;
  }

  .t-name {
    font-size: 0.85rem;
  }

  .t-placed {
    font-size: 0.7rem;
  }
}

/* ======================= */
/* ⚡ EXTRA POLISH */
/* ======================= */

/* Smooth transition */
.testimonial-card-new {
  transition: transform 0.3s ease;
}

/* Center carousel properly */
.testimonial-carousel {
  align-items: stretch;
}

/* ===== WHY US ===== */
.why-section {
  padding: 80px 0;
  background: var(--light-bg);
}

.why-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  height: 100%;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  border-top: 3px solid var(--secondary);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.why-icon {
  font-size: 2.4rem;
  margin-bottom: 14px;
}

.why-card h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.why-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin: 0;
}

/* ===== PRICING CTA ===== */
.pricing-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--dark-bg) 0%, #035642 100%);
}

.Pricing-box {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
}

.Pricing-box img {
  width: 450px;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 50px 40px;
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}

.price-tag {
  font-family: "Poppins", sans-serif;
  font-size: 4rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.price-tag sup {
  font-size: 2rem;
  vertical-align: top;
  margin-top: 10px;
}

.price-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  margin-top: 4px;
  margin-bottom: 28px;
}

.price-includes {
  list-style: none;
  padding: 0;
  margin-bottom: 28px;
}

.price-includes li {
  color: #fff;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.price-includes li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
}

.urgency-text {
  color: rgba(255, 122, 0, 0.9);
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 12px;
}

.btn-cta-lg {
  background: linear-gradient(90deg, var(--accent), #ff9a3c);
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  border-radius: 50px;
  padding: 16px 48px;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-cta-lg:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 12px 36px rgba(255, 122, 0, 0.4);
  color: #fff;
}

/* ===== RESPONSIVE PRICING SECTION ===== */

/* Tablet */
@media (max-width: 992px) {
  .Pricing-box {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .Pricing-box img {
    width: 320px;
  }

  .pricing-card {
    padding: 40px 28px;
    max-width: 100%;
  }

  .price-tag {
    font-size: 3rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .pricing-section {
    padding: 60px 0;
  }

  .Pricing-box {
    flex-direction: column;
    align-items: center;
  }

  /* 🔥 REMOVE IMAGE */
  .Pricing-box img {
    display: none;
  }

  .pricing-card {
    width: 100%;
    padding: 30px 20px;
    border-radius: 18px;
  }

  .price-tag {
    font-size: 2.5rem;
  }

  .price-tag sup {
    font-size: 1.3rem;
  }

  .price-includes li {
    font-size: 0.9rem;
  }

  .btn-cta-lg {
    width: 100%;
    padding: 14px 20px;
    font-size: 1rem;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .price-tag {
    font-size: 2.2rem;
  }

  .pricing-card {
    padding: 25px 16px;
  }

  .price-includes li {
    font-size: 0.85rem;
  }

  .urgency-text {
    font-size: 0.8rem;
  }
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark-bg);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 28px;
}

.footer-brand {
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.footer-brand span {
  color: var(--accent);
}

.footer-desc {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 260px;
}

.footer h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--accent);
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.social-icon {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.2s;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.social-icon:hover {
  background: var(--accent);
  transform: scale(1.12);
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.85rem;
  margin: 0;
}

/* ===== UTILITIES ===== */
.section-divider {
  height: 3px;
  background: linear-gradient(90deg,
      var(--primary),
      var(--secondary),
      var(--accent));
}

.text-primary-custom {
  color: var(--primary) !important;
}

.text-accent {
  color: var(--accent) !important;
}

.bg-primary-custom {
  background: var(--primary) !important;
}

/* fade-up is just a selector hook for GSAP — no hidden styles here */
.floating-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ffffff;
  padding: 10px 14px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 9999;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* TIMER */
.cta-timer {
  font-size: 0.8rem;
  font-weight: 600;
  color: #d32f2f;
}

/* BUTTON */
.cta-btn {
  border-radius: 50px;
  padding: 8px 14px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  text-decoration: none;
  transition: 0.3s;
}

/* ACTIVE BUTTON */
.register-btn {
  background: #0d5c43;
  color: #fff;
}

/* DISABLED STATE */
.register-btn.disabled {
  background: #ccc !important;
  color: #666 !important;
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: none;
}

.footer-brand {
  margin-bottom: 12px;
}

.footer-brand img {
  width: 180px;       /* desktop size */
  max-width: 100%;
  height: auto;
  display: block;
}

/* Center on mobile */
@media (max-width: 576px) {
  .footer-brand {
    display: flex;
    /* justify-content: center; */
  }

  .footer-brand img {
    width: 150px;
  }
}
/* ===== TOAST NOTIFICATION ===== */

.toast-box {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #fff;
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  z-index: 9999;

  opacity: 0;
  transform: translateY(-20px);
  pointer-events: none;
  transition: all 0.3s ease;
}

.toast-box.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.toast-content {
  display: flex;
  gap: 12px;
  align-items: center;
}

#toastIcon {
  font-size: 1.3rem;
}

/* SUCCESS */
.toast-box.success #toastIcon {
  color: #048e6c;
}

/* ERROR */
.toast-box.error #toastIcon {
  color: #e74c3c;
}

#toastTitle {
  display: block;
  font-size: 0.95rem;
}

#toastMessage {
  font-size: 0.8rem;
  color: #666;
  margin: 0;
}