:root {
  --primary: #0066d6;
  --primary-dark: #0052a3;
  --secondary-blue: #2d7fd3;
  --teal: #12a6a6;
  --warm: #fff4e6;
  --graphite: #4a4a4a;
  --dark: #1e293b;
  --light: #f4f8fc;
  --text: #64748b;
  --white: #ffffff;
  --soft-blue: #dcecff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  overflow-x: hidden;
  background:
    linear-gradient(120deg, rgba(0, 102, 214, 0.1) 0%, transparent 42%),
    linear-gradient(240deg, rgba(45, 127, 211, 0.08) 0%, transparent 38%),
    linear-gradient(135deg, #f8fbff 0%, #e7f2ff 38%, #f2f6fa 68%, #eaf0f5 100%);
  color: var(--dark);
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar,
.primary-btn,
.outline-btn,
.section-title span,
.footer-brand {
  font-family: "Plus Jakarta Sans", "Manrope", "Segoe UI", Arial, sans-serif;
}

.section-padding {
  padding: 100px 0;
}

section.bg-white {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88) 0%, rgba(239, 248, 255, 0.82) 58%, rgba(239, 252, 247, 0.78) 100%) !important;
}

.navbar {
  padding: 12px 0;
  /* backdrop-filter: blur(18px); */
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(234, 245, 255, 0.96) 52%, rgba(221, 241, 255, 0.95) 100%);
  border-bottom: none;
  box-shadow: 0 12px 36px rgba(15, 63, 110, 0.11);
  transition: all 0.4s ease;
  z-index: 1000;
}

.navbar.scrolled {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.99) 0%, rgba(241, 248, 255, 0.98) 100%);
  box-shadow: 0 16px 42px rgba(10, 48, 91, 0.14);
  padding: 8px 0;
}

.navbar > .container {
  position: relative;
  z-index: 1;
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.navbar-brand img {
  height: 70px;
  transition: 0.35s ease;
  object-fit: contain;
}

.navbar.scrolled .navbar-brand img {
  height: 60px;
}

.nav-link {
  color: #12314f;
  font-weight: 600;
  margin: 0 8px;
  position: relative;
  font-size: 15px;
  transition: 0.3s ease;
}

.nav-link:hover {
  color: var(--primary);
  transform: translateY(-2px);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--teal));
  transition: 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.primary-btn {
  background: linear-gradient(135deg, #0066c3, #004b8d);
  color: #fff;
  border: none;
  padding: 15px 32px;
  border-radius: 60px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.35s ease;
  display: inline-block;
  box-shadow: 0 14px 35px rgba(0, 90, 169, 0.35);
  position: relative;
  overflow: hidden;
  letter-spacing: 0;
}

.primary-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.35),
    transparent
  );
  transition: 0.6s;
}

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

.primary-btn:hover {
  transform: translateY(-5px) scale(1.02);
  color: #fff;
  box-shadow: 0 20px 40px rgba(0, 90, 169, 0.45);
}

.outline-btn {
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.outline-btn:hover {
  background: #fff;
  color: var(--primary);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  margin-top: 88px;
}

.hero video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 32, 71, 0.9),
    rgba(0, 102, 214, 0.6)
  );
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  filter: blur(10px);
  z-index: 1;
}

.shape-1 {
  width: 260px;
  height: 260px;
  top: 120px;
  left: -100px;
}

.shape-2 {
  width: 180px;
  height: 180px;
  bottom: 60px;
  right: 120px;
}

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

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

.hero-student-img img {
  width: 100%;
  max-width: 500px;
  border-radius: 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  border: 4px solid rgba(255, 255, 255, 0.15);
  object-fit: cover;
}

.hero-float-card {
  align-items: center;
  animation: float 4s ease-in-out infinite;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 20px;
  box-shadow: 0 18px 44px rgba(4, 28, 52, 0.2);
  color: #fff;
  display: flex;
  gap: 14px;
  min-width: 210px;
  padding: 18px 20px;
  position: absolute;
  z-index: 3;
  /* backdrop-filter: blur(14px); */
}

.hero-float-card i {
  align-items: center;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  display: inline-flex;
  height: 46px;
  justify-content: center;
  width: 46px;
}

.hero-float-card strong {
  display: block;
  font-family: "Plus Jakarta Sans", "Manrope", "Segoe UI", Arial, sans-serif;
  font-size: 1.55rem;
  line-height: 1;
}

