/* ==========================================================
   WISH Bangladesh - Home page styles (full)
   ========================================================== */

:root {
  --teal-dark: #0f5a54;
  --teal: #146860;
  --teal-deep: #006862;
  --coral: #e77a54;
  --coral-dark: #dd6b42;
  --olive: #c6cf4d;
  --olive-dark: #b4bd3c;
  --sage: #5f9c8e;
  --sage-dark: #3f7d70;
  --yellow: #f0b429;
  --yellow-dark: #e0a010;
  --cream: #fcf7f1;
  --cream-2: #f2eed3;
  --cream-3: #eeead0;
  --text-dark: #17332f;
  --text-body: #3c5450;
  --font-display: 'Fredoka', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background-color: var(--cream);
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  position: relative;
  min-height: 100vh;
}

img,
svg,
video,
iframe {
  max-width: 100%;
}

/* Any full-bleed / wide container should never push the page wider than the viewport */
.container,
.container-fluid,
.row {
  max-width: 100%;
}

body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/bg_img_transparent.png');
  background-repeat: repeat;
  background-size: 360px 360px;
  opacity: 0.3;
  z-index: -1;
  pointer-events: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--text-dark);
  margin: 0;
}

a {
  text-decoration: none;
}

.section {
  padding: 70px 0;
}

