.banner-hero {
  position: relative;
  width: 100%;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  overflow: hidden;
}

.banner-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45); /* dark overlay for readability */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

.banner-hero-content {
  position: relative;
  text-align: center;
  max-width: 90%;
}

.banner-hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: 4rem;
  line-height: 1.3;
  color: var(--soft-ivory);
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ---------- Responsive Design ---------- */
@media (max-width: 992px) {
  .banner-hero {
    height: 60vh;
  }

  .banner-hero-content h1 {
    font-size: 3.2rem;
  }
}

@media (max-width: 600px) {
  .banner-hero {
    height: 35vh;
  }

  .banner-hero-content h1 {
    font-size: 3rem;
  }
}



/* ========== Reveal Sections ========== */
.reveal {
  width: 80%;
  max-width: 600px;
  margin: 50px auto;
  overflow: hidden;
  position: relative;
}

.reveal img {
  width: 100%;
  display: block;
  transform-origin: left;
}


/* ===========================================
   ACADEMY HERO SECTION STYLES
=========================================== */
/* Academy Section Styles */
.academy-section {
  padding: 40px 0;
  /* background: var(--soft-ivory); */
  position: relative;
  overflow: hidden;
}

.academy-section .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Rows */
.academy-row {
  display: flex;
  align-items: center;
  gap: 0;
}

/* Content Blocks */
.academy-content {
  flex: 1;
  padding: 40px;
}

.content-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

.content-wrapper .kmo-section-title{
  text-align: left;
  margin-bottom: 1rem;
}
/* Content Reveal Animations */
.content-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.content-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays for content */
.content-reveal:nth-child(1) { transition-delay: 0.1s; }
.content-reveal:nth-child(2) { transition-delay: 0.2s; }
.content-reveal:nth-child(3) { transition-delay: 0.3s; }
.content-reveal:nth-child(4) { transition-delay: 0.4s; }
.content-reveal:nth-child(5) { transition-delay: 0.5s; }


/* Content Text */
.content-text {
  margin-bottom: 40px;
  text-align: justify;
}

.description {
  font-family: "Syne", sans-serif;
  font-size: 1.6rem;
  line-height: 1.7;
  color: var(--ash-gray);
  margin-bottom: 20px;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 40px 0;
}

.stat-box {
  text-align: center;
  padding:10px;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(139, 107, 97, 0.1);
}

.stat-number {
  font-family: "Syne", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--deep-rose);
  margin-bottom: 5px;
}

.stat-label {
  font-family: "Syne", sans-serif;
  font-size: 1.4rem;
  color: var(--ash-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* Action Buttons */
.action-buttons {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}


/* Responsive */
@media (max-width: 1024px) {
  .academy-row {
    flex-direction: column;
    gap: 40px;
  }

  
  .reveal {
    width: 100%;
    max-width: 100%;
  }
  
  .reveal img {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .academy-section {
    padding: 60px 0;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .action-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  .academy-content {
    padding: 20px;
  }
  
  .right-image{
    display: none;
  }
}

@media (max-width: 480px) {
  
  .stat-number {
    font-size: 2.5rem;
  }
}





