* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #333;
  background: #fff;
}
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Top Info Bar Styles */
.top-info-bar {
  background-color: #111;
  color: #fff;
  font-size: 14px;
  padding: 6px 0; /* remove side padding */
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 1000;
  text-align: center; /* ✅ center the text */
}



.top-info-bar .container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}

.top-info-bar .contact-info {
  display: flex;
  gap: 20px;
}

.top-info-bar .contact-info i {
  margin-right: 6px;
  color: #ffc107; /* Optional: icon color */
}

/* Responsive Adjustments */
@media (max-width: 600px) {
  .top-info-bar .contact-info {
    flex-direction: column;
    gap: 5px;
  }
}




/* Navigation Base */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background-color: transparent;
  z-index: 999;
  background-color:#ac1a2f ;
  transition: top 0.3s ease-in-out;
  position: fixed;
  top: 0;
  width:100%;
  opacity: translateY(0);
  pointer-events: auto;

}
.navbar.hidden{
  opacity: translateY(-20px);
  pointer-events: none;
  opacity: 0;

}

.logo-container {
  flex: 1;
}

.logo {
  height: 70px;
}

.nav-links {
  display: flex;
  justify-content: center;
  flex: 2;
  list-style: none;
  margin-top: 80px;
}

.nav-links li {
  position: relative;
  margin: 0 10px;
}

.nav-links a {
  text-decoration: none;
  font-size: 16px;
  color: #ffffff;
  padding: 8px 12px;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #000000;
  transition: width 0.8s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: #f1efef;
  background-color: transparent;
}

/* CTA */
.cta-container {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.cta-button {
  background-color: #f6c20f;
  color: white;
  padding: 10px 20px;
  font-weight: bold;
  text-transform: uppercase;
  white-space: nowrap;
  text-decoration: none;
}

.cta-button:hover {
  background-color: #dddddd;
  color: #000000;
}

.cta-button .arrow {
  margin-left: 70px;
  font-weight: bold;
}

/* Base Dropdown */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  list-style: none;
  padding: 0;
  border: none;
  z-index: 1000;
  min-width: 200px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.dropdown:hover > .dropdown-menu {
  display: block;
}

.dropdown-menu .dropdown {
  position: relative;
}

.dropdown-menu .dropdown-menu {
  top: 0;
  left: 100%;
  position: absolute;
  display: none;
  background-color: white;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  z-index: 1001;
}

.dropdown-menu .dropdown:hover > .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  width: 200px;
}

.dropdown-menu a {
  display: block;
  padding: 10px 15px;
  font-size: 16px;
  color: #333;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
}

.dropdown-menu a:hover {
  background-color: #f6c20f;
  color: #fff;
}

.dropdown-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background-color: #f6c20f;
  transition: width 0.6s ease;
}

.dropdown-menu a:hover::after {
  width: 40%;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  z-index: 10001;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #333;
  border-radius: 2px;
  transition: all 0.4s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* CTA Mobile */
.cta-mobile {
  display: none;
}

/* ------------------ Responsive ------------------ */
@media (max-width: 768px) {
  .navbar {
    flex-direction: row;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #ac1a2f;
    z-index: 10000;
  }

  .nav-links {
    position: fixed;
    top: 100px;
    left: -100%;
    width: 100%;
    height: 100vh;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 80px 20px 20px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    margin-top: 0;
    transition: left 0.4s ease;
    overflow-y: auto;
    
  }
  .nav-links a {
    text-decoration: none;
    font-size: 20px;
    color: #000000;
    padding: 8px 12px;
    position: relative;
    font-size: 15px;
  }
  .nav-links a:hover {
    color: #030303;
    background-color: transparent;
  }

  .nav-links.open {
    left: 0;
  }

  .nav-links li {
    margin: 15px 0;
  }

  .cta-container {
    display: none;
  }

  .cta-mobile {
    display: block;
    margin: 10px 0;
  }

  .hamburger {
    display: flex;
    margin-left: auto;
  }

  /* Mobile Dropdown Overrides */
  .dropdown-menu {
    position: static;
    background: none;
    box-shadow: none;
    display: none;
    padding-left: 20px;
    width: 100%;
  }

  .dropdown.open > .dropdown-menu {
    display: block;
  }

  .dropdown-menu .dropdown-menu {
    padding-left: 20px;
    position: static;
    display: none;
    box-shadow: none;
  }

  .dropdown-menu .dropdown.open > .dropdown-menu {
    display: block;
  }

  .dropdown-menu li {
    margin: 10px 0;
    width: 100%;
  }

  .dropdown-menu a::after {
    height: 1px;
  }

  .dropdown-menu a:hover::after {
    width: 100%;
  }
}






.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  padding-top: 110px; /* Added space for top bar + navbar */
}