.section-title {
  color: var(--teal-dark);
  font-size: 2.1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

/* ============ BUTTONS ============ */
.btn {
  --bs-btn-border-radius: 0rem !important;
}

.btn {
  font-weight: 600;
  padding: 0.65rem 1.6rem;
  font-size: 0.95rem;
  letter-spacing: 0.2px;
  border: none;
}

.btn-login {
  background: var(--coral);
  border-radius: 8px !important;
  color: #fff !important;
  padding: 0.5rem 1.4rem;
  font-weight: 600;
}

.btn-login:hover {
  background: var(--coral-dark);
  color: #fff;
}

.btn-coral {
  color: var(--coral);
  background: #FAF7D4;
}

.btn-coral:hover {
  color: var(--coral);
  background: #fffbbe;
}

.btn-coral-custom {
  background: var(--coral-dark);
  color: #ffffff;
  width: 250px;
}

/*.btn-coral:hover {
background: var(--coral-dark);
color: #fff;
}*/

.btn-outline-cream {
  background: #FAF7D4;
  color: var(--teal-dark);
}

.btn-outline-cream:hover {
  background: #fbf5b8;
  color: var(--teal-dark);
}

/*.btn-outline-cream:hover {
  background: rgba(255, 255, 255, 0.15);
}*/

.btn-teal-solid {
  background: var(--teal-dark);
  color: #fff !important;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  padding: 0.75rem 2rem;
}

.btn-teal-solid:hover {
  background: var(--teal-deep);
  color: #fff;
}

.btn-yellow {
  background: var(--yellow);
  color: var(--text-dark) !important;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  padding: 1rem 2rem;
}

.btn-yellow:hover {
  background: var(--yellow-dark);
  color: var(--text-dark);
}

.btn-olive {
  background: var(--olive);
  color: var(--text-dark) !important;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  padding: 0.7rem 1.8rem;
}

.btn-olive:hover {
  background: var(--olive-dark);
}

/* ============ NAV ============ */
.site-nav {
  background: #81a694;
  inset: 0;
  background: linear-gradient(100deg, rgba(129, 166, 148, 0.82) 0%, rgba(129, 166, 148, 0.55) 55%, rgba(129, 166, 148, 0.35) 100%);
  padding: 0.6rem 0;
  width: 100%;
  height: 78px !important;
  position: fixed;
  top: 0;
  z-index: 1030;
  opacity: 1;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  transition: background-color 0.35s ease, box-shadow 0.35s ease;
}

/*.site-nav:hover,*/
.site-nav.nav-scrolled {
  background: var(--teal-dark);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.brand-logo {
  height: 42px;
}

/* Nav is anchored to the right: brand sits left, everything else
   (links + login button on desktop, toggler on tablet/mobile) hugs the right edge. */
.nav-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-nav-links {
  gap: 0.5rem;
  align-items: center;
}

.site-nav .nav-link {
  color: #ffffff!important;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.6px;
  padding: 0.5rem 1rem !important;
  transition: color 0.25s ease;
}

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

.site-nav .dropdown-menu {
  border: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  padding: 0.4rem;
}

.site-nav .dropdown-item {
  border-radius: 6px;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.site-nav .dropdown-item:hover {
  background: var(--cream-2);
  color: var(--teal-dark);
}

/* Login button sits at the very end (right edge) of the nav-link list */
.nav-login-btn {
  margin-left: 0.75rem;
}

/* ---- Toggler (tablet / mobile trigger) ---- */
.site-nav .navbar-toggler {
  border: none;
  padding: 0.35rem 0.55rem;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: none !important;
}

.site-nav .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.4' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ---- Left-side navigation drawer (offcanvas) for tablet / mobile ---- */
.site-nav-drawer {
  width: 78%!important;
  max-width: 340px;
  background: var(--teal-dark);
  color: #fff;
}

.site-nav-drawer .offcanvas-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 1.1rem 1.25rem;
}

.drawer-logo {
  height: 38px;
}

.site-nav-links-mobile {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-top: 0.5rem;
}

.site-nav-links-mobile .nav-link {
  color: #fff !important;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.4px;
  padding: 0.85rem 0.4rem !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-nav-links-mobile .nav-link:hover,
.site-nav-links-mobile .nav-link:focus {
  color: var(--yellow) !important;
}

.site-nav-links-mobile .dropdown-menu {
  position: static !important;
  inset: auto !important;
  transform: none !important;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
  border-radius: 8px;
  margin: 0.2rem 0 0.4rem;
  padding: 0.3rem;
  width: 100%;
}

.site-nav-links-mobile .dropdown-item {
  color: #eafaf6;
  padding: 0.6rem 0.9rem;
}

.site-nav-links-mobile .dropdown-item:hover,
.site-nav-links-mobile .dropdown-item:focus {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.drawer-login-btn {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 1.25rem;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  background: url('../images/SD-5.jpg') center/cover no-repeat;
  padding: 90px 0 100px;
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(15, 60, 55, 0.82) 0%, rgba(15, 60, 55, 0.55) 55%, rgba(15, 60, 55, 0.35) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.hero-title {
  color: #fdfaf0;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.hero-title {
  color: #FAF7D4;
}

.hero-sub {
  color: #eef3f0;
  font-size: 1.05rem;
  max-width: 440px;
  margin-bottom: 1.8rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.watch-text {
  color: #fdfaf0;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.video-frame {
  background: #14313b;
  border: 3px solid #0b1f26;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

.video-frame video {
  width: 100%;
  height: 340px;
  object-fit: cover;
  background: #1a1a2e;
  display: block;
}

/* ============ PATH SECTION ============ */
.path-section {
  padding: 70px 0 50px;
}

.path-section .section-title {
  color: var(--teal-dark);
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.path-row {
  margin-top: 1rem !important;
}

.path-step {
  text-align: center;
  height: 100%;
  padding: 2rem;
}

.path-label-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
}

.path-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--coral);
}

.col-md-4:nth-child(2) .path-icon {
  color: var(--olive-dark);
}

.col-md-4:nth-child(3) .path-icon {
  color: var(--teal-dark);
}

.path-label {
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--teal-dark);
  font-size: 0.85rem;
  margin: 0;
}

.path-card {
  border-radius: 18px;
  padding: 2rem 1.8rem 0;
  color: #fff;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.path-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.path-card h3 {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
}

.path-card p {
  color: #ffffff;
  font-size: 0.9rem;
  opacity: 0.92;
  flex: 0 0 auto;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 1rem;
  padding-right: 0.5rem;
}

.path-card-coral {
  background: var(--coral);
}

.path-card-olive {
  background: var(--olive);
  color: #ffffff;
}

.path-card-olive h3 {
  color: #ffffff;
}

.path-card-olive p {
  color: #ffffff;
}

.path-card-teal {
  background: var(--teal-dark);
}

.path-illustration {
  border-radius: 12px 12px 0 0;
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -1.8rem;
  margin-right: -1.8rem;
  padding: 2rem;
  overflow: hidden;
}

.path-illustration img {
  width: 100%;
  height: 100%;
  min-height: 110px;
  object-fit: cover;
  display: block;
}

/* ============ OFFER SECTION (matches reference screenshot) ============ */
.offer-section {
  --coral-light: #f0a98f;
  --teal-light: #a9c9c1;
  background-color: transparent;
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

.offer-title {
  color: var(--coral);
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 2.75rem;
}

.offer-row {
  position: relative;
  z-index: 1;
}

.offer-card {
  border-radius: 22px;
  padding: 1.7rem 1.9rem 1.9rem;
  height: 100%;
  color: #fff;
  box-shadow: 0 10px 24px rgba(23, 51, 47, 0.08);
}

.offer-card h3 {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  margin-bottom: 1.4rem;
}

.offer-card-coral {
  background: var(--coral);
}

.offer-card-teal {
  background: var(--teal-dark);
}

.offer-card-body {
  display: flex;
  align-items: stretch;
  min-height: 190px;
}

.offer-icon {
  flex: 0 0 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.offer-icon svg {
  width: 88px;
  height: 88px;
}

.offer-inset {
  flex: 1;
  display: flex;
  align-items: center;
  min-width: 0;
  padding: 1.6rem 3.4rem 1.6rem 1.8rem;
  clip-path: polygon(0 0, 80% 0, 100% 50%, 80% 100%, 0 100%);
  border-radius: 20px;
}

.offer-inset-coral {
  background: #f6ccbc;
}

.offer-inset-teal {
  background: var(--teal-light);
}

.offer-inset ul {
  margin: 0;
  padding-left: 1.1rem;
  list-style: none;
}

.offer-inset ul li {
  font-weight: 700;
  margin-bottom: 0.6rem;
  font-size: 1rem;
  line-height: 1.35;
  position: relative;
  padding-left: 1.1rem;
}

.offer-inset-coral ul li {
  color: var(--coral-dark);
}

.offer-inset-teal ul li {
  color: var(--teal-dark);
}

.offer-inset ul li::before {
  content: "\2022";
  position: absolute;
  left: 0;
}

.offer-inset-coral ul li::before {
  color: var(--coral-dark);
}

.offer-inset-teal ul li::before {
  color: var(--teal-dark);
}

.offer-btn-wrap {
  margin-top: 2.75rem;
}

.offer-btn {
  font-weight: 700;
}

@media (max-width: 991.98px) {
  .offer-card-body {
    min-height: 0;
  }
  .offer-inset {
    clip-path: none;
    border-radius: 12px;
    padding: 1.4rem 1.4rem;
  }
}

@media (max-width: 575.98px) {
  .offer-card-body {
    flex-direction: column;
    gap: 1rem;
  }
  .offer-icon {
    flex: 0 0 auto;
  }
}

/* ============ HOW WISH HELPS ============ */

.quote-card {
  background: var(--olive);
  border-radius: 22px;
  padding: 1.4rem;
  height: 100%;
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: stretch;
}

.quote-badge {
  position: absolute;
  top: -16px;
  left: 40%;
  background: var(--coral);
  opacity: .8;
  color: #fff;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-family: Georgia, serif;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.quote-panel {
  background: var(--cream-2);
  border-radius: 16px;
  padding: 1.7rem 1.2rem;
  display: flex;
  align-items: center;
  width: 100%;
}

.quote-card p {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--teal-dark);
  text-align: center;
  margin: 0;
  line-height: 1.5;
}

.founder-card {
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  min-height: 300px;
  position: relative;
}

.founder-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.founder-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--coral);
  color: #fff;
  text-align: center;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.6rem 0.5rem;
}

/* ============ TESTIMONIALS FROM CLIENTS ============ */
.testimonial-section {
  padding: 70px 0;
}

.testimonial-heading {
  font-size: 3rem;
  font-weight: 600;
  color: var(--teal-dark);
  line-height: 1.2;
  margin-bottom: 0.5rem;
  text-align: center !important;
}

.client-photo {
  overflow: hidden;
  position: relative;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.client-photo img {
  width: 100%;
  display: block;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.client-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--teal-dark);
  color: #fff;
  text-align: center;
  padding: 0.8rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.client-caption span {
  font-weight: 400;
  font-size: 0.85rem;
  opacity: 0.9;
  display: block;
}

.testimonial-box {
  border-radius: 6px;
  border: 3px solid #cdad7d;
  padding: 4rem;
  margin-top: 1rem;
  text-align: center;
  position: relative;
}

.testimonial-box p {
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

.testimonial-school-logo {
  height: 220px;
}

.testimonial-custom-padding {
  padding: 0 4rem;
}

.testimonial-section .btn-olive {
  background: var(--olive);
  color: var(--text-dark) !important;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  padding: 0.8rem 2.5rem;
  font-weight: 700;
}

.testimonial-section .btn-olive:hover {
  background: var(--olive-dark);
  color: var(--text-dark) !important;
}

/* ============ COMPOUNDS BANNER ============ */
.compounds-banner {
  position: relative;
  text-align: center;
}

.compounds-mid {
  position: relative;
  background: linear-gradient(135deg, #f6cf6a 0%, var(--yellow) 100%);
  padding: 55px 0 45px;
}

.compounds-mid::before,
.compounds-mid::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 28px;
  background: inherit;
  pointer-events: none;
}

.compounds-icon {
  position: absolute;
  top: -42px;
  left: 50%;
  transform: translateX(-50%);
  width: 86px;
  height: 86px;
  background: var(--coral);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.1rem;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.14);
  z-index: 2;
}

.compounds-mid .container {
  padding-top: 20px;
}

.compounds-banner h2 {
  color: var(--teal-dark);
  font-size: 1.65rem;
  font-weight: 700;
  max-width: 900px;
  margin: 0 auto 1.75rem;
  line-height: 1.35;
}

.compounds-card {
  background: rgba(255, 255, 255, 0.32);
  border-radius: 2rem;
  padding: 1.6rem 1.75rem;
}

.compound-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  height: 100%;
  text-align: left;
}

.compound-item-icon {
  width: 80px;
  height: 80px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  border-radius: 50%;
  /*border: 2px solid currentColor;*/
}

.compound-icon-teal {
  color: var(--teal);
}

.compound-icon-coral {
  color: var(--coral);
}

.compound-item-box {
  background: var(--cream-2);
  border-radius: 10px;
  padding: 0.85rem 1.1rem;
  flex: 1;
}

.compound-item-box h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--text-dark);
}

.compound-item-box p {
  font-size: 0.82rem;
  margin: 0;
  color: var(--text-body);
  line-height: 1.35;
}

@media (max-width: 767px) {
  .compounds-doodle {
    height: 55px;
    background-size: 180px 96px;
  }

  .compounds-icon {
    width: 66px;
    height: 66px;
    top: -33px;
    font-size: 1.6rem;
  }

  .compounds-banner h2 {
    font-size: 1.3rem;
  }

  .compound-item {
    flex-direction: row;
  }
  .site-nav-links-mobile .nav-link{
    font-size: 14px;
    letter-spacing: 0;
  }
}

/* ============ TRUSTED SECTION ============ */
.trusted-section {
  padding: 70px 0;
}

.trusted-section .section-title {
  color: var(--teal-dark);
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.trusted-sub {
  color: #FEC852;
  font-weight: 600;
  letter-spacing: 0.3px;
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}

.trusted-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 0 auto;
}

.stat-card {
  background: #ffffff;
  border-radius: 2rem;
  padding: 2rem 2.5rem;
  min-width: 180px;
  flex: 1;
  display: ruby;
  text-align: center;
}

.stat-card:hover {
  transform: translateY(-4px);
}

.stat-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  margin: 0 auto 0.8rem;
}