.hero-float-card span {
  color: rgba(255, 255, 255, 0.86);
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-top: 6px;
}

.float-admissions {
  top: 22%;
  right: 9%;
}

.float-destinations {
  top: 48%;
  right: 16%;
  animation-delay: 0.6s;
}

.float-branches {
  bottom: 13%;
  right: 7%;
  animation-delay: 1.2s;
}

.trust-section {
  background:
    linear-gradient(135deg, rgba(248, 251, 255, 0.94) 0%, rgba(229, 242, 255, 0.92) 50%, rgba(241, 246, 250, 0.94) 100%) !important;
  overflow: hidden;
}

.section-kicker {
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Plus Jakarta Sans", "Manrope", "Segoe UI", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-kicker::before {
  content: "";
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--teal));
}

.trust-heading {
  max-width: 680px;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  line-height: 1.12;
  margin: 0 auto 18px;
}

.trust-copy {
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.8;
  max-width: 680px;
  margin: 0 auto 30px;
}

.trust-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.trust-section .stats-card {
  min-height: 150px;
  padding: 28px;
  text-align: center;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(0, 102, 214, 0.1);
  box-shadow: 0 16px 34px rgba(20, 82, 140, 0.08);
}

.trust-section .stats-card h2 {
  color: var(--primary);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 12px;
}

.trust-section .stats-card p {
  color: #536579;
  font-weight: 700;
  margin: 0;
}

.trust-destination-panel {
  background: rgba(249, 249, 249, 0.895);
  border: 1px solid rgba(0, 102, 214, 0.1);
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(20, 82, 140, 0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 28px;
  padding: 18px;
}

.trust-destination-panel span {
  background: linear-gradient(135deg, rgb(0, 102, 195), rgb(0, 75, 141));
  border: 1px solid rgba(0, 102, 214, 0.12);
  border-radius: 999px;
  color: white;
  font-weight: 800;
  padding: 10px 14px;
}

.trust-visual {
  position: relative;
  min-height: 520px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 54px rgba(15, 63, 110, 0.16);
}

.trust-visual img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.trust-proof {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 96px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.trust-proof div {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(4, 28, 52, 0.12);
}

.trust-proof strong {
  color: var(--primary);
  display: block;
  font-family: "Plus Jakarta Sans", "Manrope", "Segoe UI", Arial, sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.trust-proof span {
  color: #435469;
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-top: 8px;
}

.destination-strip {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.destination-strip span {
  background: rgba(0, 63, 122, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  padding: 9px 11px;
}

.support-path {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 1fr);
  gap: 16px;
  /* background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(232, 244, 255, 0.9) 56%, rgba(238, 248, 246, 0.9) 100%); */
  background:linear-gradient(135deg, rgb(0, 102, 195), rgb(0, 75, 141));
  border: 1px solid rgba(0, 102, 214, 0.1);
  border-radius: 30px;
  /* color: var(--dark); */
  color: #fff;
  padding: 28px;
  box-shadow: 0 20px 46px rgba(20, 82, 140, 0.12);
}

.support-path-intro {
  align-self: center;
}

.support-path-intro span {
  color: white;
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.support-path-intro h3 {
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1.18;
  margin: 0;
}

.support-step {
  background: white;
  border: 1px solid rgba(0, 102, 214, 0.1);
  border-radius: 20px;
  padding: 20px;
}

.support-step i {
  align-items: center;
  background: rgba(0, 102, 214, 0.1);
  border-radius: 14px;
  color: var(--primary);
  display: inline-flex;
  height: 44px;
  justify-content: center;
  margin-bottom: 18px;
  width: 44px;
}

.support-step h5 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--primary);
}

.support-step p {
  color: var(--text);
  font-size: 13px;
  line-height: 1.55;
  margin: 0;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #f2f2f2;
  margin-bottom: 35px;
  max-width: 700px;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.15);
  /* backdrop-filter: blur(14px); */
  border-radius: 20px;
  padding: 20px;
  z-index: 2;
  color: #fff;
  animation: float 4s ease-in-out infinite;
}

.card-1 {
  top: 25%;
  right: 12%;
}

.card-2 {
  bottom: 20%;
  right: 18%;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

.stats-card,
/* .service-card, */
.country-card,
.feature-card,
.testimonial-card {
  background: #fff;
  border-radius: 24px;
  padding: 35px;
  transition: 0.4s ease;
  border: none;
  height: 100%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

/* .service-card {
  box-shadow: 0 16px 38px rgba(15, 63, 110, 0.1);
} */


/* SERVICES - IMAGE OVERLAY STYLE */

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  min-height: 380px;
  padding: 0;
  background: transparent;
  box-shadow: 0 16px 38px rgba(15, 63, 110, 0.12);
  transition: all 0.4s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 48px rgba(0, 90, 169, 0.18);
}

.service-media {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 26px;
  transition: 0.6s ease;
  display: block;
}

.service-card:hover .service-media {
  transform: scale(1.08);
}

.service-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.45) 40%,
    rgba(0, 0, 0, 0.1) 100%
  );
}