.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1s ease, transform 1.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.slide-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  top: 0;
  left: 0;
  z-index: 0;
}

.slide-content {
  color: #fff;
  text-align: center;
  z-index: 2;
  padding: 0 5%;
  max-width: 800px;
  animation: fadeInUp 1s ease;
}

.slide-content h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.slide-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.85;
}

.btn-hero {
  padding: 14px 30px;
  background: #ac1a2f;
  color: #fff;
  border: none;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 50px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn-hero:hover {
  background: #8a1123;
  transform: translateY(-3px);
}

/* Keyframe Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .slide-content h1 {
    font-size: 1.8rem;
  }

  .slide-content p {
    font-size: 1rem;
  }

  .btn-hero {
    font-size: 0.9rem;
    padding: 12px 24px;
  }
}




/* About Section - Updated Colors */
.about-us {
  position: relative;
  background: url('your-image.jpg') center/cover no-repeat, #ac1a2f;
  padding: 100px 5%;
  z-index: 1;
  color: #fff;
  overflow: hidden;
}

.about-us::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay */
  z-index: 0;
}

.about-us * {
  position: relative;
  z-index: 1;
}

.about-container {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.about-images {
  position: relative;
  width: 500px;
  max-width: 100%;
  min-height: 500px;
}

.about-images .img {
  position: absolute;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease, filter 0.4s ease;
}

.about-images .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img1 img { filter: none; }
.img2 img, .img3 img, .img4 img { filter: blur(5px); }
.img2:hover img, .img3:hover img, .img4:hover img { filter: blur(0px); }

.img1 { top: 0; left: 0; width: 60%; height: 60%; z-index: 4; }
.img2 { top: 20%; right: 0; width: 50%; height: 50%; z-index: 3; }
.img3 { bottom: 0; left: 10%; width: 40%; height: 40%; z-index: 2; }
.img4 { bottom: 0; right: 0; width: 30%; height: 30%; z-index: 1; }

.about-images .img:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.about-content {
  flex: 1;
  min-width: 300px;
}

.about-content h2 {
  font-size: 40px;
  color: #FFD700;
  margin-bottom: 10px;
}

.about-content h3 {
  font-size: 24px;
  color: #ac1a2f;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 17px;
  color: #eee;
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-highlights {
  display: flex;
  gap: 20px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: #fff;
  background: #1a1a1a;
  padding: 10px 20px;
  border-radius: 50px;
  transition: background 0.3s;
}

.highlight i {
  color: #FFD700;
  font-size: 20px;
}

.highlight:hover {
  background: #333;
}

.learn-more-about {
  display: inline-block;
  margin-top: 30px;
  background: #000000;
  color: white;
  padding: 14px 30px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
}

.learn-more-about:hover {
  background: #aab413;
  transform: translateY(-3px);
}


/* Responsive - About Section */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    align-items: center;
  }

  .about-images {
    width: 350px;
    height: 350px;
    margin-bottom: 30px;
  }

  .img1, .img2 {
    width: 80%;
  }

  .about-content {
    text-align: center;
  }

  .about-highlights {
    justify-content: center;
  }
}







.kids-programs {
  padding: 80px 5%;
  background: #000;
  text-align: center;
  position: relative;
  overflow-x: hidden;
}

.section-header h2 {
  font-size: 42px;
  color: #ffffff;
  margin-bottom: 10px;
  animation: fadeInDown 1s ease-out forwards;
}

