/* ==================== HERO SECTION ==================== */
.hero {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(35, 47, 95, 0.6) 0%, rgba(26, 35, 72, 0.75) 50%);
}

.hero-content {
  position: relative;
  z-index: 10;
  padding-top: 1rem;
}

.hero-text {
  max-width: 48rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  background: rgba(230, 204, 143, 0.2);
  border: 1px solid rgba(230, 204, 143, 0.3);
  color: var(--secondary);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 2rem;
  font-family: 'STIX Two Text', serif;
}

.badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--secondary);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 3rem);
  color: var(--primary-foreground);
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.125rem;
  color: rgba(245, 240, 230, 0.8);
  max-width: 40rem;
  margin-bottom: 2.5rem;
  line-height: 1.75;
  font-family: 'STIX Two Text', serif;
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 1.25rem;
  }
}

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

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-mouse {
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid rgba(245, 240, 230, 0.3);
  border-radius: 50px;
  display: flex;
  justify-content: center;
  padding-top: 0.5rem;
}

.scroll-dot {
  width: 0.375rem;
  height: 0.375rem;
  background: var(--secondary);
  border-radius: 50%;
  animation: scrollBounce 1.5s infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ==================== SECTION COMMON ==================== */
.section-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--secondary-dark);
  margin-bottom: 1rem;
}

.section-title2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.25rem;
  color: var(--primary);
  max-width: 42rem;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 4rem;
}

/* ==================== INTRODUCTION SECTION ==================== */
.intro-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

.introduction{
  background-color: #fff;
}

@media (min-width: 1024px) {
  .intro-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.intro-content .section-description {
  margin: 0 0 2rem 0;
  text-align: left;
}

.intro-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.tag {
  padding: 0.5rem 1rem;
  background: var(--accent);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
}

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

.pillar-card {
  display: flex;
  align-items: flex-start;

  padding: 1.5rem;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pillar-icon {
  width: 3.5rem;
  height: 3.5rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border-radius: var(--radius);
}

.pillar-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  stroke: var(--primary-foreground);
}

.pillar-text h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.pillar-text p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* ==================== SCHOOLS SECTION ==================== */
.schools-grid {
  display: grid;
  gap: 2rem;
}

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

.school-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--card);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.school-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.school-image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.school-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.school-card:hover .school-image img {
  transform: scale(1.05);
}

.school-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(35, 47, 95, 0.8) 0%, transparent 50%);
}

.school-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  color: var(--primary-foreground);
}

.school-location {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--secondary);
  margin-bottom: 0.25rem;
}

.school-name {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.school-address {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  opacity: 0.8;
  margin-bottom: 1rem;
}

.school-address svg {
  width: 1rem;
  height: 1rem;
}

.school-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.school-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  background: rgba(245, 240, 230, 0.1);
  border-radius: 50px;
  font-size: 0.8125rem;
}

.school-badge svg {
  width: 1rem;
  height: 1rem;
}

/* ==================== HIGHLIGHTS SECTION ==================== */
.highlights {
  background: var(--secondary);
}

.highlights .section-label {
  color: var(--primary);
}

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

@media (min-width: 768px) {
  .highlights-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .highlights-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.highlight-card {
  text-align: center;
  padding: 1.5rem;
  background: rgba(245, 240, 230, 0.05);
  border: 1px solid var(--primary);
  border-radius: var(--radius-lg);
  transition: background var(--transition-base);
}

.highlight-card:hover {
  background: rgba(245, 240, 230, 0.1);
}

.highlight-icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(230, 204, 143, 0.2);
  border-radius: var(--radius);
}

.highlight-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  stroke: var(--primary);
}

.highlight-stat {
  font-family: 'STIX Two Text', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.highlight-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.highlight-desc {
  font-size: 0.75rem;
  color: var(--primary);
}

/* ==================== CTA SECTION ==================== */
.cta-box {
  position: relative;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: var(--radius-xl);
  padding: 3rem 2rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .cta-box {
    padding: 4rem;
  }
}

@media (min-width: 1024px) {
  .cta-box {
    padding: 5rem;
  }
}

.cta-decoration {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.cta-decoration-1 {
  top: -2rem;
  right: -2rem;
  width: 16rem;
  height: 16rem;
  background: rgba(230, 204, 143, 0.1);
}

.cta-decoration-2 {
  bottom: -2rem;
  left: -2rem;
  width: 12rem;
  height: 12rem;
  background: rgba(230, 204, 143, 0.05);
}

.cta-content {
  position: relative;
  z-index: 10;
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(230, 204, 143, 0.2);
  border: 1px solid rgba(230, 204, 143, 0.3);
  border-radius: 50px;
  color: var(--secondary);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 2rem;
}

.cta-badge svg {
  width: 1rem;
  height: 1rem;
}

.cta-title {
  font-size: clamp(1.75rem, 4vw, 3rem);
  color: var(--primary-foreground);
  margin-bottom: 1.5rem;
}

.cta-description {
  font-size: 1.125rem;
  color: rgba(245, 240, 230, 0.8);
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

@media (min-width: 768px) {
  .cta-description {
    font-size: 1.25rem;
  }
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
}


    /* ==================== PILLARS GRID UPDATES ==================== */
    .pillars-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin-top: 3rem;
    }

    .pillar-card {
      background: #fff;
      border-radius: 16px;
      padding-bottom: 1rem;
      text-align: center;
      box-shadow: 0 10px 30px rgba(0,0,0,0.08);
      transition: transform 0.3s ease;
      border: 1px solid #eee;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .pillar-card:hover {
      transform: translateY(-5px);
    }

    .pillar-icon {
      width: 100%;
      height: 200px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
    }

    .pillar-icon img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      object-position: center;
      display: block;
    }

    .pillar-card h3 {
      font-size: 1.8rem;
      margin-bottom: 0.5rem;
      color: #232F5F;
    }

    .pillar-card > span {
      color: #E6CC8F;
      font-weight: 600;
      display: block;
      margin-bottom: 1rem;
      font-size: 1.25rem;
      font-family: 'STIX Two Text', serif;
    }

    .pillar-card p {
      color: var(--primary);
      line-height: 1.6;
      margin: 0;
      font-size: 1.25rem;
    }

    .section-heading{
      font-size: 2.5rem;
      margin-bottom: 1rem;
    }