.service-overlay h4 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.service-overlay p {
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.7;
  margin-bottom: 0;
}

/* Mobile */

@media (max-width: 768px) {
  .service-card {
    min-height: 320px;
  }

  .service-media {
    height: 320px;
  }

  .service-overlay {
    padding: 22px;
  }

  .service-overlay h4 {
    font-size: 1.25rem;
  }

  .service-overlay p {
    font-size: 14px;
  }
}

.service-card:hover,
.country-card:hover,
.feature-card:hover,
.testimonial-card:hover,
.stats-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 48px rgba(0, 90, 169, 0.15);
}

/* .icon-box {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 90, 169, 0.08);
  color: var(--primary);
  font-size: 28px;
  margin-bottom: 24px;
} */

/* .service-media, */
.feature-media {
  width: 100%;
  object-fit: cover;
  border-radius: 18px;
}
/* 
.service-media {
  height: 180px;
  margin-bottom: 22px;
} */

.feature-media {
  height: 140px;
  margin-bottom: 18px;
}

.coaching-points {
  display: grid;
  gap: 16px;
}

.coaching-points div {
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 102, 214, 0.1);
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(15, 63, 110, 0.07);
  display: grid;
  gap: 4px 16px;
  grid-template-columns: 48px 1fr;
  padding: 20px;
}

.coaching-points i {
  align-items: center;
  background: rgba(0, 102, 214, 0.1);
  border-radius: 14px;
  color: var(--primary);
  display: inline-flex;
  height: 48px;
  justify-content: center;
  width: 48px;
}

.coaching-points h5 {
  font-size: 1rem;
  font-weight: 800;
  margin: 0;
}

.coaching-points p {
  color: var(--text);
  grid-column: 2;
  line-height: 1.65;
  margin: 0;
}

.coaching-visual-grid {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 18px;
  min-height: 500px;
}

.coaching-visual-grid img {
  box-shadow: 0 22px 48px rgba(15, 63, 110, 0.16);
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.coaching-visual-grid img:first-child {
  border-radius: 30px 10px 10px 30px;
}

.coaching-visual-grid img:last-child {
  border-radius: 10px 30px 30px 10px;
  transform: translateY(44px);
}

.section-title {
  margin-bottom: 60px;
}

.section-title span {
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0;
}

.section-title h2 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-top: 12px;
}

.section-title p {
  color: var(--text);
  max-width: 700px;
  margin: auto;
  line-height: 1.8;
}

.country-card img,
.about-img img,
.testimonial-img {
  width: 100%;
  border-radius: 20px;
  height: 260px;
  object-fit: cover;
}

.country-card img {
  height: 240px;
  object-fit: cover;
  margin-bottom: 24px;
  transition: 0.5s ease;
}

.country-card:hover img {
  transform: scale(1.06);
}

.country-card {
  padding: 20px;
}

.countries-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 10px 5px 20px;
  scroll-behavior: smooth;
}

.countries-scroll::-webkit-scrollbar {
  height: 8px;
}

.countries-scroll::-webkit-scrollbar-track {
  background: #e9eef5;
  border-radius: 20px;
}

.countries-scroll::-webkit-scrollbar-thumb {
  background: #0066d6;
  border-radius: 20px;
}

.countries-scroll::-webkit-scrollbar-button {
  display: none;
  width: 0;
  height: 0;
}

.countries-scroll .country-card {
  flex: 0 0 300px;
  min-width: 300px;
}

.countries-scroll .country-card {
  flex: 0 0 300px;
  min-width: 300px;
  height: 420px; /* same height for all cards */
  display: flex;
  flex-direction: column;
}

.countries-scroll .country-card img {
  height: 240px;
  object-fit: cover;
}