.section-header p {
  color: #ffcc00;
  margin-bottom: 50px;
  font-size: 18px;
  animation: fadeInUp 1.2s ease-out forwards;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.program-card {
  background: #fff;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  cursor: pointer;
  opacity: 0;
  transform: translateX(100px);
  transition: transform 0.8s ease, opacity 0.8s ease;
}

.program-card.show {
  opacity: 1;
  transform: translateX(0);
}

.program-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: filter 0.4s ease, transform 0.4s ease;
}

.program-card h3 {
  font-size: 24px;
  color: #ac1a2f;
  margin: 20px;
  font-weight: bold;
}

.program-card p {
  color: #444;
  font-size: 16px;
  margin: 0 20px 20px;
  min-height: 60px;
  line-height: 1.6;
}

.learn-more {
  display: block;
  padding: 12px 30px;
  text-align: center;
  background: #ac1a2f;
  color: white;
  text-decoration: none;
  font-weight: bold;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  border-radius: 50px;
  transition: all 0.4s ease;
}

.program-card:hover img {
  filter: blur(6px) brightness(0.8);
  transform: scale(1.05);
}

.program-card:hover .learn-more {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
  background-color: #8e1124;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.learn-more:hover {
  background-color: #5c0b18;
  transform: translate(-50%, -50%) scale(1.1);
}

/* Animation keyframes for headers */
@keyframes fadeInDown {
  0% { opacity: 0; transform: translateY(-30px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Responsive Grid */
@media (max-width: 992px) {
  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .programs-grid {
    grid-template-columns: 1fr;
  }
}









/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Enroll Section */
.enroll-now {
  position: relative;
  background-color: #ac1a2f;
  padding: 60px 20px;
  text-align: center;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  background-size: cover;
  background-position: center;
}

/* Overlay to darken the background */
.enroll-now::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8); /* Adjust darkness here */
  z-index: 0; /* Ensure the overlay stays behind the content */
}

.enroll-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  z-index: 1; /* Ensure content is on top of the overlay */
  position: relative; /* Ensure this container is above the overlay */
}

.enroll-content h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  animation: fadeIn 1.5s ease-out;
  color: #ffffff; /* Updated to the new color */
}

.enroll-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0;
  animation: fadeIn 2s ease-out 0.5s forwards;
}

.benefits {
  list-style: none;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeIn 2.5s ease-out 1s forwards;
}

.benefits li {
  font-size: 1.2rem;
  margin: 10px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.benefits li i {
  margin-right: 10px;
  color: #fffc00; /* Bright yellow for checkmark */
  font-size: 1.4rem;
}

.cta-enroll-btn {
  display: inline-block;
  padding: 15px 40px;
  background-color: #020202; /* Updated to the new color */
  color: #ffffff;
  font-size: 1.2rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

.cta-enroll-btn:hover {
  background-color: #e2f01b; /* Slightly darker shade of blue */
  transform: scale(1.1);
  box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.3);
  animation: bounce 0.5s ease;
  color: #000;
}


/* Animations */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .enroll-now {
    padding: 40px 10px;
  }

  .enroll-content h2 {
    font-size: 2rem;
  }

  .enroll-content p {
    font-size: 1rem;
  }

  .cta-enroll-btn {
    padding: 12px 30px;
    font-size: 1.1rem;
  }

  .benefits li {
    font-size: 1rem;
  }
}




/* Main Section Styles */
.kids-program-experience {
  background: linear-gradient(135deg, #000000, #1a1a1a);
  padding: 60px 20px;
  text-align: center;
}

.section-title {
  font-size: 2.8rem;
  color: #ac1a2f;
  margin-bottom: 20px;
}

.section-description {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Images Row */
.images-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Individual Image Card */
.image-card {
  position: relative;
  overflow: hidden;
  width: 300px;
  height: 400px;
  box-shadow: 0 4px 12px rgba(255, 255, 0, 0.2);
  transition: transform 0.5s ease, box-shadow 0.5s ease, border 0.5s ease;
  background: #000; /* fallback */
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

/* Overlay on Image */
.image-overlay {
  position: absolute;
  bottom: 0;
  background: rgba(172, 26, 47, 0.85); /* red overlay */
  color: #fff;
  width: 100%;
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.5s ease;
  text-align: left;
}

.image-overlay h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: yellow;
}

.image-overlay p {
  font-size: 1rem;
  line-height: 1.4;
}

/* Hover Effects */
.image-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 255, 0, 0.4);
  border: 2px solid yellow;
}

