/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  background: #111;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 2rem;
  z-index: 1000;
}
.navbar .logo img { height: 50px; }
.nav-links { list-style: none; display: flex; gap: 1.5rem; }
.nav-links a { color: #fff; text-decoration: none; font-weight: 500; }
.nav-links a.active, .nav-links a:hover { color: #f39c12; font-weight: bold; }
.menu-toggle { display: none; background: none; border: none; font-size: 1.5rem; color: #fff; }

/* Reels Section */
.reels-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 equal columns */
  gap: 20px; /* spacing between videos */
  max-width: 1000px;
  margin: 0 auto;
}

.reels-container video {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}


/* Hero Banner */
.slides img {
  opacity: 0;
  transition: opacity 1s ease;
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 70vh;
  object-fit: cover;
}
.slides img.active {
  opacity: 1;
  position: relative;
}


/* Overlay text */
.slider .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}

/* Preview Gallery Section */
.home-gallery {
  padding: 3rem 2rem;
  background: #fafafa;
  text-align: center;
}

.home-gallery h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #111;
  font-weight: bold;
}

.home-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.home-gallery-grid img {
  width: 100%;
  aspect-ratio: 4/3; /* consistent shape */
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}


/* Services Carousel */
.services {
  padding: 3rem 2rem;
  background: url("image/services-bg.jpg") center/cover no-repeat; /* background image */
  text-align: center;
  position: relative;
}

/* Optional overlay for readability */
.services {
  position: relative;
  padding: 3rem 2rem;
  background: url("../image/services-bg.jpg") center/cover no-repeat;
  text-align: center;
}

.services::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4); /* overlay */
  z-index: 0;
}

.services h2,
.services-grid {
  position: relative;
  z-index: 1; /* keeps text/cards above overlay */
}

/* Slide mode */
.service-track.slide {
  display: flex;
  transition: transform 0.6s ease;
  width: 100%;
}
.service-track.slide .card {
  flex: 0 0 50%;
  box-sizing: border-box;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 20px;
  margin: 0 10px;
  text-align: center;
}
@media (max-width: 768px) {
  .service-track.slide .card { flex: 0 0 100%; }
}

/* Fade mode */
.service-track.fade { position: relative; }
.service-track.fade .card {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 1s ease;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 20px;
  text-align: center;
}
.service-track.fade .card.active { opacity: 1; z-index: 2; }