.countries-scroll .country-card h5 {
  min-height: 28px;
}

.countries-scroll .country-card p {
  flex-grow: 1;
  margin-bottom: 0;
}

.explore-card {
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* .explore-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
} */

.explore-card {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #0066d6, #0052a3);
  color: #fff;
}

.explore-content {
  width: 100%;
  padding: 20px;
}

.explore-content i {
  font-size: 48px;
  margin-bottom: 20px;
  color: #fff;
}

.explore-content h5 {
  color: #fff !important;
  margin-bottom: 12px;
}

.explore-content p {
  color: rgba(255,255,255,0.9) !important;
  margin: 0;
  min-height: auto;
}

.explore-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0066d6, #0052a3);
  color: #fff;
  text-align: center;
}

.explore-content i {
  font-size: 48px;
  margin-bottom: 20px;
}

.explore-content h5 {
  color: #fff;
  margin-bottom: 10px;
}

.explore-content p {
  color: rgba(255,255,255,0.85);
  margin: 0;
}

.country-card img {
  margin-bottom: 16px;
}

.country-card h5 {
  margin-bottom: 0;
  text-align: center;
  font-weight: 700;
}

.country-card p {
  color: var(--text);
  font-size: 13px;
  line-height: 1.65;
  margin-top: 8px;
  text-align: center;
}

.gallery-card {
  overflow: hidden;
  border-radius: 26px;
  position: relative;
  height: 100%;
  min-height: 320px;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s ease;
}

.gallery-card:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72), transparent);
  display: flex;
  align-items: flex-end;
  padding: 30px;
  color: #fff;
}

.quote-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 102, 214, 0.1);
  border-radius: 24px;
  box-shadow: 0 16px 34px rgba(15, 63, 110, 0.08);
  height: 100%;
  padding: 30px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-slider {
  position: relative;
  max-width: 850px;
  margin: auto;
}

.testimonial-slide {
  display: none;
}

.testimonial-slide.active {
  display: block;
}

.testimonial-content {
  background: #fff;
  padding: 45px;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0,0,0,.08);
}

.testimonial-content img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 20px;
}

.testimonial-content h4 {
  font-weight: 800;
  margin-bottom: 15px;
}

.testimonial-content p {
  max-width: 650px;
  margin: auto;
  line-height: 1.8;
  color: #666;
}

.testimonial-prev,
.testimonial-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: #0066d6;
  color: #fff;
  cursor: pointer;
  z-index: 10;
}

.testimonial-prev {
  left: -25px;
}

.testimonial-next {
  right: -25px;
}

.testimonial-prev:hover,
.testimonial-next:hover {
  background: #0052a3;
}

@media (max-width: 768px) {

  .testimonial-content {
    padding-bottom: 90px;
  }

  .testimonial-prev {
    top: auto;
    bottom: 20px;
    left: 50%;
    transform: translateX(-60px);
  }

  .testimonial-next {
    top: auto;
    bottom: 20px;
    right: 50%;
    transform: translateX(60px);
  }
}

.quote-card:hover {
  box-shadow: 0 24px 48px rgba(0, 90, 169, 0.14);
  transform: translateY(-8px);
}

.quote-card i {
  color: rgba(0, 102, 214, 0.18);
  font-size: 36px;
  margin-bottom: 18px;
}

.quote-card p {
  color: #4f6073;
  line-height: 1.75;
  margin-bottom: 22px;
}

.quote-card h5 {
  color: var(--primary);
  font-size: 1rem;
  font-weight: 800;
  margin: 0;
}

.check-list li {
  list-style: none;
  margin-bottom: 18px;
  color: var(--text);
}

.check-list li i {
  color: var(--primary);
  margin-right: 12px;
}

.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(var(--primary), var(--primary-dark));
  border-radius: 20px;
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
  background: #fff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -42px;
  top: 30px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  border: 5px solid #dbeeff;
}

.process-section {
  overflow: hidden;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  position: relative;
}

.process-card {
  background: linear-gradient(135deg, rgb(6, 21, 37) 0%, rgb(7, 40, 70) 46%, rgb(10, 91, 120) 100%);
  border: 1px solid rgba(0, 102, 214, 0.1);
  border-radius: 24px;
  box-shadow: 0 16px 36px rgba(15, 63, 110, 0.08);
  min-height: 250px;
  overflow: hidden;
  padding: 30px 26px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
  box-shadow: 0 24px 48px rgba(0, 90, 169, 0.14);
  transform: translateY(-8px);
}