.image-card:hover img {
  transform: scale(1.05);
}

.image-card:hover .image-overlay {
  transform: translateY(0%);
}

/* Responsive */
@media (max-width: 768px) {
  .images-row {
    flex-direction: column;
    align-items: center;
  }

  .image-card {
    width: 90%;
    height: 350px;
  }
}




/* Events Section Styles */
.events-block {
  padding: 50px 20px;
  background: #000;
  text-align: center;
}

.events-block h2 {
  font-size: 2.2em;
  margin-bottom: 40px;
  color: #FFD700;
}

.swiper {
  max-width: 850px;
  margin: auto;
}

.swiper-slide {
  position: relative;
  height: 450px;
  overflow: hidden;
  transition: transform 0.4s ease-in-out;
}

.swiper-slide:hover {
  transform: scale(1.01);
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(70%);
  transition: filter 0.3s ease;
}

.slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 25px;
  width: 100%;
  color: #fff;
  text-align: left;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 60%, transparent);
  animation: fadeInUp 0.8s ease forwards;
}

.slide-content h4 {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: #FFD700;
}

.slide-content p {
  font-size: 0.95em;
  margin-bottom: 15px;
  max-width: 90%;
  color: #f0f0f0;
}

.see-more-btn {
  background: #FFD700;
  color: #000;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}

.see-more-btn:hover {
  background-color: #ac1a2f;
  color: #fff;
}

/* Overlay Modal */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px;
  overflow-y: auto;
  animation: fadeIn 0.5s ease;
}

.overlay-content {
  max-width: 850px;
  background: #1a1a1a;
  border-radius: 12px;
  padding: 30px;
  position: relative;
  animation: fadeInUp 0.6s ease;
  color: #fff;
}

.overlay-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 30px;
  cursor: pointer;
  background: none;
  border: none;
  color: #FFD700;
}

.media-viewer {
  width: 100%;
  height: 400px;
  border-radius: 10px;
  margin-bottom: 20px;
  overflow: hidden;
}

iframe,
.media-viewer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
  justify-content: center;
}

.gallery img {
  width: 100px;
  height: 70px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.08);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .events-block h2 {
    font-size: 1.8em;
  }

  .slide-content {
    padding: 15px;
  }

  .slide-content h4 {
    font-size: 1.1em;
  }

  .slide-content p {
    font-size: 0.85em;
  }

  .media-viewer {
    height: 250px;
  }

  .gallery img {
    width: 80px;
    height: 60px;
  }
}

@media (max-width: 480px) {
  .overlay-content {
    padding: 20px;
  }

  .media-viewer {
    height: 200px;
  }

  .gallery img {
    width: 70px;
    height: 50px;
  }

  .see-more-btn {
    font-size: 0.9em;
    padding: 8px 14px;
  }

  .slide-content {
    text-align: center;
  }

  .slide-content h4,
  .slide-content p {
    max-width: 100%;
  }
}









/* Container Base */
.contact-us-section {
  background: #000;
  padding: 80px 20px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.section-title {
  font-size: 2.8rem;
  margin-bottom: 20px;
  font-weight: 700;
  color: #ffc107;
  text-align: center;
}

.lead {
  font-size: 1.2rem;
  margin-bottom: 50px;
  text-align: center;
  color: #ddd;
}

/* Flex Layout */
.contact-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

/* Info Box */
.contact-info {
  flex: 1;
  padding-right: 30px;
}

.contact-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 25px;
  margin-bottom: 25px;
  border-left: 5px solid #ac1a2f;
  border-radius: 15px;
  transition: all 0.4s ease;
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 193, 7, 0.1);
}

.contact-item i {
  font-size: 2rem;
  color: #ffc107;
  margin-bottom: 10px;
}