.service-track .card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 12px;
}
.service-track .card h3 { margin: 10px 0; font-size: 1.2em; color: #111; }
.service-track .card p { font-size: 0.95em; color: #555; margin-bottom: 12px; }
.service-track .card button {
  background: #f39c12;
  border: none;
  padding: 10px 16px;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
}
.service-track .card button:hover { background: #d35400; }

/* Service Dots */
#serviceDots { text-align: center; margin-top: 15px; }
#serviceDots .dot {
  display: inline-block;
  width: 12px; height: 12px;
  margin: 0 5px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}
#serviceDots .dot.active { background: #f39c12; }

/* Shop Section */
.shop-section {
  padding: 3rem 2rem;
  text-align: center;
  background: #f9f9f9;
}
.shop-section h2 { margin-bottom: 1rem; color: #111; }
.shop-details { max-width: 600px; margin: 0 auto; }
.shop-details img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.shop-details p { font-size: 1.1rem; margin: 0.3rem 0; }

/* Map Section */
.map {
  padding: 3rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, #fafafa, #f4f4f4);
  border-top: 1px solid #eee;
}
.map h2 { font-size: 1.8rem; margin-bottom: 1rem; color: #111; font-weight: bold; }
.map iframe, #map-container {
  width: 100%; height: 450px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.map iframe:hover, #map-container:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 24px rgba(0,0,0,0.25);
}
.map a {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background: #f39c12;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}
.map a:hover { background: #d35400; }

/* Reviews Carousel */
.reviews {
  padding: 40px 20px;
  text-align: center;
  background: #f4f4f4;
}
.review-carousel { overflow: hidden; max-width: 650px; margin: 0 auto; }
.review-track { display: flex; transition: transform 0.6s ease; }
.review { flex: 0 0 100%; text-align: center; padding: 20px; display: none; }
.review.active { display: block; }
.review p { font-style: italic; color: #444; }
.review h4 { margin-top: 10px; color: #111; }
#reviewDots { text-align: center; margin-top: 15px; }
#reviewDots .dot {
  display: inline-block; width: 12px; height: 12px;
  margin: 0 5px; background: #ccc; border-radius: 50%; cursor: pointer;
}
#reviewDots .dot.active { background: #f39c12; }

/* Gallery Section */
.gallery {
  padding: 3rem 2rem;
  background: #fafafa;
  text-align: center;
}
.gallery h2 { text-align: center; font-size: 1.8rem; margin-bottom: 1.5rem; color: #111; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.gallery-grid img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px
}

/* Contact Section */
.contact {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #fafafa, #f4f4f4);
  text-align: center;
}

.contact h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #111;
  font-weight: bold;
}

.contact p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 1rem;
}

.contact-form {
  max-width: 600px;
  margin: 2rem auto;
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  text-align: left;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 18px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #f39c12;
  box-shadow: 0 0 6px rgba(243,156,18,0.4);
  outline: none;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form button {
  background: #f39c12;
  border: none;
  padding: 14px 22px;
  border-radius: 8px;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.contact-form button:hover {
  background: #d35400;
  transform: translateY(-2px);
}

.category-gallery {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.category-gallery img {
  width: 100%;
  display: none;       /* hidden by default */
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: opacity 1s ease;
}

.category-gallery img.active {
  display: block;      /* only active image shows */
  opacity: 1;
}

/* Behind the Scenes Section */
.bts-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 equal columns */
  gap: 20px; /* spacing between videos */
  max-width: 1000px;
  margin: 0 auto;
}

.bts-container video {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .bts-container {
    grid-template-columns: 1fr; /* stack videos vertically */
  }
}

/* WhatsApp Floating Button */
.whatsapp {
  position: fixed;
  bottom: 20px;   /* distance from bottom */
  right: 20px;    /* distance from right */
  z-index: 1000;  /* keep it above other elements */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp img {
  width: 50px;    /* size of the icon */
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Hover effect */
.whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}
/* Push all content below navbar */
body {
  padding-top: 80px; /* equal to navbar height */
}

/* Ensure anchor links scroll correctly */
section {
  scroll-margin-top: 80px;
}

/* Services Section */
.services {
  padding: 3rem 2rem;
  background: #fafafa;
  text-align: center;
}

.services h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #111;
  font-weight: bold;
  text-align: center;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.service-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #111;
}

.service-card p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 15px;
}

.service-card button {
  background: #f39c12;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  color: #fff;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.service-card button:hover {
  background: #d35400;
}

/* Contact Section */

.contact-header {
  position: relative;
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  padding: 4rem 2rem;
}

.contact-header .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

.contact-header .header-content {
  position: relative;
  z-index: 1;
}

.contact-header h1 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.contact-header p {
  font-size: 1.1rem;
}

/* Contact Info */
.contact-info {
  padding: 3rem 2rem;
  background: #fafafa;
  text-align: center;
}

.contact-info h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #111;
  font-weight: bold;
}

.contact-info ul {
  list-style: none;
  padding: 0;
}

.contact-info li {
  font-size: 1rem;
  color: #555;
  margin: 0.5rem 0;
}

/* Contact Form */
.contact-form {
  padding: 3rem 2rem;
  background: #f9f9f9;
  text-align: center;
}

.contact-form h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #111;
  font-weight: bold;
}

.contact-form form {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  text-align: left;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px;
  margin-bottom: 18px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: #f39c12;
  box-shadow: 0 0 6px rgba(243,156,18,0.4);
  outline: none;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form button {
  background: #f39c12;
  border: none;
  padding: 14px 22px;
  border-radius: 8px;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.contact-form button:hover {
  background: #d35400;
  transform: translateY(-2px);
}
/* Hero Banner */
.academy-hero {
  position: relative;
  background: url("image/academy-bg.jpg") center/cover no-repeat;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.academy-hero .hero-overlay {
  background: rgba(0,0,0,0.5);
  padding: 2rem;
  border-radius: 12px;
}

.academy-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.academy-hero p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.cta-btn {
  padding: 0.8rem 1.5rem;
  background: #f39c12;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-btn:hover {
  background: #d35400;
}

/* Academy Sections */
.academy-section {
  padding: 3rem 2rem;
  text-align: center;
}

.academy-section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #111;
  font-weight: bold;
}

/* Program Cards */
.program-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.program-cards .card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-cards .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.program-cards .card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}

.program-cards .card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #111;
}

.program-cards .card p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 15px;
}

.program-cards .card button {
  background: #f39c12;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  color: #fff;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.program-cards .card button:hover {
  background: #d35400;
}

/* Testimonials Carousel */
.review-carousel {
  max-width: 650px;
  margin: 0 auto;
}

.review {
  display: none;
  padding: 20px;
}

.review.active {
  display: block;
}

.review p {
  font-style: italic;
  color: #444;
}

.review h4 {
  margin-top: 10px;
  color: #111;
}

#academyReviewDots {
  text-align: center;
  margin-top: 15px;
}

#academyReviewDots span {
  display: inline-block;
  width: 12px; height: 12px;
  margin: 0 5px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}

#academyReviewDots span.active {
  background: #f39c12;
}

