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

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu",
    "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

:root {
  --brand-teal: #1a6b6b;
  --brand-teal-dark: #103c3c;
  --brand-teal-light: #70c6c6;
  --brand-purple: #c6a75e;
  --brand-orange: #f1b72f;
  --brand-pink: #f5d998;
  --brand-black: #333333;
  --brand-gray: #f4f6f6;
  --brand-accent: #e8f8f5;
}

.link-reset,
.link-reset:hover,
.link-reset:focus,
.link-reset:visited,
.link-reset:active {
  color: inherit;
  text-decoration: none;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1rem 1.5rem;
  /* background: #f6fcfb; */
  transition:
    background-color 0.3s ease,
    box-shadow 0.3s ease;
}

nav.nav-scrolled {
  background-color: #f6fcfb;
  box-shadow: 0 8px 20px rgba(16, 60, 60, 0.08);
}

.nav-container {
  max-width: 1280px;

  .hero-container {
    padding: 5rem 1.5rem 4rem 1.5rem;
  }
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 48px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--brand-black);
  text-decoration: none;
  font-weight: 600;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--brand-teal);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background-color: var(--brand-teal);
  transition: width 0.3s ease;
}

.nav-link.active {
  color: var(--brand-teal);
}

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

.contact-button {
  background-color: var(--brand-teal);
  color: white;
  padding: 12px 28px;
  border: none;
  cursor: pointer;
  letter-spacing: 1px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  background-color: var(--brand-purple);
}

.contact-button:hover {
  background-color: var(--brand-teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(93, 217, 193, 0.3);
}

.mobile-menu {
  display: none;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    #f8fdfc 50%,
    var(--brand-accent) 100%
  );
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-container::after {
  content: "";
  position: absolute;
  right: -3%;
  bottom: 80px;
  width: 70%;
  height: 70%;
  background-image: url(../images/earth.webp);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 1;
}

/* Decorative Shapes */
.decorative-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.shape-circle-1 {
  position: absolute;
  top: 10%;
  right: 15%;
  width: 120px;
  height: 120px;
  background: linear-gradient(
    135deg,
    var(--brand-teal-light),
    var(--brand-teal)
  );
  border-radius: 50%;
  opacity: 0.6;
  animation: float 6s ease-in-out infinite;
}

.shape-circle-2 {
  position: absolute;
  bottom: 20%;
  left: 10%;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--brand-purple), var(--brand-pink));
  border-radius: 50%;
  opacity: 0.5;
  animation: float 8s ease-in-out infinite;
  animation-delay: 1s;
}

.shape-square {
  position: absolute;
  top: 40%;
  right: 8%;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-pink));
  border-radius: 12px;
  opacity: 0.4;
  transform: rotate(45deg);
  animation: rotate-float 10s ease-in-out infinite;
}

.shape-dots {
  position: absolute;
  bottom: 15%;
  right: 25%;
  width: 100px;
  height: 100px;
  background-image: radial-gradient(
    circle,
    var(--brand-teal) 2px,
    transparent 2px
  );
  background-size: 15px 15px;
  opacity: 0;
  animation: float 7s ease-in-out infinite;
  animation-delay: 2s;
}

.shape-arc {
  position: absolute;
  top: 25%;
  left: 5%;
  width: 150px;
  height: 150px;
  border: 8px solid var(--brand-teal-light);
  border-radius: 50%;
  border-top-color: transparent;
  border-left-color: transparent;
  opacity: 0.4;
  animation: rotate-slow 15s linear infinite;
}

.decorative-circle {
  position: absolute;
  right: -150px;
  top: -150px;
  width: 600px;
  height: 600px;
  background: linear-gradient(135deg, var(--brand-teal-light), transparent);
  border-radius: 50%;
  opacity: 0.3;
  pointer-events: none;
}