.process-number {
  color: rgba(208, 215, 223, 0.415);
  font-family: "Plus Jakarta Sans", "Manrope", "Segoe UI", Arial, sans-serif;
  font-size: 4.25rem;
  font-weight: 800;
  line-height: 1;
  position: absolute;
  right: 18px;
  top: 16px;
}

.process-icon {
  align-items: center;
  background: rgb(231, 231, 231);
  border-radius: 18px;
  color: var(--primary);
  display: inline-flex;
  font-size: 24px;
  height: 60px;
  justify-content: center;
  margin-bottom: 26px;
  position: relative;
  width: 60px;
}

.process-card h5 {
  font-weight: 800;
  margin-bottom: 12px;
  position: relative;
  color: #fff;
}

.process-card p {
  color: #ffffffd1;
  line-height: 1.7;
  margin: 0;
  position: relative;
}

.faq-section .accordion-button {
  font-weight: 600;
  padding: 18px 22px;
  transition:
    background-color 0.16s ease,
    color 0.16s ease,
    box-shadow 0.16s ease;
}

.faq-section .accordion-button:focus {
  box-shadow: none;
}

.faq-section .accordion-button::after {
  transition: transform 0.16s ease;
}

.faq-section .accordion-body {
  color: #546477;
  line-height: 1.75;
  padding: 18px 22px;
}

.faq-section .collapsing {
  transition: height 0.16s ease-out;
}

.faq-section {
  background: linear-gradient(180deg, #eef6ff, #f8fbff);
  position: relative;
}

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

.faq-section .accordion-item {
  background: #fff;
  border: 1px solid rgba(0, 102, 214, 0.08) !important;
  box-shadow: 0 8px 20px rgba(15, 63, 110, 0.06);
  margin-bottom: 12px;
}

.faq-section .accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, rgb(0, 102, 195), rgb(0, 75, 141));
  color: #fff;
}

.cta-section {
  background: linear-gradient(135deg, #0066d6 0%, #0052a3 50%, #003d74 100%);
  color: #fff;
  border-radius: 40px;
  padding: 90px 60px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 90, 169, 0.25);
}

.cta-section::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  top: -120px;
  right: -80px;
}

.university-section {
  background:
    linear-gradient(135deg, rgba(239, 248, 255, 0.92) 0%, rgba(255, 255, 255, 0.88) 48%, rgba(235, 246, 244, 0.9) 100%);
  overflow: hidden;
}

.university-marquee {
  background: linear-gradient(135deg, rgb(0, 102, 195), rgb(0, 75, 141));
  border: 1px solid rgba(0, 102, 214, 0.1);
  border-radius: 28px;
  box-shadow: 0 18px 42px rgba(15, 63, 110, 0.1);
  overflow: hidden;
  padding: 22px 0;
  position: relative;
}

.university-marquee::before,
.university-marquee::after {
  content: "";
  height: 100%;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 120px;
  z-index: 2;
}

.university-marquee::before {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.96), transparent);
  left: 0;
}

.university-marquee::after {
  background: linear-gradient(270deg, rgba(255, 255, 255, 0.96), transparent);
  right: 0;
}

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

.university-track span {
  background: linear-gradient(135deg, #ffffff, #eef7ff);
  border: 1px solid rgba(0, 102, 214, 0.12);
  border-radius: 999px;
  color: #174062;
  flex: 0 0 auto;
  font-family: "Plus Jakarta Sans", "Manrope", "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  padding: 18px 24px;
  white-space: nowrap;
}

@keyframes university-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.contact-box {
  background: linear-gradient(135deg, rgb(0, 102, 195), rgb(0, 75, 141));
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
}

.form-control {
  height: 55px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
}

textarea.form-control {
  height: 150px;
}

footer {
  background:
    linear-gradient(135deg, #061525 0%, #072846 46%, #0a5b78 100%);
  color: #fff;
  padding: 76px 0 28px;
  position: relative;
  width: 100%;
  overflow: hidden;
  border-top: 5px solid rgba(18, 166, 166, 0.45);
}

footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 100%);
  background-size: 72px 72px;
  opacity: 0.2;
  pointer-events: none;
}

.footer-main,
.footer-bottom {
  position: relative;
  z-index: 2;
}