/* WhatsApp Floating Button */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}
/* Ensure all gallery section titles are centered and consistent */
.gallery-section h2,
.gallery h2,
.bts-container h2,
.reels-container h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #111;
  font-weight: bold;
}

/* Offset for fixed navbar */
body {
  padding-top: 80px; /* equal to navbar height */
}

section {
  scroll-margin-top: 80px; /* fixes anchor scroll offset */
}
/* Hero Slider */
.slider {
  position: relative;
  max-height: 70vh;
  overflow: hidden;
}
.slides img {
  width: 100%;
  height: 70vh;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
  position: absolute;
  top: 0; left: 0;
}
.slides img.active {
  opacity: 1;
  position: relative;
}

/* Section Titles */
section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #111;
  font-weight: bold;
  position: relative;
}
section h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #f39c12;
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

/* Gallery/Preview Grid */
.home-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.home-gallery-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.home-gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
.book-btn {
  display: inline-block;
  background: #f39c12;
  color: #fff;
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.95rem;
  transition: background 0.3s ease;
}

.book-btn:hover {
  background: #d35400;
}
/* Target the Contact Us section */
#contact {
  background-image: url('images/contact-bg.jpg'); /* replace with your image path */
  background-size: cover;       /* ensures the image fills the section */
  background-position: center;  /* keeps it centered */
  background-repeat: no-repeat; /* prevents tiling */
  padding: 60px 20px;           /* spacing inside the section */
  color: #fff;                  /* text color for readability */
}

/* Optional: add overlay for better contrast */
#contact::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.4); /* semi-transparent overlay */
  z-index: 1;
}

#contact .content {
  position: relative;
  z-index: 2; /* keeps text above overlay */
}

.academy-hero {
  background-image: url('images/academy-hero.jpg'); /* replace with your image path */
  background-size: cover;       /* makes the image fill the section */
  background-position: center;  /* keeps the focal point centered */
  background-repeat: no-repeat; /* prevents tiling */
  height: 100vh;                /* full viewport height (optional) */
  position: relative;           /* needed for overlay layering */
}

/* Keep your overlay styling */
.academy-hero .hero-overlay {
  position: relative;
  z-index: 2; /* ensures text sits above background */
  color: #fff; /* text readable on image */
}
.academy-hero {
  background-image: url('image/academy.png'); /* path to your image */
  background-size: cover;       /* fills the section */
  background-position: center;  /* keeps focal point centered */
  background-repeat: no-repeat; /* no tiling */
  height: 100vh;                /* full screen height */
  position: relative;           /* allows overlay layering */
}

.academy-hero .hero-overlay {
  position: relative;
  z-index: 2;
  color: #fff; /* readable text */
}
.academy-hero {
  background-image: url('image/academy.png'); /* path to your image */
  background-size: cover;       /* fills the section */
  background-position: center;  /* keeps focal point centered */
  background-repeat: no-repeat; /* no tiling */
  height: 100vh;                /* full screen height */
  position: relative;           /* allows overlay layering */
}

.academy-hero .hero-overlay {
  position: relative;
  z-index: 2;
  color: #fff; /* readable text */
}
.academy-hero {
  background-image: url('image/academy.png'); /* path to your image */
  background-size: cover;       /* fills the section */
  background-position: center;  /* keeps focal point centered */
  background-repeat: no-repeat; /* no tiling */
  height: 100vh;                /* full screen height */
  position: relative;           /* allows overlay layering */
}