.floating-pattern {
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background-image:
    linear-gradient(45deg, var(--brand-purple) 25%, transparent 25%),
    linear-gradient(-45deg, var(--brand-orange) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, var(--brand-pink) 75%),
    linear-gradient(-45deg, transparent 75%, var(--brand-teal-light) 75%);
  background-size: 60px 60px;
  background-position:
    0 0,
    0 30px,
    30px -30px,
    -30px 0px;
  opacity: 0.1;
  pointer-events: none;
  border-radius: 50%;
}

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

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

@keyframes rotate-float {
  0%,
  100% {
    transform: rotate(45deg) translateY(0px);
  }

  50% {
    transform: rotate(45deg) translateY(-15px);
  }
}

@keyframes rotate-slow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Hero Content */
/* .content-badge {
            display: inline-block;
            background: linear-gradient(135deg, var(--brand-teal-light), var(--brand-teal));
            color: var(--brand-black);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            box-shadow: 0 4px 15px rgba(93, 217, 193, 0.25);
        } */

.hero-title {
  font-size: 3rem;
  font-weight: 900;
  color: var(--brand-black);
  margin-bottom: 1.5rem;
  line-height: 1.3;
  letter-spacing: -2px;
  color: #494848;
}

.title-highlight {
  background: linear-gradient(
    135deg,
    var(--brand-teal) 0%,
    var(--brand-purple) 50%,
    var(--brand-pink) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.title-highlight::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
  height: 12px;
  /* background: var(--brand-teal-light); */
  opacity: 0.3;
  z-index: -1;
  border-radius: 4px;
}

.hero-description {
  font-size: 1.3rem;
  /* color: #666; */
  margin-bottom: 2.5rem;
  line-height: 1.5;
  max-width: 540px;
}

.cta-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.cta-button {
  background: linear-gradient(
    135deg,
    var(--brand-teal) 0%,
    var(--brand-teal-dark) 100%
  );
  color: white;
  padding: 16px 40px;
  border: none;
  cursor: pointer;
  letter-spacing: 1px;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(93, 217, 193, 0.3);
  font-size: 1rem;
}

/* Feature cards: truncate content to max-height and show ellipsis/overlay on desktop
   Mobile view will not apply truncation so full content is visible. */
@media (min-width: 769px) {
  .feature-card {
    max-height: 300px;
    overflow: hidden;
    position: relative;
    transition: max-height 0.35s ease;
    background-clip: padding-box;
  }

  .feature-card::before {
    /* gradient fade at bottom to visually indicate clipped content */
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 70px;
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.95) 100%
    );
    pointer-events: none;
  }

  .feature-card::after {
    content: "...";
    position: absolute;
    right: 18px;
    bottom: 12px;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--brand-black);
    pointer-events: none;
  }

  /* Desktop: expand on hover (only where hover is supported) */
  @media (hover: hover) {
    .feature-card:hover {
      max-height: 2000px;
    }
    .feature-card:hover::before,
    .feature-card:hover::after {
      display: none;
    }
  }
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(93, 217, 193, 0.4);
}