.stat-icon-yellow {
  background: var(--yellow);
}

.stat-icon-coral {
  background: var(--coral);
}

.stat-icon-teal {
  background: var(--teal-dark);
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--teal-dark);
  line-height: 1.2;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--teal-dark);
  font-weight: 500;
  margin-top: 0.1rem;
}

/* ============ LOGOS SECTION ============ */
.logos-section {
  padding: 60px 0 70px;
}

.logos-section .section-title {
  margin-bottom: 2.5rem;
}

.logos-carousel-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  position: relative;
  padding: 0 20px;
}

.logos-carousel-container {
  overflow: hidden;
  width: 100%;
  max-width: 1000px;
}

.logos-carousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 2rem;
}

.logo-item {
  flex: 0 0 calc(20% - 1.6rem);
  min-width: 150px;
  padding: 0.5rem;
}

.logo-placeholder {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  gap: 4px;
}

.logo-placeholder:hover {
  transform: translateY(-4px);
}

.logo-placeholder img {
  max-width: 100%;
  height: 180px;
  width: auto;
  object-fit: contain;
  display: block;
}

.carousel-arrow {
  background: var(--coral);
  border: none;
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(231, 122, 84, 0.3);
}

.carousel-arrow:hover {
  background: var(--coral-dark);
  transform: scale(1.05);
}