.academy-hero .hero-overlay {
  position: relative;
  z-index: 2;
  color: #fff; /* readable text */
}
/* Foundation Hero */
.foundation-hero {
  position: relative;
  background: url("image/foundation-hero.jpg") center/cover no-repeat;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.foundation-hero .hero-overlay {
  background: rgba(0,0,0,0.5);
  padding: 2rem;
  border-radius: 12px;
}

.foundation-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.foundation-hero p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.foundation-hero .cta-btn {
  padding: 0.8rem 1.5rem;
  background: #f39c12;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.foundation-hero .cta-btn:hover {
  background: #d35400;
}

/* Foundation Sections */
.section {
  padding: 3rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #111;
  font-weight: bold;
  position: relative;
}

.section h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #f39c12;
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

/* Governance Board Preview */
.board {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.member {
  flex: 1 1 250px;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.member:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Transparency Metrics */
.metrics {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.metric {
  flex: 1 1 250px;
  background: #eef;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
}

.metric h3 {
  font-size: 2rem;
  color: #007bff;
  margin-bottom: 10px;
}

/* Student Journey Videos */
.videos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}

.videos iframe {
  width: 100%;
  height: 220px;
  border-radius: 8px;
  border: none;
}

/* Foundation Footer */
footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 25px;
}

footer a img {
  margin-top: 10px;
  height: 40px;
}
/* Foundation Hero with LocsTrend logo background */
.foundation-hero {
  position: relative;
  background: url("image/logo.png") center/contain no-repeat; /* logo as background */
  background-color: #002147; /* fallback corporate blue */
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.foundation-hero .hero-overlay {
  background: rgba(0,0,0,0.6);
  padding: 2rem;
  border-radius: 12px;
}

/* WhatsApp Floating Button - bottom left */
.whatsapp {
  position: fixed;
  bottom: 20px;   /* distance from bottom */
  left: 20px;     /* distance from left */
  right: auto;    /* override any previous right positioning */
  z-index: 1000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}
/* Moving banner effect */
.scroll-banner {
  background: #0a2a66; /* corporate blue */
  color: #fff;
  padding: 0.5rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.scroll-banner p {
  display: inline-block;
  padding-left: 100%;
  animation: scroll-left 15s linear infinite;
  font-weight: 600;
  letter-spacing: 2px;
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}
/* Top Banner */
.top-banner {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 8px;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background: #fff;
  border-bottom: 1px solid #ddd;
}
.navbar .logo {
  font-size: 22px;
  font-weight: bold;
  color: #000;
  text-decoration: none;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}
.nav-links li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}
.nav-links li a.active {
  color: #007bff;
  border-bottom: 2px solid #007bff;
}

/* Hero */
.hero {
  background: url('image/Hero back.jpeg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 120px 20px;
}
.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}
.hero p {
  font-size: 18px;
  margin-bottom: 30px;
}
.cta-btn {
  background: #007bff;
  color: #fff;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}
.cta-btn:hover { background: #0056b3; }

/* Logo Carousel */
.logo-carousel {
  overflow: hidden;
  background: #f9f9f9;
  padding: 20px 0;
}
.carousel-track {
  display: flex;
  animation: scroll 20s linear infinite;
}
.carousel-track img {
  height: 60px;
  margin: 0 40px;
}
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Footer */
footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 20px;
}
.social-icons a {
  color: #fff;
  margin: 0 10px;
  font-size: 18px;
  transition: color 0.3s ease;
}
.social-icons a:hover { color: #007bff; }
/* Navbar base */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;   /* white background */
  padding: 10px 20px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
}

.nav-links li a {
  color: #111;        /* dark text for contrast */
  text-decoration: none;
  font-weight: bold;
}

/* Hamburger icon */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 20px;
  cursor: pointer;
}

.menu-toggle .bar {
  height: 3px;
  width: 100%;
  background-color: #111; /* dark bars on white navbar */
  transition: all 0.3s ease;
}

/* Mobile styles */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #fff;   /* dropdown also white */
    position: absolute;
    top: 60px;
    right: 20px;
    padding: 10px;
    border: 1px solid #ddd;
  }
  .nav-links.active {
    display: flex;
  }
  .nav-links li a {
    color: #111;        /* dark text inside dropdown */
    padding: 8px 0;
  }
  .menu-toggle {
    display: flex;
  }

  /* Animate bars into X */
  .menu-toggle.open .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .menu-toggle.open .bar:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.open .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}


/* Mobile styles */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 60px;
    right: 20px;
    padding: 10px;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  }

  .nav-links.active {
    display: flex;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    background: transparent;
    padding: 0;
  }

  .dropdown-menu a {
    padding: 8px 0;
  }
}
/* ===== DROPDOWN ===== */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);

  background: #fff;
  list-style: none;
  padding: 10px;

  min-width: 180px;

  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
  border-radius: 8px;

  z-index: 999;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

/* ===== MOBILE OVERLAY ===== */
.mobile-topbar {
  display: none;
}

/* MOBILE ONLY */
@media (max-width: 768px) {

  /* Show overlay */
  .mobile-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ddd;
    padding: 12px 20px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 2000;
  }

  .mobile-topbar i {
    font-size: 22px;
    color: #555;
  }

  /* Hide normal navbar */
  .navbar {
    display: none;
  }

  /* Mobile menu */
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 60px;
    right: 0;
    background: #fff;
    width: 220px;
    padding: 20px;
    box-shadow: -2px 0 10px rgba(0,0,0,0.2);
  }

  .nav-links.active {
    display: flex;
  }

  /* Mobile dropdown */
  .dropdown-menu {
    position: static;
    display: none;
    box-shadow: none;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }

  /* Prevent content hiding */
  body {
    padding-top: 60px;
  }
}
/* ===== SIDEBAR NAV SYSTEM ===== */
.nav-links {
  transition: transform 0.4s ease;
}

/* Overlay */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 998;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Hamburger animation */
.menu-toggle .bar {
  transition: 0.3s;
}