.contact-item h5 {
  font-size: 1.3rem;
  color: #ac1a2f;
  margin-bottom: 10px;
}

/* Divider */
.vertical-line {
  width: 2px;
  background-color: #222;
  height: auto;
  margin: 0 30px;
}

/* Form Box */
.contact-form {
  flex: 1;
  margin-top: 60px;
}

.form-header {
  font-size: 2rem;
  font-weight: 600;
  color: #ffc107;
  margin-bottom: 20px;
  text-align: center;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  margin: 10px 0;
  border-radius: 10px;
  border: 1px solid #444;
  background: #111;
  color: #fff;
  font-size: 1.1rem;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ac1a2f;
  outline: none;
}

.contact-form button {
  background: #ac1a2f;
  color: #fff;
  font-size: 1.2rem;
  padding: 15px 30px;
  border: none;
  border-radius: 30px;
  margin-top: 10px;
  transition: background-color 0.3s ease, transform 0.2s;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #ffc107;
  color: #000;
  transform: translateY(-2px);
}

/* WhatsApp Button */
.whatsapp-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  padding: 16px;
  font-size: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  z-index: 999;
  transition: all 0.3s ease;
}

.whatsapp-button:hover {
  background-color: #1ebe57;
  transform: scale(1.1);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wow.fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.wow.slide-in-right {
  animation: slideInRight 0.6s ease forwards;
}

@media (max-width: 768px) {
  .contact-row {
    flex-direction: column;
    align-items: center;
  }

  .contact-info,
  .contact-form {
    flex: 1 1 100%;
    padding-right: 0;
    margin-top: 30px;
  }

  .contact-form {
    margin-top: 40px;
  }

  .vertical-line {
    display: none;
  }

  .contact-form button {
    width: 100%;
  }

  .whatsapp-button {
    bottom: 20px;
    right: 20px;
    padding: 14px;
    font-size: 20px;
  }
}











/* Footer */
.footer {
  background-color: #ac1a2f;
  color: #000000; /* Yellow text */
  padding: 60px 20px 30px;
  position: relative;
  overflow: hidden;
}

.footer-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

.footer-about, .footer-social, .footer-links {
  flex: 1;
  min-width: 250px;
  margin: 20px;
}

.footer h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  position: relative;
  color: #ffffff; /* Deep red headers */
}

.footer p, .footer a, .footer li {
  font-size: 1rem;
  color: #ffffff; /* Yellow text */
}

.footer a {
  text-decoration: none;
  color: #000000; /* Yellow links */
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #ffffffde; /* Deep red on hover */
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-icons a {
  font-size: 1.5rem;
  color: #000000; /* Yellow icons */
  padding: 10px;
  border-radius: 0%;
  transition: background 0.4s ease, transform 0.4s ease;
}

.social-icons a:hover {
  transform: scale(1.2);
  color: #ffffff; /* Deep red on hover */
}

/* Footer Links */
.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 15px;
  position: relative;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.5px;
  overflow: hidden;
  display: block;
  text-align: left;
  color: #000000; /* Yellow link text */
}

.footer-links li::after {
  content: "";
  display: block;
  height: 2px;
  width: 0;
  background: #ffffff; /* Deep red underline */
  transition: width 0.3s ease;
  margin-top: 5px;
}

.footer-links li:hover::after {
  width: 10%;
}

.footer-links a {
  text-decoration: none;
  color: #000000; /* Yellow links */
  font-family: 'Poppins', sans-serif;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 193, 7, 0.2); /* Light yellow border */
  font-size: 0.9rem;
  margin-top: 30px;
  color: #f8f8f8; /* Yellow footer bottom text */
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }

  .footer-about, .footer-social, .footer-links {
    margin: 20px 0;
  }

  .footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}






/* Parents */

/* Section Hero */
.section-hero {
  position: relative;
  background: url('photo/LYN\ PHOTO\ STUDIO.._59.JPG') center/cover no-repeat, #ac1a2f;
  padding: 100px 20px;
  text-align: center;
  color: white;
  overflow: hidden;
  z-index: 1;
  animation: fadeInUp 1s ease-out;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  padding-top: 110px;
}