.carousel-arrow:active {
  transform: scale(0.95);
}

.carousel-arrow:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: scale(1);
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--teal-deep);
  color: #dcece7;
  padding: 50px 0 20px;
}

.footer-logo {
  height: 55px;
  filter: brightness(0) invert(1);
}

.footer-tagline {
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--yellow);
}

.footer-social {
  display: flex;
  gap: 0.7rem;
  justify-content: flex-end;
  flex-wrap: wrap;
  margin-top: 40px;
}

.footer-social a {
  width: 30px;
  height: 30px;
  border-radius: 11px;
  background: #ecb025;
  color: var(--teal-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.footer-social i {
  font-size: 20px;
}

/*.footer-social a:hover {
  background: var(--coral);
}*/

.site-footer hr {
  border-color: rgba(255, 255, 255, 0.15);
  margin: 1.5rem 0 1rem;
}

.footer-copyright-wrap {
  text-align: left;
}

.footer-copyright {
  margin: 0;
  font-size: 0.85rem;
  color: #b9d3cd;
}

.footer-bottom {
  display: flex;
  gap: 1.5rem;
  font-size: 0.85rem;
  justify-content: flex-end;
}

.footer-bottom a {
  color: #b9d3cd;
}

.footer-bottom a:hover {
  color: #fff;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 991px) {
  .hero-title {
    font-size: 2.2rem;
  }
  .section-title {
    font-size: 1.6rem;
  }
  .compounds-banner h2 {
    font-size: 1.3rem;
  }
  .footer-social {
    justify-content: flex-start;
  }
  .site-footer .text-md-end {
    text-align: left !important;
  }
  .footer-bottom {
    justify-content: flex-start;
  }
  .testimonial-custom-padding {
    padding: 0 1rem;
  }
  .testimonial-box {
    padding: 2rem;
  }
  .logo-item {
    flex: 0 0 calc(33.33% - 1.33rem);
    min-width: 120px;
  }
  .carousel-arrow {
    width: 38px;
    height: 38px;
    font-size: 1.2rem;
  }
  .logo-placeholder img {
    height: 80px;
  }
}

@media (max-width: 767px) {
  .logo-item {
    flex: 0 0 calc(50% - 1rem);
    min-width: 100px;
  }
  .logos-carousel {
    gap: 1rem;
  }
  .logo-placeholder {
    min-height: 130px;
    padding: 1rem 0.8rem;
  }
  .logo-placeholder img {
    height: 40px;
  }
  .carousel-arrow {
    width: 34px;
    height: 34px;
    font-size: 1rem;
  }
  .logos-carousel-wrapper {
    gap: 0.5rem;
    padding: 0 10px;
  }
  .testimonial-heading {
    font-size: 2rem;
  }
  .testimonial-school-logo {
    height: 120px;
  }
  .stat-card {
    min-width: 140px;
    padding: 1.5rem 1.2rem;
    flex: 0 0 calc(50% - 1rem);
    max-width: 100%;
  }
  .trusted-stats {
    gap: 1rem;
  }
  .stat-number {
    font-size: 1.8rem;
  }
}

/* ==========================================================
   FULL BREAKPOINT SYSTEM (xxl / xl / lg / md / tab / mobile)
   Bootstrap 5 scale: xxl >=1400, xl >=1200, lg >=992,
   md >=768, tab 576-767, mobile <576
   ========================================================== */

/* ---------- XXL: large desktops / wide monitors (>=1400px) ---------- */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
  .hero-title {
    font-size: 3.4rem;
  }
  .section-title {
    font-size: 2.3rem;
  }
}

/* ---------- XL: standard desktops (1200px - 1399.98px) ---------- */
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .hero-title {
    font-size: 3.1rem;
  }
}