.menu-toggle.open .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.open .bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* MOBILE ONLY */
@media (max-width: 768px) {

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 260px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    padding: 80px 20px;
    transform: translateX(100%);
    z-index: 999;
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
  }

  .menu-toggle .bar {
    width: 25px;
    height: 3px;
    background: #111;
    margin: 4px 0;
  }

  .dropdown-menu {
    position: static;
    display: none;
    box-shadow: none;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }
}
/* ===== BOOK NOW BUTTON WRAPPER ===== */
.book-btn-wrapper {
  position: relative;
  display: inline-block;
}

/* BACKGROUND LOGO WATERMARK */
.book-btn-wrapper::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  height: 120px;
  transform: translate(-50%, -50%);
  background: url("image/logo.png") center/contain no-repeat;
  opacity: 0.15;
  z-index: 0;
  pointer-events: none;
}

/* KEEP BUTTON ABOVE LOGO */
.book-btn-wrapper .cta-btn {
  position: relative;
  z-index: 1;
}
.logo-carousel {
  overflow: hidden;
  width: 100%;
  padding: 20px 0;
  background: #fff;
  position: relative;
}

/* Track that moves */
.carousel-track {
  display: flex;
  align-items: center;
  gap: 60px;
  width: max-content;
  animation: slideLogos 30s linear infinite;
}

/* Logos */
.carousel-track img {
  height: 65px;
  object-fit: contain;
  opacity: 0.85;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.1));
}

.carousel-track img:hover {
  transform: scale(1.08);
  opacity: 1;
}
/* ANIMATION: right → left */
@keyframes slideLogos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.menu-item {
  position: relative;
}

.mega-menu {
  position: absolute;
  top: 110%;

  left: 50%;
  transform: translateX(-50%) translateY(10px) scale(0.98);

  width: 750px;
  max-width: 95vw;

  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);

  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 20px;

  opacity: 0;
  pointer-events: none;

  transition: 
    opacity 0.25s ease,
    transform 0.25s ease;

  z-index: 9999;
}

.menu-item:hover .mega-menu {
  opacity: 1;
  transform: translateX(-50%) translateY(0) scale(1);
  pointer-events: auto;
}
/* Navbar Layout */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between; /* logo left, menu right by default */
  padding: 0 20px;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Center the menu block */
.navbar .menu {
  flex: 1;                        /* take available space */
  display: flex;
  justify-content: center;        /* push menu items to center */
  gap: 2rem;                      /* spacing between links */
}

/* Logo stays left */
.navbar .logo {
  flex: 0;
}

/* Optional: keep Contact aligned right if needed */
.navbar .menu-right {
  margin-left: auto;
}
.header {
  display: flex;
  align-items: center;
  position: relative;
}

.nav-menu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
/* Sticky Navbar */
.navbar {
  position: fixed;       /* stays pinned */
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  z-index: 1000;
}

/* Push content below navbar */
body {
  margin: 0;
  padding-top: 70px; /* equal to navbar height */
}

/* Sliding Banner */
.scroll-banner {
  background: #0a2a66; /* corporate blue */
  color: #fff;
  padding: 8px 0;
  overflow: hidden;
  white-space: nowrap;
  position: fixed;
  top: 70px;           /* sits just below navbar */
  width: 100%;
  z-index: 999;
}

.scroll-banner p {
  display: inline-block;
  padding-left: 100%;
  animation: scroll-left 15s linear infinite;
  font-weight: 600;
  letter-spacing: 2px;
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* Offset for banner */
body {
  padding-top: 110px; /* navbar + banner height */
}
/* =========================
   STICKY NAVBAR
========================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 0 20px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);

  z-index: 1000;
}

/* push page content below navbar */
body {
  margin: 0;
  padding-top: 70px;
}

/* =========================
   NAV LINKS (DESKTOP)
========================= */
.nav-links {
  display: flex;
  gap: 25px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #111;
  font-weight: 600;
}
/* =========================
   NAVBAR
========================= */

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:70px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 20px;
    background:#fff;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
    z-index:9999;
}

/* =========================
   HAMBURGER
========================= */

.menu-toggle{
    display:none;
    position:relative;
    width:42px;
    height:36px;
    background:transparent;
    border:none;
    cursor:pointer;
    padding:0;
    margin:0;
    z-index:10000;
    align-items:center;
    justify-content:center;
}

.menu-toggle .bar{
    display:block;
    width:32px;
    height:4px;
    margin:5px auto;
    background:#000 !important;
    border-radius:50px;
    transition:all .3s ease;
}

/* Animation */

.menu-toggle.open .bar:nth-child(1){
    transform:translateY(9px) rotate(45deg);
}

.menu-toggle.open .bar:nth-child(2){
    opacity:0;
}

.menu-toggle.open .bar:nth-child(3){
    transform:translateY(-9px) rotate(-45deg);
}