.footer-column {
  height: 100%;
  padding-right: 10px;
}

.footer-column p {
  color: #d8e5ef;
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 24px;
}

.footer-brand {
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0;
  margin-bottom: 18px;
  max-width: 220px;
}

.footer-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 26px;
  position: relative;
  display: inline-block;
  letter-spacing: 0;
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 40px;
  height: 3px;
  border-radius: 20px;
  background: linear-gradient(90deg, #35b7ff, var(--teal), #f4b63f);
}

footer a {
  color: #d7e4ef;
  text-decoration: none;
  display: block;
  margin-bottom: 11px;
  transition: 0.3s ease;
  font-size: 14px;
}

footer a:hover {
  color: #7adfff;
  transform: translateX(4px);
}

.footer-link-columns {
  columns: 2;
  column-gap: 28px;
}

.footer-contact li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  color: #d7e4ef;
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 16px;
}

.footer-contact i {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #7adfff;
  margin-top: 2px;
}

.footer-contact a {
  display: inline-block;
  margin: 0 12px 0 0;
}

.footer-branches {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.footer-branches span {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #e6f2fb;
  font-size: 12px;
  line-height: 1;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.06);
}

.footer-divider {
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.28),
    transparent
  );
  margin: 44px 0 24px;
  position: relative;
  z-index: 2;
}

.footer-bottom {
  color: #b9c8d8;
  font-size: 13px;
}

.footer-legal a {
  color: #b9c8d8;
  display: inline-block;
  margin: 0 0 0 18px;
  font-size: 13px;
}

.footer-legal a:hover {
  color: #7adfff;
  transform: none;
}

.social-icons a {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  transition: all 0.35s ease;
  color: #cbd5e1;
  font-size: 14px;
}

.social-icons a:hover {
  transform: translateY(-5px) scale(1.1);
  background: linear-gradient(135deg, var(--primary), var(--teal));
  border-color: rgba(255, 255, 255, 0.32);
  color: #fff;
  box-shadow: 0 12px 25px rgba(0, 102, 214, 0.35);
}

.whatsapp-btn {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 68px;
  height: 68px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  z-index: 999;
  text-decoration: none;
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.4);
  animation: pulse 2s infinite;
  transition: all 0.35s ease;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  color: #fff;
}

.whatsapp-tooltip {
  position: absolute;
  right: 80px;
  background: #111827;
  color: #fff;
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}

.whatsapp-btn:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (max-width: 991px) {
  .navbar {
    padding: 10px 0;
  }

  .navbar-brand {
    padding: 0;
  }

  .navbar-brand img {
    height: 54px;
  }

  .navbar-collapse {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(0, 102, 214, 0.12);
    border-radius: 18px;
    box-shadow: 0 16px 36px rgba(10, 48, 91, 0.14);
    margin-top: 14px;
    padding: 18px;
  }

  .navbar-toggler {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 102, 214, 0.2);
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .floating-card {
    display: none;
  }

  .hero-float-card {
    display: none;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .trust-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .support-path {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .support-path-intro {
    grid-column: 1 / -1;
  }

  .coaching-visual-grid {
    min-height: 420px;
  }

  .footer-link-columns {
    columns: 1;
  }

  .footer-legal {
    margin-top: 12px;
  }

  .footer-legal a {
    margin: 0 18px 0 0;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 2.2rem;
  }

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

  .trust-stats-grid,
  .process-grid,
  .support-path {
    grid-template-columns: 1fr;
  }

  .trust-section .stats-card {
    min-height: auto;
    padding: 24px;
  }

  .coaching-points div {
    grid-template-columns: 1fr;
  }

  .coaching-points p {
    grid-column: auto;
  }

  .coaching-visual-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .coaching-visual-grid img {
    height: 260px;
  }

  .coaching-visual-grid img:first-child,
  .coaching-visual-grid img:last-child {
    border-radius: 24px;
    transform: none;
  }

  .support-path {
    padding: 22px;
  }

  .university-marquee::before,
  .university-marquee::after {
    width: 48px;
  }

  .hero {
    margin-top: 76px;
  }

  footer {
    padding: 58px 0 24px;
  }

  .footer-brand {
    font-size: 22px;
  }

  .footer-contact li {
    grid-template-columns: 20px 1fr;
  }
}




/* Coaching FAQ Section */

#coaching .accordion-item {
  border: none !important;
  border-radius: 18px !important;
  overflow: hidden;
  margin-bottom: 15px;
  box-shadow: 0 10px 25px rgba(15, 63, 110, 0.08);
}

#coaching .accordion-button {
  background: #fff;
  color: #1e293b;
  font-size: 16px;
  font-weight: 700;
  padding: 18px 24px;
  box-shadow: none !important;
  display: flex;
  align-items: center;
}