.cta-button-secondary {
  background: white;
  color: var(--brand-teal);
  padding: 16px 40px;
  border: 2px solid var(--brand-teal);
  cursor: pointer;
  letter-spacing: 1px;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.cta-button-secondary:hover {
  background: var(--brand-accent);
  transform: translateY(-3px);
}

/* Stats Row */
.stats-row {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: left;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  /* background: linear-gradient(135deg, var(--brand-teal), var(--brand-purple)); */
  /* -webkit-background-clip: text; */
  /* background-clip: text; */
  /* -webkit-text-fill-color: transparent; */
  line-height: 1;
  margin-bottom: 0.25rem;
  color: var(--brand-teal);
}

.stat-label {
  font-size: 0.875rem;
  color: #666;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Video Section */
.video-container {
  position: relative;
  z-index: 10;
}

/* Footer: newfooter-section three-column layout */
.footer-section {
  color: var(--brand-black);
  background-color: #fff;
}

.footer-section .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 1.5rem 2rem 1.5rem;
}

.footer-section .row {
  display: grid;
  grid-template-columns: 1.3fr 0.6fr 1.4fr;
  gap: 2rem;
  align-items: center;
  text-align: center;
}

.footer-section .col-md-4 {
  grid-column: 1 / 2;
}

.footer-section .footer-nav-links {
  grid-column: 2 / 3;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-section .footer-nav-links {
  color: var(--brand-black);
  text-decoration: none;
  font-weight: 400;
}

.footer-section .footer-logos {
  grid-column: 3 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-section .footer-logo-link {
  width: 132px;
  height: 100px;
  padding: 0.35rem;
  /* border: 1px solid #ececec; */
  border-radius: 10px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.footer-section .footer-logo-link:hover {
  transform: translateY(-2px);
  border-color: #d9d9d9;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

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

.footer-section .footer-nav-links .nav-link:hover {
  color: var(--brand-teal);
}

.footer-section .footer-bottom {
  grid-column: 1 / -1;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #e6e6e6;
  text-align: center;
}

@media (max-width: 768px) {
  .footer-section .row {
    grid-template-columns: 1fr;
    display: block;
  }
  .footer-section .footer-nav-links {
    gap: 0.1rem;
    flex-wrap: wrap;
    padding: 2rem;
  }

  .footer-section .footer-logos {
    margin-top: 0.5rem;
  }

  .footer-section .container {
    padding: 2rem 1.5rem 2rem 1.5rem;
  }
}

.video-decoration {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--brand-purple), var(--brand-pink));
  border-radius: 30px;
  opacity: 0.15;
  z-index: -1;
}

.video-placeholder {
  background: white;
  border-radius: 24px;
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s ease;
  border: 3px solid transparent;
  background-image:
    linear-gradient(white, white),
    linear-gradient(
      135deg,
      var(--brand-teal),
      var(--brand-purple),
      var(--brand-pink)
    );
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.video-placeholder::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--brand-accent) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* 
        .video-placeholder:hover::before {
            opacity: 1;
        } 

        .video-placeholder:hover {
            transform: translateY(-8px);
            box-shadow: 0 30px 80px rgba(93, 217, 193, 0.25);
        }*/

.play-button-wrapper {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--brand-teal),
    var(--brand-teal-dark)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 10px 30px rgba(93, 217, 193, 0.4);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.video-placeholder:hover .play-button-wrapper {
  transform: scale(1.1);
  box-shadow: 0 15px 40px rgba(93, 217, 193, 0.5);
}

.play-icon {
  width: 0;
  height: 0;
  border-left: 20px solid white;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 5px;
}

.video-text {
  color: var(--brand-black);
  font-size: 1.125rem;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.hero-side-img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  object-fit: cover;
}

/* Section Styles */
.section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

.section-title {
  font-size: 3rem;
  font-weight: 900;
  color: var(--brand-black);
  text-align: center;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.section-title-white {
  font-size: 3rem;
  font-weight: 900;
  color: white;
  text-align: center;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.section-subtitle {
  font-size: 1.125rem;
  color: #666;
  text-align: center;
  margin: 0 auto 3rem;
  max-width: 800px;
  line-height: 1.8;
}

/* Scroll Animation Classes */
.fade-in-up {
  opacity: 0;
  transform: translateY(60px);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-item {
  /* opacity: 0; */
  transform: translateY(60px);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}

.stagger-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Why Choose Section */
.why-choose-section {
  background: white;
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background: white;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  display: block !important;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--brand-teal-light);
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  line-height: 0;
  flex-shrink: 0;
}

.feature-icon.teal {
  background: linear-gradient(
    135deg,
    var(--brand-teal-light),
    var(--brand-teal)
  );
  color: white;
}

.feature-icon svg {
  width: 32px;
  height: 32px;
  min-width: 32px;
  min-height: 32px;
  display: block;
  flex: 0 0 32px;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-black);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.feature-text {
  font-size: 0.9375rem;
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.feature-list li {
  font-size: 0.9375rem;
  color: #666;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.7;
}

.feature-list li::before {
  content: "•";
  color: var(--brand-teal);
  font-weight: bold;
  position: absolute;
  left: 0;
  font-size: 1.25rem;
}

.feature-footer {
  font-size: 0.9375rem;
  color: #666;
  margin-top: 1rem;
  line-height: 1.7;
}

/* Educational Supervision Section */
.supervision-section {
  background: linear-gradient(135deg, #4a9b8e, #5cb8a6);
  position: relative;
}

.supervision-card {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.supervision-subtitle {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-teal);
  margin-bottom: 1rem;
}

.supervision-text {
  font-size: 0.9375rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.supervision-checklist {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.check-icon {
  width: 40px;
  height: 40px;
  background: var(--brand-teal);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  line-height: 0;
}

.check-icon svg {
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  display: block;
  flex: 0 0 20px;
}

.check-item span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--brand-black);
}

/* Pathways Section */
.pathways-section {
  background: var(--brand-gray);
}

.pathway-items {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.pathway-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.pathway-card.reverse .pathway-content {
  direction: ltr;
}

.pathway-image {
  border-radius: 50%;
  overflow: hidden;
  /* aspect-ratio: 1; */
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  height: 350px;
}

.pathway-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pathway-content {
  /* padding: 2rem 0; */
}

.pathway-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--brand-black);
  margin-bottom: 1rem;
}

.pathway-text {
  font-size: 1rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.pathway-stat {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.stat-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  line-height: 0;
  flex-shrink: 0;
}

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

.stat-icon svg {
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  display: block;
  flex: 0 0 20px;
}

.pathway-stat span {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--brand-teal);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #4a9b8e, #5cb8a6);
  text-align: center;
}

.cta-subtitle {
  font-size: 1.125rem;
  color: white;
  margin-bottom: 2.5rem;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn-white {
  background: white;
  color: var(--brand-teal);
  padding: 16px 40px;
  border: none;
  cursor: pointer;
  letter-spacing: 1px;
  font-weight: 700;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.cta-btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.cta-btn-outline {
  background: transparent;
  color: white;
  padding: 14px 38px;
  border: 2px solid white;
  cursor: pointer;
  letter-spacing: 1px;
  font-weight: 700;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cta-btn-outline:hover {
  background: white;
  color: var(--brand-teal);
  transform: translateY(-3px);
}

.whatsapp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25em;
  height: 1.25em;
  font-size: 1rem;
  line-height: 1;
  flex-shrink: 0;
}

/* Teachers Section */
.teachers-section {
  background: white;
}

.teachers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.teacher-card {
  background: white;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.teacher-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--brand-teal-light);
}

.teacher-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.5rem;
  border: 4px solid var(--brand-teal-light);
  display: none;
}

.teacher-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.teacher-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-black);
  margin-bottom: 0.5rem;
}

.teacher-role {
  font-size: 0.875rem;
  color: var(--brand-teal);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.teacher-bio {
  font-size: 0.9375rem;
  color: #666;
  line-height: 1.7;
}

/* Testimonials Section */
.testimonials-section {
  background: var(--brand-gray);
}

.testimonial-card {
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  background-color: white;
  display: block !important;
}
.author-info {
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.author-name {
  font-size: 1rem;
  font-weight: 400;
  color: var(--brand-black);
}

/* carousel cards - Blaze Slider */
.testimonials-slider {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.testimonials-slider .blaze-container {
  flex: 1;
  min-width: 0;
}
.testimonials-slider .testimonial-card {
  height: 100%;
  margin-bottom: 0;
}

.aboutUs-slider {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.aboutUs-slider .blaze-container {
  flex: 1;
  min-width: 0;
}
.aboutUs-slider .feature-card {
  height: 100%;
  margin-bottom: 0;
}

/* Contact Section */
.contact-section {
  background: var(--brand-gray);
}

.contact-intro {
  font-size: 1.125rem;
  color: #666;
  text-align: center;
  margin: 0 auto 3rem;
  max-width: 700px;
  line-height: 1.8;
}

.contact-intro-highlight {
  color: var(--brand-teal);
}

.contact-form {
  max-width: 700px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 1rem;
}

/* Mobile: stack form fields full-width */
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-input,
.form-textarea {
  padding: 16px 20px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: white;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--brand-teal);
  box-shadow: 0 0 0 3px rgba(26, 107, 107, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #9ca3af;
}

.form-textarea {
  resize: vertical;
  min-height: 200px;
  margin-bottom: 1.5rem;
}

.submit-button {
  background-color: var(--brand-teal);
  color: white;
  padding: 16px 48px;
  border: none;
  cursor: pointer;
  letter-spacing: 1px;
  font-weight: 700;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 1rem;
  text-transform: uppercase;
}

.submit-button:hover {
  background-color: var(--brand-teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(26, 107, 107, 0.3);
}

body.success-open {
  overflow: hidden;
}

.success-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(2px);
  z-index: 9998;
}

.success-message {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(92vw, 460px);
  padding: 1.5rem 1.4rem;
  border-radius: 16px;
  border: 1px solid #cde9da;
  background: linear-gradient(145deg, #ffffff 0%, #f1faf5 100%);
  box-shadow: 0 16px 45px rgba(15, 23, 42, 0.2);
  text-align: center;
  z-index: 9999;
}

.success-message-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 0.85rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #1a6b6b 0%, #2f9f77 100%);
  box-shadow: 0 10px 22px rgba(47, 159, 119, 0.35);
}

.success-message-text {
  margin: 0 0 1rem;
  color: #0f172a;
  font-size: 1.03rem;
  line-height: 1.55;
  font-weight: 600;
}

.success-message-close {
  border: 0;
  border-radius: 10px;
  padding: 0.6rem 1rem;
  color: #ffffff;
  background-color: var(--brand-teal);
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

.success-message-close:hover {
  background-color: var(--brand-teal-dark);
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(26, 107, 107, 0.28);
}

@media (max-width: 480px) {
  .success-message {
    padding: 1.15rem 1rem;
  }

  .success-message-text {
    font-size: 0.98rem;
  }
}

/* Programs section */

.Program-card {
  background: white;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  padding-bottom: 2rem;
  text-align: left;
  transition: all 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.Program-card .card-content {
  padding: 0 2rem;
}

.Program-card .feature-title,
.Program-card .feature-list,
.Program-card .feature-footer,
.Program-card > p {
  padding-left: 2rem;
  padding-right: 2rem;
}

.Program-card .feature-title {
  padding-top: 1.5rem;
}

.Program-card .feature-footer {
  padding-bottom: 2rem;
}

.Program-card .pathway-stat {
  justify-content: center;
}

.Program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--brand-teal-light);
}

.Program-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  overflow: hidden;
  flex-shrink: 0;
}

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

/* end of Programs section */

/* slider */

.blaze-slider.my-slider {
  --slides-to-show: 3;
  --slide-gap: 20px;
}

@media (max-width: 900px) {
  .blaze-slider.my-slider {
    --slides-to-show: 2;
  }
}

@media (max-width: 500px) {
  .blaze-slider.my-slider {
    --slides-to-show: 1;
  }
}

.blaze-slider.dragging .blaze-track {
  cursor: grabbing;
}

.blaze-track > * {
  /* min-height: 300px; */
  display: flex;
  /* font-size: 30px; */
  justify-content: center;
  align-items: center;
  transition: width 300ms ease;
  border-radius: 16px;
}

/* pagination buttons */

.blaze-pagination {
  display: flex;
  gap: 15px;
}

.blaze-pagination button {
  font-size: 0;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  outline: none;
  border: none;
  background: hsl(0deg, 0%, 15%);
  cursor: pointer;
  transition:
    transform 200ms ease,
    background-color 300ms ease;
}

.blaze-pagination button.active {
  background: white;
  transform: scale(1.3);
}

.blaze-next,
.blaze-prev {
  border: none;
  font-size: 0;
  width: 40px;
  height: 40px;
  background: none;
  cursor: pointer;
  background-position: center;
  background-size: 22px 22px;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='24' viewBox='0 0 24 24' width='24'%3E%3Cpath d='M0 0h24v24H0z' fill='none'/%3E%3Cpath fill='%23444444' d='M11.67 3.87L9.9 2.1 0 12l9.9 9.9 1.77-1.77L3.54 12z'/%3E%3C/svg%3E");
  flex-shrink: 0;
}

.blaze-next {
  transform: rotate(180deg);
}

/* for loop: false */
.blaze-slider.start .blaze-prev,
.blaze-slider.end .blaze-next {
  opacity: 0.5;
  cursor: not-allowed;
}

.controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  gap: 20px;
}

.app {
  /* padding: 30px; */
  margin-bottom: 20px;
  width: 100%;
  /* max-width: 1000px; */
}

/*end slider */

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

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

  .pathway-card {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .pathway-card {
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    flex-direction: column;
  }

  .pathway-card.reverse {
    flex-direction: column-reverse;
  }

  .pathway-title {
    font-size: 1.5rem;
  }

  .pathway-image {
    border-radius: 16px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #f6fcfb;
    padding: 1rem 1.5rem 1.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    z-index: 100;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links .nav-link {
    width: 100%;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e8f8f5;
    font-size: 1rem;
  }

  .nav-links .contact-button {
    width: 100%;
    margin-top: 0.75rem;
  }

  .mobile-menu {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--brand-black);
    font-size: 1.5rem;
    line-height: 1;
    transition: color 0.3s ease;
  }

  .mobile-menu.active {
    color: var(--brand-teal);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-title {
    font-size: 2.5rem;
    letter-spacing: -1px;
  }

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

  .stats-row {
    gap: 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .cta-group {
    flex-direction: column;
  }

  .cta-button,
  .cta-button-secondary {
    width: 100%;
  }

  .shape-circle-1,
  .shape-square,
  .shape-arc {
    display: none;
  }

  .video-decoration {
    top: -10px;
    right: -10px;
  }

  .decorative-circle,
  .floating-pattern {
    display: none;
  }

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

  .section-subtitle {
    font-size: 1rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .supervision-card {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-btn-white,
  .cta-btn-outline {
    width: 100%;
    max-width: 300px;
  }

  .teachers-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .content-badge {
    font-size: 0.75rem;
    padding: 6px 16px;
  }

  .hero-container {
    padding: 5rem 1.5rem 4rem 1.5rem;
  }

  .section-container {
    padding: 3rem 1.5rem;
  }

  .section-title,
  .section-title-white {
    font-size: 1.75rem;
  }
}

.footer-section p {
  text-justify: inter-character;
  /* text-align: left; */
}

.footer-section h3 {
  padding: 0.5rem;
}

/* FAQ styles */
.faq-section {
  padding: 2.5rem 1.5rem;
}

.faq-card {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-bottom: 3rem;
  background: white;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  text-align: left;
  transition: all 0.3s ease;
}

.faq-item {
  border-bottom: 1px solid #e5e7eb;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  background: white;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.2s;
  color: var(--brand-black);
}

.faq-question:hover {
  background-color: #f8f9fa;
}

.faq-question h3 {
  font-size: 1rem;
  padding-right: 2rem;
  font-weight: 400;
  /* text-transform: lowercase; */
  line-height: 1.2rem;
}

.chevron {
  width: 24px;
  height: 24px;
  color: #357076;
  flex-shrink: 0;
  transition: transform 0.3s;
  display: block;
}

.faq-question.active .chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease-in-out,
    opacity 0.3s ease-in-out;
  opacity: 0;
}

.faq-answer.active {
  max-height: 1000px;
  opacity: 1;
}

.faq-answer-content {
  padding: 0 1.5rem 1.5rem;
  color: #666;
}

.faq-answer-content p {
  margin-bottom: 0.5rem;
  line-height: 1.2rem;
}

.faq-answer-content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .faq-question h3 {
    font-size: 0.9rem;
  }
}