/* =========================
   NAV LINKS
========================= */

.nav-links{
    display:flex;
    align-items:center;
    gap:25px;
    list-style:none;
    margin:0;
    padding:0;
}

.nav-links a{
    color:#111;
    text-decoration:none;
    font-weight:600;
}

/* =========================
   MOBILE
========================= */

@media (max-width:768px){

    .menu-toggle{
        display:flex;
    }

    .nav-links{
        position:fixed;
        top:70px;
        right:-100%;
        width:280px;
        max-width:85%;
        height:calc(100vh - 70px);
        background:#fff;
        flex-direction:column;
        align-items:flex-start;
        padding:25px;
        gap:0;
        transition:right .35s ease;
        box-shadow:-5px 0 20px rgba(0,0,0,.15);
        z-index:9998;
    }

    .nav-links.active{
        right:0;
    }

    .nav-links li{
        width:100%;
    }

    .nav-links a{
        display:block;
        width:100%;
        padding:15px 0;
        border-bottom:1px solid #eee;
    }

}
/* ==========================
   SERVICES
========================== */

.services{
    padding:110px 5% 70px;
}

.services h2{
    text-align:center;
    font-size:2.5rem;
    margin-bottom:40px;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.service-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
    display:flex;
    flex-direction:column;
}

.service-card:hover{
    transform:translateY(-8px);
}

.service-card img{
    width:100%;
    height:280px;
    object-fit:cover;
}

.service-card h3{
    padding:20px 20px 10px;
    font-size:1.4rem;
}

.service-card p{
    padding:0 20px;
    line-height:1.7;
    color:#555;
    flex:1;
}

.book-btn,
.service-card button{
    margin:20px;
    display:block;
    text-align:center;
    text-decoration:none;
    background:#000;
    color:#fff;
    padding:14px;
    border:none;
    border-radius:8px;
    cursor:pointer;
    font-weight:600;
    transition:.3s;
}

.book-btn:hover,
.service-card button:hover{
    background:#d4af37;
    color:#000;
}

/* ===== Tablet ===== */

@media (max-width:992px){

.services-grid{
    grid-template-columns:repeat(2,1fr);
}

}

/* ===== Mobile ===== */

@media (max-width:768px){

.services{
    padding:90px 15px 40px;
}

.services h2{
    font-size:2rem;
}

.services-grid{
    grid-template-columns:1fr;
    gap:20px;
}

.service-card img{
    height:240px;
}

.service-card h3{
    font-size:1.2rem;
}

.service-card p{
    font-size:.95rem;
}

.book-btn,
.service-card button{
    width:calc(100% - 40px);
}

}

/* ===== Small Phones ===== */

@media (max-width:480px){

.service-card img{
    height:210px;
}

.services h2{
    font-size:1.7rem;
}

.service-card{
    border-radius:12px;
}

}
.service-video{
    width:100%;
    height:280px;
    object-fit:cover;
    display:block;
    border-radius:10px 10px 0 0;
}

@media (max-width:768px){
    .service-video{
        height:240px;
    }
}

@media (max-width:480px){
    .service-video{
        height:210px;
    }
}
.service-video{
    width:100%;
    height:280px;
    object-fit:cover;
    display:block;
    border-radius:10px 10px 0 0;
}

@media (max-width:768px){
    .service-video{
        height:240px;
    }
}

@media (max-width:480px){
    .service-video{
        height:210px;
    }
}
/* =====================================
   PROGRAMS / COURSES
===================================== */

#programContainer{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
    padding:50px 5%;
}

.card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s ease;
}

.card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

/* ===========================
   VIDEO
=========================== */

.course-video{
    width:100%;
    height:300px;
    object-fit:cover;
    display:block;
    background:#000;
    border-bottom:1px solid #eee;
}

/* ===========================
   TEXT
=========================== */

.card h3{
    padding:18px 20px 8px;
    font-size:1.35rem;
    color:#111;
    margin:0;
    font-weight:700;
}

.card p{
    padding:0 20px 25px;
    color:#666;
    line-height:1.7;
    font-size:.96rem;
    margin:0;
}

/* =====================================
   TABLETS
===================================== */

@media (max-width:992px){

#programContainer{
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.course-video{
    height:260px;
}

}

/* =====================================
   MOBILE
===================================== */

@media (max-width:768px){

#programContainer{
    grid-template-columns:1fr;
    padding:30px 15px;
    gap:20px;
}

.card{
    border-radius:15px;
}

.course-video{
    height:230px;
}

.card h3{
    font-size:1.2rem;
}

.card p{
    font-size:.92rem;
}

}

/* =====================================
   SMALL PHONES
===================================== */

@media (max-width:480px){

#programContainer{
    padding:20px 12px;
}