#coaching .accordion-button::after {
  margin-left: auto !important;
  flex-shrink: 0;
}

#coaching .accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, #0066d6, #0052a3);
  color: #fff;
}

#coaching .accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}

#coaching .accordion-body {
  background: #fff;
  color: #64748b;
  line-height: 1.8;
  padding: 18px 24px;
}

#coaching .accordion-item:hover {
  transform: translateY(-3px);
  transition: 0.3s ease;
  box-shadow: 0 15px 35px rgba(15, 63, 110, 0.12);
}

/* #coaching h2 {
  margin-bottom: 30px;
} */

@media (max-width: 991px) {
  #coaching .accordion-button {
    padding: 18px 20px;
    font-size: 15px;
  }

  #coaching .accordion-body {
    padding: 18px 20px;
  }
}



.video-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 15px 35px rgba(0,0,0,.1);
  height: 100%;
}

.video-card iframe {
  width: 100%;
  aspect-ratio: 9 / 16;
  border: none;
  display: block;
}

/* Desktop */
@media (min-width: 992px) {
  .video-card {
    max-width: 300px;
    margin: auto;
  }
}

/* Tablet */
@media (max-width: 991px) {
  .video-card {
    max-width: 280px;
    margin: auto;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .video-card {
    max-width: 260px;
    margin: auto;
  }
}


.contact-address {
  line-height: 1.7;
}

.contact-box select.form-control {
  height: 55px;
  cursor: pointer;
}

.select-wrapper {
  position: relative;
}

.select-wrapper select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 45px;
}

.select-wrapper i {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #64748b;
  pointer-events: none;
  font-size: 14px;
}


.contact-info {
  font-size: 1.1rem;
  margin-bottom: 18px;
}

.contact-info a {
  color: inherit;
  text-decoration: none;
}

.contact-info i {
  width: 28px;
  text-align: center;
  font-size: 25px;
}

.contact-address {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.8;
}

.contact-address i {
  margin-top: 6px;
  flex-shrink: 0;
  font-size: 20px;
}


.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 20px;
}

.contact-item i {
    width: 28px;
    min-width: 28px;
    text-align: center;
    color: var(--primary);
    font-size: 22px;
    margin-top: 4px;
}

.contact-item span,
.contact-item a {
    color: var(--dark);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.5;
}

.contact-item a {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}/* Inner page banner — reuses tokens from style.css */
.page-banner {
  position: relative;
  padding: 100px 0 30px;
  background:
    linear-gradient(135deg, rgba(0, 102, 214, 0.92) 0%, rgba(18, 166, 166, 0.85) 100%),
    url("https://images.unsplash.com/photo-1523580494863-6f3031224c94?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
  color: #fff;
  overflow: hidden;
}
.page-banner::before,
.page-banner::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
  pointer-events: none;
}
.page-banner::before {
  width: 320px; height: 320px;
  background: rgba(255,255,255,0.25);
  top: -120px; left: -80px;
}
.page-banner::after {
  width: 260px; height: 260px;
  background: rgba(18,166,166,0.55);
  bottom: -100px; right: -60px;
}
.page-banner .container { position: relative; z-index: 2; }
.page-banner .kicker {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 50px;
  background: rgba(255,255,255,0.16);
  /* backdrop-filter: blur(10px); */
  border: 1px solid rgba(255,255,255,0.25);
  font-weight: 600;
  margin-bottom: 18px;
  font-size: 14px;
  letter-spacing: 0.5px;
}
.page-banner h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.15;
}
.page-banner p {
  font-size: 1.05rem;
  max-width: 720px;
  opacity: 0.95;
  margin-bottom: 0;
}
.page-banner .breadcrumb-bar {
  margin-top: 22px;
  font-size: 14px;
  opacity: 0.9;
}
.page-banner .breadcrumb-bar a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}
.page-banner .breadcrumb-bar a:hover { text-decoration: underline; }
.page-banner .breadcrumb-bar i { margin: 0 10px; font-size: 11px; }