/* ---------- LG: small desktops / large tablets landscape (992px - 1199.98px) ---------- */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hero-title {
    font-size: 2.6rem;
  }
  .site-nav-links {
    gap: 0.15rem;
  }
  .site-nav .nav-link {
    padding: 0.5rem 0.7rem !important;
    font-size: 0.8rem;
  }
}

/* ---------- MD: tablets landscape (768px - 991.98px) ---------- */
@media (min-width: 768px) and (max-width: 991.98px) {
  .section {
    padding: 55px 0;
  }
  .hero {
    padding: 70px 0 80px;
    text-align: center;
  }
  .hero-title {
    font-size: 2.4rem;
  }
  .site-nav-drawer {
    width: 55%;
  }
}

/* ---------- TAB: tablets portrait / large phones (576px - 767.98px) ---------- */
@media (min-width: 576px) and (max-width: 767.98px) {
  .section {
    padding: 45px 0;
  }
  .hero {
    padding: 60px 0 60px;
    text-align: center;
  }
  .hero-title {
    font-size: 2rem;
  }
  .hero-buttons {
    justify-content: center;
  }
  .section-title {
    font-size: 1.5rem;
  }
  .site-nav-drawer {
    width: 65%;
  }
  .footer-copyright-wrap,
  .footer-bottom {
    text-align: center;
    justify-content: center;
  }
}

/* ---------- MOBILE: phones (<576px) ---------- */
@media (max-width: 575.98px) {
  .container, .container-fluid, .row{
    max-width: none!important;
  }
  .section {
    padding: 36px 0;
  }
  .hero {
    padding: 50px 0 50px;
    text-align: center;
  }
  .hero-title {
    font-size: 2.2rem;
    margin-top: 80px;
  }
  .hero-sub {
    font-size: 0.95rem;
  }
  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }
  .section-title {
    font-size: 1.35rem;
  }
  .path-step{
    padding: 0;
  }
  .brand-logo {
    height: 34px;
  }
  .site-nav-drawer {
    width: 82%;
    max-width: none;
  }
  .footer-copyright-wrap,
  .footer-bottom {
    text-align: center;
    justify-content: center;
  }
  .footer-social {
    justify-content: center !important;
  }
  .logo-item {
    flex: 0 0 100%;
    min-width: 80px;
  }
  .logo-placeholder {
    min-height: 110px;
  }
  .stat-card {
    flex: 0 0 100%;
    border-radius: 12px;
  }
  .video-frame video{
    height: 260px!important;
  }
  .btn-coral-custom {
    width: 100%;
  }
}