.course-video{
    height:200px;
}

.card h3{
    font-size:1.1rem;
}

.card p{
    font-size:.88rem;
}

}

/* =====================================
   VIDEO CONTROLS
===================================== */

.course-video::-webkit-media-controls-panel{
    background:rgba(0,0,0,.55);
}

.course-video::-webkit-media-controls-play-button,
.course-video::-webkit-media-controls-volume-slider,
.course-video::-webkit-media-controls-mute-button{
    filter:brightness(1.2);
}
.videos{
    max-width:1200px;
    margin:60px auto;
    padding:0 20px;
}

.videos h2{
    text-align:center;
    font-size:2rem;
    margin-bottom:30px;
}

.student-video{
    width:100%;
    max-width:700px;
    display:block;
    margin:25px auto;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
    object-fit:cover;
}

@media (max-width:768px){

.student-video{
    max-width:100%;
}

}
/* ================= GALLERY PAGE ================= */

.gallery-hero{
    height:320px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:20px;
    background:linear-gradient(135deg,#111,#444);
    color:#fff;
}

.gallery-hero h1{
    font-size:3rem;
    margin-bottom:10px;
}

.gallery-hero p{
    font-size:1.1rem;
    max-width:650px;
}

.gallery-section{
    padding:70px 8%;
}

.gallery-section h2{
    text-align:center;
    font-size:2rem;
    margin-bottom:35px;
    color:#111;
}

/* ================= REELS ================= */

.reels-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:25px;
}

.reels-container video{
    width:100%;
    height:520px;
    object-fit:cover;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
}

/* ================= GALLERY ================= */

.category-gallery{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:20px;
}

.category-gallery img{
    width:100%;
    height:350px;
    object-fit:cover;
    border-radius:15px;
    transition:.4s;
    box-shadow:0 8px 20px rgba(0,0,0,.12);
}

.category-gallery img:hover{
    transform:scale(1.04);
}

/* ================= BTS ================= */

.bts-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:25px;
}

.bts-container video{
    width:100%;
    height:520px;
    object-fit:cover;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
}

/* ================= WHATSAPP ================= */

.whatsapp{
    position:fixed;
    right:20px;
    bottom:20px;
    z-index:999;
}

.whatsapp img{
    width:60px;
}

/* ================= MOBILE ================= */

@media(max-width:992px){

.gallery-section{
    padding:60px 25px;
}

.gallery-hero h1{
    font-size:2.5rem;
}

.reels-container,
.category-gallery,
.bts-container{
    grid-template-columns:repeat(2,1fr);
}

.reels-container video,
.bts-container video{
    height:420px;
}

.category-gallery img{
    height:280px;
}

}

@media(max-width:768px){

/* Navbar */

.navbar{
    padding:0 15px;
}

.logo img{
    height:42px;
}

.menu-toggle{
    display:block;
    font-size:30px;
    border:none;
    background:none;
    cursor:pointer;
    color:#000;
}

.nav-links{
    position:fixed;
    top:70px;
    right:-100%;
    width:260px;
    height:calc(100vh - 70px);
    background:#fff;
    flex-direction:column;
    align-items:flex-start;
    padding:25px;
    gap:15px;
    transition:.35s;
    box-shadow:-5px 0 20px rgba(0,0,0,.15);
}

.nav-links.active{
    right:0;
}

.nav-links li{
    width:100%;
}

.nav-links a{
    display:block;
    width:100%;
    padding:12px 0;
    border-bottom:1px solid #eee;
}

/* Hero */

.gallery-hero{
    height:250px;
}

.gallery-hero h1{
    font-size:2rem;
}

.gallery-hero p{
    font-size:1rem;
}

/* Videos */

.reels-container,
.category-gallery,
.bts-container{
    grid-template-columns:1fr;
}

.reels-container video,
.bts-container video{
    height:380px;
}

.category-gallery img{
    height:300px;
}

.gallery-section{
    padding:45px 18px;
}

.gallery-section h2{
    font-size:1.7rem;
}

.whatsapp img{
    width:55px;
}

}

@media(max-width:480px){

.gallery-hero{
    height:220px;
}

.gallery-hero h1{
    font-size:1.7rem;
}

.gallery-hero p{
    font-size:.95rem;
}

.reels-container video,
.bts-container video{
    height:300px;
}

.category-gallery img{
    height:240px;
}

.gallery-section{
    padding:35px 15px;
}

.gallery-section h2{
    font-size:1.5rem;
}

.whatsapp img{
    width:50px;
}

}
/* ================= NAVBAR ================= */

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:70px;
    background:#fff;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 5%;
    box-sizing:border-box;
    z-index:9999;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
}

.logo img{
    height:55px;
}

.nav-links{
    display:flex;
    list-style:none;
    gap:30px;
    margin:0;
    padding:0;
}