.section-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay */
  z-index: 0;
}

.section-hero * {
  position: relative;
  z-index: 1; /* Ensures text appears above the overlay */
}


.section-hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  animation: slideInDown 1s ease-out;
  padding-top: 180px;
}

.section-hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  animation: fadeIn 1.5s ease-out;
}

.btn-main,
.btn-outline {
  padding: 12px 28px;
  margin: 10px;
  border-radius: 25px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-main {
  background-color: white;
  color: #000000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-main:hover {
  background-color: #f0f0f0;
  transform: translateY(-3px);
}

.btn-outline {
  border: 2px solid white;
  color: white;
  background: transparent;
}

.btn-outline:hover {
  background: white;
  color: #000000;
  transform: scale(1.05);
}

/* Events Section */
.form-area {
  padding: 60px 20px;
  background-color: #ffffff;
}

.title-section {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #000203;
}

.flex-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.half-width {
  flex: 1 1 300px;
  max-width: 330px;
}

.card-event {
  background: #ffffff;
  border: 1px solid #dcdcdc;
  border-left: 8px solid #000305;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInUp 1s ease forwards;
}

.card-event:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.card-event h4 {
  font-size: 1.4rem;
  color: #000000;
  margin-bottom: 10px;
}

.card-event p {
  margin: 6px 0;
  color: #555;
}

.btn-action {
  margin-top: 15px;
  padding: 10px 20px;
  background: #000203;
  color: white;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-action:hover {
  background: #ffffff;
  transform: scale(1.05);
  color: #000;
}

/* Animations */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInDown {
  0% {
    opacity: 0;
    transform: translateY(-40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
  .flex-row {
    flex-direction: column;
    align-items: center;
  }

  .half-width {
    width: 100%;
    max-width: 90%;
    opacity: 0;
    transform: scale(0.9) translateY(40px);
    animation: cardPopUp 0.8s ease-out forwards;
  }

  .half-width:nth-child(1) {
    animation-delay: 0.2s;
  }

  .half-width:nth-child(2) {
    animation-delay: 0.4s;
  }

  .half-width:nth-child(3) {
    animation-delay: 0.6s;
  }

  @keyframes cardPopUp {
    to {
      opacity: 1;
      transform: scale(1) translateY(0);
    }
  }
}
.two-column-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
  justify-content: center;
}

.left-description {
  flex: 1;
  min-width: 280px;
  max-width: 400px;
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  animation: fadeInUp 1s ease-out forwards;
}

.left-description h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #000000;
}

.left-description p {
  color: #000000;
  line-height: 1.6;
}

.apply-form {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  background: #dbb81a;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.apply-form input,
.apply-form select,
.apply-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
}

.apply-form button {
  width: 100%;
}

/* Responsive for columns */
@media (max-width: 768px) {
  .two-column-layout {
    flex-direction: column;
  }
}





/*fees portal*/


.fees-hero {
  background: #dbb81a;
  color: white;
  text-align: center;
  padding: 60px 20px;
  animation: fadeInDown 1s ease;
}

.fees-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

.fees-hero p {
  font-size: 1.2rem;
  margin-top: 10px;
}

.fees-container {
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
}

.fees-program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.fees-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  text-align: center;
  position: relative;
  animation: fadeInUp 0.5s ease;
}

.fees-card:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 25px rgba(0,0,0,0.2);
}

.card-img-container {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.fees-card:hover .card-img {
  transform: scale(1.1);
}

.fees-card h3 {
  color: #003366;
  padding: 10px 0;
  font-size: 1.5rem;
}

.program-cta {
  color: #003366;
  font-size: 1rem;
  margin-bottom: 20px;
}

.fees-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 51, 102, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: fadeIn 0.4s ease;
}

.fees-modal {
  background: white;
  padding: 30px;
  border-radius: 15px;
  max-width: 500px;
  width: 90%;
  position: relative;
  animation: slideIn 0.5s ease;
}

.fees-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
  color: #003366;
}