/* Push fixed navbar offset for inner pages */
body.inner-page { padding-top: 0; }
/* ============ TESTIMONIALS PAGE ============ */
.page-banner.testimonials-banner {
  background:
    linear-gradient(135deg, rgba(18, 166, 166, 0.88) 0%, rgba(0, 102, 214, 0.92) 100%),
    url("https://images.unsplash.com/photo-1543269865-cbf427effbad?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
}

/* Testimonial slider refinements */
.testimonials-page .testimonial-slider {
  background: linear-gradient(135deg, #ffffff 0%, #eef6ff 100%);
  border-radius: 28px;
  padding: 60px 50px;
  box-shadow: 0 30px 60px -28px rgba(0, 102, 214, 0.4);
  position: relative;
  overflow: hidden;
}
.testimonials-page .testimonial-slider::before {
  content: "\201C";
  position: absolute;
  top: 10px;
  left: 30px;
  font-family: Georgia, serif;
  font-size: 140px;
  line-height: 1;
  color: rgba(0, 102, 214, 0.1);
  pointer-events: none;
}
.testimonials-page .testimonial-content img {
  border: 4px solid #fff;
  box-shadow: 0 12px 28px -10px rgba(0, 102, 214, 0.4);
}
.testimonials-page .testimonial-content h4 {
  background: linear-gradient(90deg, var(--primary), var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.testimonials-page .testimonial-prev,
.testimonials-page .testimonial-next {
  background: linear-gradient(135deg, var(--primary), var(--teal));
  color: #fff;
  border: 0;
  box-shadow: 0 12px 25px -10px rgba(0, 102, 214, 0.45);
  transition: 0.3s ease;
}
.testimonials-page .testimonial-prev:hover,
.testimonials-page .testimonial-next:hover {
  transform: translateY(-50%) scale(1.08);
}

/* Quick rating row */
.testimonials-page .rating-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin-top: 50px;
}
.testimonials-page .rating-card {
  background: #fff;
  border-radius: 18px;
  padding: 24px 30px;
  text-align: center;
  border: 1px solid rgba(0, 102, 214, 0.08);
  box-shadow: 0 14px 30px -18px rgba(0, 102, 214, 0.35);
  min-width: 180px;
  transition: 0.3s ease;
}
.testimonials-page .rating-card:hover { transform: translateY(-4px); }
.testimonials-page .rating-card h3 {
  background: linear-gradient(90deg, var(--primary), var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  margin-bottom: 6px;
}
.testimonials-page .rating-card .stars {
  color: #f5b301;
  margin-bottom: 6px;
}
.testimonials-page .rating-card p {
  color: var(--text);
  margin: 0;
  font-size: 14px;
}

/* Video card lift */
.testimonials-page .video-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 45px -25px rgba(0, 102, 214, 0.45);
  transition: 0.35s ease;
}
.testimonials-page .video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 55px -25px rgba(0, 102, 214, 0.6);
}


/* ============ TESTIMONIAL CTA BUTTONS ============ */
.testimonial-cta {
  margin-top: 40px;
}
.testimonial-cta .primary-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.testimonial-cta .primary-btn i { font-size: 18px; }





/* Hover-open dropdown (desktop) */
@media (min-width: 992px) {
  .navbar .has-hover-dropdown > .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    margin-top: 0;
  }
  .navbar .has-hover-dropdown:hover > .dropdown-menu,
  .navbar .has-hover-dropdown:focus-within > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

  /* Mega grid for Countries */
  .navbar .mega-menu.countries-mega {
    min-width: 520px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
    padding: 14px;
  }

/* Mobile: tap Countries link still navigates; show submenu inline */
@media (max-width: 991.98px) {
  .navbar .has-hover-dropdown .dropdown-menu {
    display: block;
    border: 0;
    box-shadow: none;
    background: transparent;
    padding-left: 16px;
  }
}

/* Styling */
.navbar .dropdown-menu {
  border: 0;
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 16px 40px rgba(10, 48, 91, 0.14);
  background: linear-gradient(135deg, #ffffff 0%, #f1f8ff 100%);
  min-width: 200px;
}
.navbar .dropdown-item {
  font-weight: 600;
  color: #12314f;
  border-radius: 8px;
  padding: 8px 14px;
  transition: 0.25s ease;
}
.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
  background: linear-gradient(90deg, var(--primary), var(--teal));
  color: #fff;
}