.nav-links li{
    list-style:none;
}

.nav-links a{
    text-decoration:none;
    color:#111;
    font-weight:600;
    transition:.3s;
}

.nav-links a:hover{
    color:#c58b00;
}

/* Hamburger */

.menu-toggle{
    display:none;
    font-size:32px;
    cursor:pointer;
    background:none;
    border:none;
    color:#111;
}
/* ================= MOBILE ================= */

@media (max-width:768px){

.menu-toggle{
    display:block;
    z-index:10001;
}

.nav-links{
    position:fixed;
    top:70px;
    right:-100%;
    width:260px;
    height:calc(100vh - 70px);
    background:#fff;

    display:flex;
    flex-direction:column;

    padding:30px 20px;
    gap:25px;

    transition:.4s ease;

    box-shadow:-5px 0 20px rgba(0,0,0,.15);
}

.nav-links.active{
    right:0;
}

.nav-links a{
    display:block;
    width:100%;
    font-size:18px;
    padding:10px 0;
    border-bottom:1px solid #eee;
}

body.menu-open{
    overflow:hidden;
}

}
/* ================= CONTACT MOBILE ================= */

@media screen and (max-width:768px){

    /* Navbar */
    .navbar{
        padding:0 15px;
    }

    .logo img{
        height:45px;
    }

    .menu-toggle{
        display:flex;
        align-items:center;
        justify-content:center;
        font-size:30px;
        border:none;
        background:none;
        cursor:pointer;
    }

    .navbar .nav-links{
        position:fixed;
        top:70px;
        right:-100%;
        left:auto;
        transform:none;

        width:270px;
        height:calc(100vh - 70px);

        display:flex;
        flex-direction:column;

        background:#fff;

        padding:20px;

        transition:.35s;

        box-shadow:-5px 0 20px rgba(0,0,0,.15);

        z-index:999;
    }

    .navbar .nav-links.active{
        right:0;
    }

    .nav-links li{
        width:100%;
        list-style:none;
    }

    .nav-links li a{
        display:block;
        padding:15px 0;
        border-bottom:1px solid #eee;
    }

    /* Header */

    .contact-header{
        height:260px;
        background-position:center;
        background-size:cover;
    }

    .header-content{
        padding:0 20px;
        text-align:center;
    }

    .header-content h1{
        font-size:30px;
    }

    .header-content p{
        font-size:16px;
    }

    /* Contact Info */

    .contact-info{
        padding:40px 20px;
    }

    .contact-info ul{
        padding:0;
    }

    .contact-info li{
        font-size:15px;
        margin-bottom:12px;
        line-height:1.6;
        word-break:break-word;
    }

    /* Map */

    .map{
        padding:40px 20px;
    }

    .map iframe{
        height:260px;
        border-radius:10px;
    }

    /* Form */

    .contact-form{
        padding:40px 20px;
    }

    .contact-form form{
        width:100%;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea{
        width:100%;
        box-sizing:border-box;
        font-size:16px;
        margin-bottom:15px;
    }

    .contact-form button{
        width:100%;
        padding:15px;
    }

    /* WhatsApp */

    .whatsapp img{
        width:55px;
    }

}

@media screen and (max-width:480px){

    .contact-header{
        height:220px;
    }

    .header-content h1{
        font-size:24px;
    }

    .header-content p{
        font-size:14px;
    }

    .contact-info,
    .map,
    .contact-form{
        padding:30px 15px;
    }

}
/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width:768px){

/* Donation section */
.donation-section{
    padding:20px;
}

/* Navbar */
.navbar{
    padding:15px 20px;

    flex-direction:row; /* FIXED */
    justify-content:space-between;
    align-items:center;
}

.logo img{
    width:140px;
}

.nav-links{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:15px;
    margin-top:15px;
    padding:0;
}

.nav-links li{
    list-style:none;
}

.nav-links a{
    font-size:15px;
}

/* Hero */

.academy-hero{
    height:300px;
}

.hero-overlay{
    padding:20px;
    text-align:center;
}

.hero-overlay h1{
    font-size:32px;
}

.hero-overlay p{
    font-size:16px;
}

/* Donation cards */

.tiers{
    flex-direction:column;
    gap:20px;
}

.tier{
    width:100%;
}

.tier h3{
    font-size:22px;
}

.tier button{
    width:100%;
}

/* Impact */

.impact h2{
    text-align:center;
}

.impact-metrics{
    flex-direction:column;
}

.metric{
    width:100%;
}

/* Videos */

.videos{
    grid-template-columns:1fr;
}

.student-video{
    width:100%;
    height:auto;
}

/* Footer */

footer{
    text-align:center;
    padding:25px 15px;
}

.whatsapp img{
    width:50px;
}
}