.fees-pay-btn {
  background-color: #003366;
  color: white;
  padding: 10px 25px;
  border: none;
  border-radius: 25px;
  margin-top: 20px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.fees-pay-btn:hover {
  background: #002244;
}

.hidden {
  display: none;
}

/* Animations */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideIn {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}




/* Base styles */
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f4f7fb;
  margin: 0;
  padding: 0;
  color: #003366;
}

.payment-container {
  max-width: 500px;
  margin: 40px auto;
  background-color: #dbb81a;
  padding: 30px 24px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  animation: fadeIn 0.6s ease-in-out;
}

.payment-title {
  font-size: 22px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 25px;
  color: #000000;
}

/* Form fields */
label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 14px;
}

input {
  width: 100%;
  padding: 10px 12px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 10px;
  margin-bottom: 18px;
  transition: border-color 0.3s ease;
}

input:focus {
  border-color: #003366;
  outline: none;
}

/* Buttons */
.btn-next,
.btn-option,
.btn-copy,
.btn-pay {
  background-color: #003366;
  color: #fff;
  padding: 12px 18px;
  border: none;
  border-radius: 10px;
  margin-top: 10px;
  font-size: 16px;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-next:hover,
.btn-option:hover,
.btn-copy:hover,
.btn-pay:hover {
  background-color: #001f4d;
  transform: translateY(-2px);
}

/* Payment Options */
#payment-section {
  margin-top: 30px;
  animation: fadeInUp 0.7s ease-in-out;
}

.payment-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

/* Payment Forms */
.payment-form {
  background-color: #f0f4f8;
  padding: 18px;
  border-radius: 12px;
  margin-top: 10px;
  animation: slideUp 0.4s ease-out;
}

.payment-form h4 {
  font-size: 17px;
  margin-bottom: 12px;
  color: #003366;
}

.ussd-box {
  background-color: #ffffff;
  padding: 12px 16px;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: monospace;
  border: 1px dashed #003366;
  margin-top: 10px;
  margin-bottom: 10px;
}

.note {
  font-size: 14px;
  color: #666;
  text-align: center;
  margin-top: 10px;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Media Query: Mobile Responsive */
@media screen and (max-width: 600px) {
  .payment-container {
    margin: 20px 12px;
    padding: 20px 16px;
    border-radius: 14px;
  }

  .payment-title {
    font-size: 20px;
  }

  .btn-next,
  .btn-option,
  .btn-copy,
  .btn-pay {
    font-size: 15px;
    padding: 10px;
  }

  .payment-form h4 {
    font-size: 16px;
  }

  .ussd-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .ussd-box code {
    font-size: 15px;
    word-break: break-word;
  }
}


.slider-container {
  position: relative;
  width: 100%;
  padding-top: 66%; /* Adjust aspect ratio if needed (e.g., 66% = 3:2) */
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
}

.slide.active {
  opacity: 1;
}





.support-us-section {
  background-color: #8b1010;
  padding: 60px 20px;
  text-align: center;
  animation: fadeIn 1s ease;
  color: #ffffff;
}

.support-title {
  font-size: 32px;
  font-weight: bold;
  color: #ffffff; /* Yellow */
  margin-bottom: 10px;
}

.support-subtitle {
  font-size: 18px;
  color: #f0f0f0;
  max-width: 700px;
  margin: 0 auto 30px;
}

.support-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 30px;
}

.support-btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #ffc107;
  color: #000;
  text-decoration: none;
  border-radius: 10px;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.support-btn:hover {
  background-color: #ac1a2f;
  color: #ffffff;
}

.support-btn.secondary {
  background-color: #ac1a2f;
  color: #fff;
}

.support-btn.secondary:hover {
  background-color: #ffc107;
  color: #000;
}

.note {
  font-size: 15px;
  color: #cccccc;
  margin-top: 10px;
}

@media screen and (max-width: 600px) {
  .support-title {
    font-size: 26px;
  }

  .support-subtitle {
    font-size: 16px;
  }

  .support-btn {
    font-size: 15px;
    padding: 10px 18px;
  }
}





.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  border-radius: 50%;
  padding: 14px;
  z-index: 10000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.whatsapp-button:hover {
  transform: scale(1.1);
}

.whatsapp-button img {
  width: 28px;
  height: 28px;
}
