/* Prevent overflow and horizontal scrolling */
body,
html {
  overflow-x: hidden;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  scroll-behavior: smooth;
  font-family: "Poppins", sans-serif;
  max-width: 100%;
}

section {
  scroll-margin-top: 70px;
  /* Adjustment for fixed header */
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Fix button positioning issues on small screens */
@media (max-width: 768px) {
  .enroll-btn {
    display: block;
    width: 100%;
    max-width: 250px;
    margin: 1rem auto;
    text-align: center;
  }
}

.navbar-brand h2 {
  margin-left: 0;
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  color: #1f2937;
}

.navbar-brand span {
  margin-left: 0;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #3d434b;
}

.navbar-nav .nav-link {
  color: #374151;
  /* Dark gray */
  font-size: 16px;
  font-weight: 500;
  padding: 0.5rem 0;
  margin: 0 0.5rem;
  position: relative;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #ff8da1;
  /* Pinkish hover */
}

.navbar-nav .nav-link.active {
  color: #ff8da1 !important;
  /* Pink text for active */
  font-weight: 600;
}

/* Offcanvas Sidebar Styles (Mobile) */
.offcanvas {
  width: 75% !important;
  /* Sidebar width on mobile */
  max-width: 300px;
}

.offcanvas-body .nav-link {
  font-size: 1.1rem;
  /* Larger font for mobile */
  padding: 10px 15px;
  /* Add horizontal padding for pill shape */
  text-align: left;
  /* Left align text */
  width: 100%;
  border-radius: 8px;
  /* Rounded corners */
  margin-bottom: 5px;
  /* Spacing between items */
}

.offcanvas-body .nav-link.active {
  background: linear-gradient(90deg, #ffe0e9 0%, #fff9c4 100%);
  /* Pink to Yellow gradient */
  color: #1d9449 !important;
  /* Keep pink text */
  font-weight: 700;
}

.offcanvas-body .navbar-nav {
  align-items: flex-start !important;
  /* Force left alignment */
  width: 100%;
}

/* Desktop Navigation Reset (Overrides Offcanvas) */
@media (min-width: 992px) {
  .offcanvas {
    height: auto !important;
    width: auto !important;
    max-width: none !important;
    position: static !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: none !important;
    transform: none !important;
    flex-grow: 1;
    /* Act like navbar-collapse */
    display: flex;
    justify-content: flex-end;
  }

  .offcanvas-header {
    display: none !important;
  }

  .offcanvas-body {
    display: flex;
    flex-grow: 1;
    padding: 0 !important;
    overflow-y: visible !important;
    justify-content: flex-end;
    /* Explicitly aligning content to the right */
  }

  /* Reset Mobile Active Styles on Desktop */
  .offcanvas-body .nav-link.active {
    background: none !important;
    color: #374151 !important;
    /* Reset to default dark grey or let hover handle it */
    font-weight: 500;
  }

  .offcanvas-body .nav-link {
    padding: 0.5rem 0;
    /* Reset padding to desktop standard */
    margin: 0 0.5rem;
    width: auto;
    text-align: center;
  }

  .navbar-nav .nav-link.active {
    color: #ff8da1 !important;
    /* Ensure pink text persists if desired, or reset */
    font-weight: 600;
  }

  /* Reset Navbar Nav for Desktop */
  .offcanvas-body .navbar-nav {
    width: auto !important;
    align-items: center !important;
  }
}

/* Underline for the active link (Desktop Only) */
@media (min-width: 992px) {
  .navbar-nav .nav-link.active::after {
    content: "";
    display: block;
    width: 60%;
    height: 3px;
    background-color: #ff8da1;
    /* Pink underline */
    margin: 3px auto 0;
    border-radius: 2px;
  }
}

.hero {
  position: relative;
  background: url("hero-final.jpeg") center center/cover no-repeat fixed;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: white;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  /* dark overlay */
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  padding: 80px 1rem 1rem;
  /* Added top padding to clear fixed header */
}

.hero h1 {
  font-size: 60px;
  font-weight: 800;
  line-height: 1.1;
}

.hero h1 span {
  color: #f2911f;
}

.hero h2 {
  font-size: 24px;
  font-weight: 600;
  color: #f2911f;
  margin-top: 1rem;
}

.hero p {
  margin-top: 1.2rem;
  font-size: 18px;
  line-height: 1.7;
}

.btn-admission {
  background: linear-gradient(90deg, #bae0bb, #8be28d);
  color: #000;
  font-size: 18px;
  font-weight: 600;
  border-radius: 50px;
  padding: 16px 32px;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: all 0.3s ease;
}

.btn-admission:hover {
  background-color: #8be28d;
  color: #000;
}

.floating-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(90deg, rgb(237, 69, 144), yellow);
  color: #000;
  border-radius: 50px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  transition: all 0.3s ease;
  z-index: 5;
}

.floating-btn:hover {
  background-color: #f2911f;
  color: #000;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
}

.about-section {
  padding: 80px 0;
}

.about-section h2 {
  font-weight: 800;
  text-align: center;
  margin: 0px 0px 16px;
  font-size: 36px;
}

.about-section p.lead {
  text-align: center;
  color: #1d9449;
  font-size: 20px;
  margin-bottom: 50px;
}

.founder-card {
  background: linear-gradient(135deg, #e3f9f1, #d9ebff);
  border-radius: 20px;
  padding: 55px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.founder-card h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1f2937;
}

.founder-card p {
  font-size: 16px;
  color: #374151;
  line-height: 1.7;
}

@media (max-width: 992px) {
  .founder-card {
    margin-bottom: 30px;
  }
}

/* Programs Section Background */
.programs-section {
  background: linear-gradient(180deg, #fffbd1 0%, #eef8e6 100%);
  /* Pale Mint to Soft Green */
  padding: 80px 0;
  text-align: center;
}

.programs-section h2 {
  font-weight: 800;
  color: #111;
  margin-bottom: 20px;
  font-size: 36px;
}

.programs-section p.lead {
  color: #1d9449;
  margin-bottom: 60px;
  font-weight: 500;
}

/* Marquee Container */
.programs-marquee-container {
  overflow: hidden;
  width: 100%;
  padding: 50px 0 40px;
  /* Top padding for icon overlap, bottom for shadow */
}

/* Marquee Track (The Moving Part) */
.programs-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: scrollMarquee 25s linear infinite;
}

/* Pause on Hover */
.programs-track:hover {
  animation-play-state: paused;
}

@keyframes scrollMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ===== Program Card ===== */
.program-card {
  background: #fff;
  border-radius: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 60px 25px 35px;
  text-align: center;
  margin: 0;
  /* Margin handled by gap */
  width: 280px;
  /* Slightly wider */
  min-width: 280px;
  /* Ensure it doesn't shrink */
  scroll-snap-align: center;
  flex-shrink: 0;
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  overflow: visible;
}

/* Hover background transition */
.program-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #1d9449;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
  border-radius: 25px;
}

.program-card:hover::before {
  opacity: 1;
}

.program-card * {
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

/* Hover text color */
.program-card:hover h5,
.program-card:hover small,
.program-card:hover ul li {
  color: #fff;
}

/* Facility Section Background */
.facilities-section {
  background: linear-gradient(180deg, #fff4cc 0%, #fde6d8 100%);

  /* Pale Cream to Soft Peach */
  padding: 80px 0;
}

.facilities-section h2 {
  font-weight: 800;
  color: #111;
  margin-bottom: 20px;
  font-size: 36px;
}

/* Key Learning Section Background */
.key-learning-section {
  background: linear-gradient(180deg, #fde8e8 0%, #fff3c4 100%);
  padding: 80px 0;
}

.key-learning-section h2 {
  font-weight: 800;
  color: #111;
  margin-bottom: 20px;
  font-size: 36px;
}

/* Gallery Section Background */
.gallery-section {
  background: linear-gradient(135deg, #e3f9f1, #d9ebff);
  padding: 80px 0;
  text-align: center;
}

/* Testimonial Section Background */
.testimonial-section {
  background-color: white;
  /* Pale Pink */
  padding: 80px 0;
}

.testimonial-section h2 {
  font-weight: 800;
  color: #111;
  margin-bottom: 20px;
  font-size: 36px;
}

/* FAQ Section Background */
.faq-section {
  background-color: #f0f9ff;
  /* Pale Blue */
  padding: 80px 0;
}

.faq-section h2 {
  font-weight: 800;
  color: #111;
  margin-bottom: 20px;
  font-size: 36px;
}

/* Contact Section Background */
.contact-info-section {
  background-color: #ffffff;
  /* White */
  padding: 80px 0;
}

.program-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -35px;
  /* makes it float above the card */
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 2;
  transition: all 0.3s ease;
}

/* Specific overrides for Key Learning Section Grid */
.key-learning-section .program-card {
  width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 40px 20px 30px !important;
  cursor: default;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #ffffff !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05) !important;
}

.key-learning-section .program-icon {
  position: static !important;
  transform: none;
  margin: 0 auto 20px !important;
  display: flex !important;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.key-learning-section .program-card h5 {
  margin-top: 0 !important;
  font-size: 20px;
}

.key-learning-section .program-card:hover {
  background-color: #1d9449 !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2) !important;
}

.key-learning-section .program-card:hover .program-icon {
  transform: scale(1.2) !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

.key-learning-section .program-card:hover::before {
  opacity: 0 !important;
}

.key-learning-section .program-card:hover h5,
.key-learning-section .program-card:hover p {
  color: #ffffff !important;
}

.key-learning-section .program-card p {
  font-size: 15px;
  color: #6b7280;
}

.orange {
  background: linear-gradient(90deg, yellow, rgb(237, 69, 144));
}

.pink {
  background: linear-gradient(90deg, rgb(237, 69, 144), yellow);
}

.green {
  background: linear-gradient(90deg, #81c784, #a5d6a7);
}

.blue {
  background: linear-gradient(90deg, #81c784, #a5d6a7);
}

.program-card:hover .program-icon {
  transform: translateX(-50%) scale(1.1);
}

.program-card h5 {
  font-weight: 700;
  margin-top: 10px;
  color: #111;
}

.program-card small {
  color: #555;
  display: block;
  margin-bottom: 10px;
}

.program-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.program-card ul li {
  font-size: 0.9rem;
  color: #333;
  margin-bottom: 6px;
}

/* Fix Bootstrap default spacing on mobile */
@media (max-width: 576px) {
  .programs-section .container {
    padding: 0 15px !important;
  }

  .programs-section .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .programs-section .col-md-6,
  .programs-section .col-lg-3 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* ✅ Center all program cards */
  .program-card {
    margin: 0 auto 30px auto;
    max-width: 300px;
  }

  .key-learning-section .program-card {
    max-width: none !important;
  }
}

/* List Styling */
.program-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.program-card ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  /* Centers text & bullet together */
  color: #333;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.program-card ul li::before {
  content: "•";
  color: gray;
  font-size: 1.2rem;
  line-height: 1;
}

/* --- Contact Section --- */
/* CONTACT SECTION */
/* Background is handled in .contact-info-section above */

/* Card styling */
.info-card {
  background: linear-gradient(135deg, #fafdff, #e8f3ff);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-3px);
}

/* Icon circle styling */
.info-icon {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  border-radius: 50%;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

/* Specific colors for each icon */
.phone-icon {
  background-color: #9cd67d;
  /* soft green */
}

.email-icon {
  background-color: #f17b91;
  /* pink */
}

.hours-icon {
  background-color: #ffd86b;
  /* yellow */
}

.bg-success {
  background-color: #7ac97c !important;
  /* address green */
}

/* Social icons */
.social-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.social-link.facebook {
  background-color: #1877f2;
}

.social-link.instagram {
  background: linear-gradient(45deg, #feda75, #d62976, #962fbf, #4f5bd5);
}

.social-link.whatsapp {
  background-color: #25d366;
}

.social-link:hover {
  transform: scale(1.1);
  opacity: 0.9;
}

/* Responsive tweaks */
@media (max-width: 767.98px) {
  .info-card {
    padding: 1.5rem;
  }

  .info-icon {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }

  .social-link {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
    align-items: center;
  }

  h4 {
    font-size: 1.2rem;
  }
}

/*Foooter css*/

footer {
  background-color: #1e2a36;
  color: #fff;
  padding: 80px 0 30px;
  position: relative;
  font-family: "Poppins", sans-serif;
}

.footer-logo {
  display: flex;
  align-items: center;
  /* gap: 15px; Removed specific gap, handled by margin */
}

/* Removed previous .footer-logo img styles as they are inline or default */

.footer-text {
  color: #b0bec5;
  margin-top: 15px;
  line-height: 1.6;
  font-size: 0.95rem;
}

.social-icons a {
  color: #b0bec5;
  font-size: 18px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #fff;
}

/* Quick Links */
.footer-links a {
  color: #b0bec5;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 5px;
  /* Subtle move effect */
}

/* Contact Section */
.footer-contact i {
  width: 20px;
  /* Fixed width for alignment */
  text-align: center;
}

.text-secondary {
  color: #b0bec5 !important;
}

/* Mobile responsive adjustments */
@media (max-width: 767px) {}

/* Gallery Section - UPDATED FOR SINGLE IMAGE PER ROW ON MOBILE */
.gallery-section h2 {
  font-weight: 800;
  color: #111;
  margin-bottom: 20px;
  font-size: 36px;
}

.gallery-section p {
  color: #1d9449;
  font-size: 18px;
  margin-bottom: 40px;
}

.gallery-img {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  cursor: pointer;
  /* Responsive aspect ratio */
  aspect-ratio: 1 / 1;
  /* Makes all gallery items square */
}

.gallery-img img {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  border-radius: 15px;
  transition: transform 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 2;
  border-radius: 15px;
}

.gallery-overlay i {
  color: #fff;
  font-size: 2.5rem;
  transform: scale(0.7);
  transition: all 0.4s ease;
}

.gallery-img:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.gallery-img:hover img {
  transform: scale(1.1);
}

.gallery-img:hover .gallery-overlay {
  opacity: 1;
}

.gallery-img:hover .gallery-overlay i {
  transform: scale(1);
}

/* Mobile-specific gallery fixes - SINGLE IMAGE PER ROW */
@media (max-width: 768px) {
  .gallery-section {
    padding: 60px 0;
  }

  .gallery-section .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Single column layout removed to allow 2-column grid via col-6 */
  /* .gallery-section .col-lg-3,
  .gallery-section .col-md-4,
  .gallery-section .col-sm-6 {
    flex: 0 0 100% !important;
    max-width: 100% !important; 
    width: 100% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    margin-bottom: 25px;
  } */

  /* Remove negative margins on mobile - REMOVED to restore proper grid spacing */
  /* .gallery-section .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
  } */

  .gallery-img {
    aspect-ratio: 1 / 1;
    /* Keep square on mobile too for 2-column layout */
    max-width: 100%;
    margin: 0 auto;
  }

  .gallery-overlay i {
    font-size: 2rem;
  }

  /* Touch-friendly hover effects on mobile */
  .gallery-img:active .gallery-overlay,
  .gallery-img:focus .gallery-overlay {
    opacity: 1;
  }

  .gallery-img:active .gallery-overlay i,
  .gallery-img:focus .gallery-overlay i {
    transform: scale(1);
  }

  .gallery-img:active img {
    transform: scale(1.05);
  }
}

/* Extra small devices */
@media (max-width: 576px) {
  .gallery-section h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .gallery-section p {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .gallery-img {
    aspect-ratio: 4 / 3;
    /* Restore 4:3 ratio for single column mobile */
  }
}

/* Desktop view - Multiple images per row */
/* Desktop view - Multiple images per row - REMOVED */
/* @media (min-width: 769px) {
  .gallery-section .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .gallery-section .col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .gallery-section .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
} */

html,
body {
  overflow-x: hidden;
  width: 100%;
}

/* Feature Items in About Section */
.feature-icon {
  width: 60px;
  height: 60px;
  background-color: #6a32ea;
  /* Soft pink */
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(244, 143, 177, 0.4);
}

.feature-item h5 {
  font-weight: 700;
  margin-bottom: 5px;
  color: #1e2a36;
  font-size: 1.1rem;
}

.feature-item p {
  color: #5f6c7b;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Learning Through Play Section */
.text-pink {
  color: #1d9449 !important;
}

.check-icon {
  width: 32px;
  height: 32px;
  background-color: #81c784;
  /* Green */
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.learning-card {
  background: linear-gradient(135deg, #fce4ec 0%, #f8bbd0 100%);
  /* Light pink gradient */
}

.learning-card img {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: cover;
}

/* Key Learning Section */
/* Background handled in .key-learning-section above */

.program-card:hover p {
  color: #fff !important;
}

/* Key Learning Specific Overrides */
.key-learning-section .program-card {
  padding-top: 20px;
  /* Reduced top padding to move icon higher */
}

.key-learning-section .program-icon {
  position: static;
  transform: none;
  margin: 0 auto 20px auto;
  box-shadow: none;
  /* Optional: remove shadow if it looks better, but image seems to have flat icons or slight shadow. Keeping standard style but static. */
}

/* Why Choose Us Section */
.choice-pill {
  border-radius: 50px;
  padding: 15px 25px;
  color: white;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  cursor: default;
}

.pill-number {
  background: white;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 15px;
  flex-shrink: 0;
}

.right-side .choice-pill {
  flex-direction: row-reverse;
  text-align: right;
}

.right-side .pill-number {
  margin-right: 0;
  margin-left: 15px;
}

/* Custom Colors */
.bg-yellow {
  background: linear-gradient(90deg, #fbc02d, #ffeb3b);
  color: white !important;
  /* Ensure text is white */
}

.bg-yellow .pill-number {
  color: #fbc02d;
}

.bg-cyan {
  background: linear-gradient(90deg, #00acc1, #26c6da);
}

.bg-cyan .pill-number {
  color: #00acc1;
}

.bg-pink {
  background: linear-gradient(90deg, #1d9449, #6cc98e);
}

.bg-pink .pill-number {
  color: #ec407a;
}

/* Facility Section */
.facility-card {
  transition: transform 0.3s ease;
}

.facility-card:hover {
  transform: scale(1.05);
}

/* Testimonial Section */
/* Background handled in .testimonial-section above */

.testimonial-card {
  background: linear-gradient(135deg, #f0faff, #fff0f5);
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  border: 1px solid #eee;
}

.quote-icon {
  width: 45px;
  height: 45px;
  background-color: #81c784;
  /* Green */
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

/* FAQ Section */
/* Background handled in .faq-section above */

.accordion-button {
  background-color: transparent;
  padding: 20px 25px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  background-color: transparent;
  color: #111;
  box-shadow: none !important;
}

.accordion-button:focus {
  box-shadow: none !important;
}

.accordion-body {
  font-size: 16px;
}

/* Custom Accordion Icon */
.accordion-button::after {
  content: "\2b";
  /* Plus icon */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  background-color: #ffe0eb;
  /* Light pink */
  color: #1d9449;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  background-image: none !important;
  /* Remove bootstrap default SVG */
  margin-left: auto;
  transition: all 0.3s;
}

/* Contact Section Redesign */
/* Background handled in .contact-info-section above */

/* Info Card (Left) */
.contact-card-blue {
  background-color: #e3f2fd;
  /* Light Blue */
  border: none;
}

.contact-info-section h2 {
  font-weight: 800;
  text-align: center;
  margin: 0px 0px 16px;
  font-size: 36px;
}

.green-icon {
  background-color: #81c784;
}

.pink-icon {
  background-color: #f48fb1;
}

.yellow-icon {
  background-color: #ffd54f;
}

/* Form Card (Right) */
.contact-card-green {
  background-color: #e8f5e9;
  /* Light Green */
  border: none;
}

/* Tabs */
.nav-tabs .nav-link {
  color: #555;
  background: transparent;
  border: none;
  font-size: 1rem;
  padding-bottom: 8px;
  position: relative;
  transition: all 0.3s ease;
}

.nav-tabs .nav-link.active {
  color: #1d9449;
  /* Pink text for active tab */
  background: transparent;
  font-weight: 700;
}

.nav-tabs .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #1d9449;
  /* Pink underline */
  border-radius: 2px;
  transition: width 0.3s ease;
}

/* Form inputs */
.form-control {
  border: 1px solid #e0e0e0;
  background-color: #fff;
}

.form-control:focus {
  box-shadow: 0 0 0 0.2rem rgba(129, 199, 132, 0.25);
  border-color: #81c784;
}

.btn-success {
  background-color: #81c784;
  border: none;
  transition: all 0.3s ease;
}

.btn-success:hover {
  background-color: #66bb6a;
}

.form-label {
  color: #374151;
}

.form-heading {
  color: #1f2937;
}

/* Mobile adjustments for gallery hover */
@media (max-width: 768px) {

  .gallery-img:active .gallery-overlay,
  .gallery-img:focus .gallery-overlay {
    opacity: 1;
  }

  .gallery-img:active .gallery-overlay i,
  .gallery-img:focus .gallery-overlay i {
    transform: scale(1);
  }
}

.why-choose-section h2 {
  font-weight: 800;
  color: #111;
  margin-bottom: 20px;
  font-size: 36px;
}

/* --- Directors Section --- */
.directors-section {
  background-color: #fff;
  padding: 80px 0;
}

.directors-section h2 {
  font-size: 36px;
}

.director-card {
  background: linear-gradient(135deg, #e6f7ff 0%, #ffe6f0 100%);
  border-radius: 30px;
  padding: 50px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.director-img-container {
  width: 180px;
  height: 180px;
  margin: 0 auto;
  border-radius: 50%;
  padding: 5px;
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.director-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.director-name {
  color: #ed4590;
  font-size: 1.6rem;
}

.director-role {
  font-size: 1.1rem;
  color: #6c757d;
}

@media (max-width: 768px) {
  .director-card {
    padding: 40px 20px;
  }

  .director-img-container {
    width: 200px;
    height: 200px;
  }
}
.director-img:hover {
  transform: scale(1.2);
}