/* ------------------- General Reset ------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Jost", sans-serif;
  background-color: #fff;
  color: #2a2a2a;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
}

/* ===================== HEADER =============================================================================== */
.main-header {
  background: #fff;
  font-family: "Jost", sans-serif;
}

/* Logo */
.logo {
  width: 80px;
  height: auto;
}
.logo-text {
  color: #2b2858;
  font-weight: 600;
  font-size: 1.1rem;
}
.text-muted {
  color: #6c757d !important;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

/* Nav links */
.nav-link {
  color: #111;
  font-weight: 500;
  padding: 0.8rem 1rem;
  transition: 0.3s;
}
.nav-link:hover,
.nav-link.active {
  color: #486b17;
}

/* Dropdown styling */
.dropdown-menu {
  border: none;
  border-radius: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.dropdown-item {
  font-size: 0.95rem;
  color: #333;
}
.dropdown-item:hover {
  background-color: #f5f5f5;
  color: #486b17;
}

/* Social icons */
.social-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #fff;
  font-size: 15px;
  transition: 0.3s;
}
.facebook {
  background: #3b5998;
}
.instagram {
  background: #e1306c;
}
.linkedin {
  background: #0a66c2;
}
.social-circle:hover {
  opacity: 0.85;
}

/* Toggler */
.navbar-toggler {
  border: none;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0,0,0,0.7)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Nav layout */
@media (min-width: 992px) {
  .navbar {
    border-top: 1px solid #eee;
  }
}

/* Responsive */
@media (max-width: 991px) {
  .logo {
    width: 70px;
  }
  .nav-link {
    padding: 0.7rem;
  }
  .logo-text,
  .text-muted {
    display: none !important;
  }
}

/* ===================== IMAGE BANNER =============================================================================== */

.page-banner {
  position: relative;
  width: 100vw !important;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
  padding: 0;
}

.page-banner .banner-img {
  display: block;
  width: 100vw !important;
  max-width: 100vw !important;
  height: 260px; /* fixed height as desired */
  object-fit: cover;
  object-position: center;
}

/* ===================== BREADCRUMB =============================================================================== */

.breadcrumb-section {
  background-color: #fff;
}

.breadcrumb {
  background: none;
  padding: 10px 0;
  margin: 0;
  font-size: 16px;
  justify-content: flex-start; /* align left */
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "›"; /* arrow separator */
  color: #0056eb;
  padding: 0 8px;
}

.breadcrumb a {
  color: #1268fb; /* default blue */
  text-decoration: none;
  font-weight: 500;
}

.breadcrumb a:hover {
  color: #777; /* grey on hover */
}

.breadcrumb-item.active {
  color: #1268fb;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
  .page-banner .banner-img {
    height: 190px;
  }
}

@media (max-width: 576px) {
  .page-banner .banner-img {
    height: 160px;
  }

  .breadcrumb {
    font-size: 14px;
  }
}

/* ===================== HOME PAGE =============================================================================== */

/* ===================== HERO / BANNER SECTION ===================== */
.hero-banner {
  background-color: #fff;
  position: relative;
  padding-top: 80px;
  padding-bottom: 0; /* removes extra space below */
  overflow: hidden;
}

.banner-subtitle {
  font-size: 1.25rem;
  font-weight: 500;
  color: #333;
  letter-spacing: 0.5px;
  opacity: 0;
  animation: fadeIn 1.5s ease forwards;
}

.banner-title {
  font-size: 4.5rem;
  font-family: "Playfair Display", serif;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.07);
  margin-bottom: 0;
  opacity: 0;
  animation: fadeIn 2s ease forwards;
}

.banner-images {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-top: -40px; /* pulls image upward to remove white gap */
}

.banner-img {
  width: 100%;
  max-width: 900px; /* increased size */
  height: auto;
  display: block;
  animation: fadeInUp 2.5s ease forwards;
}

/* Optional: adjust individual images */
.img-left,
.img-right {
  flex: 1;
  max-width: 50%;
  height: auto;
  object-fit: contain;
}

/* ===================== ANIMATIONS ===================== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Fade-in trigger class for reusable use */
.fade-in {
  opacity: 0;
  animation: fadeIn 1.5s ease forwards;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 991px) {
  .banner-title {
    font-size: 3rem;
  }
  .banner-subtitle {
    font-size: 1.1rem;
  }
  .banner-img {
    max-width: 700px;
  }
}

@media (max-width: 576px) {
  .hero-banner {
    padding-top: 60px;
  }
  .banner-title {
    font-size: 2.2rem;
  }
  .banner-subtitle {
    font-size: 1rem;
  }
  .banner-img {
    max-width: 100%;
    margin-top: -20px;
  }
}

/* Prevent horizontal overflow */
body {
  overflow-x: hidden;
}

/* ------------------- About Section ------------------- */
.about-section {
  background: #f7f7f7;
}

.about-box,
.sidebar-box {
  background: #fff;
  border-radius: 16px;
  line-height: 1.7;
}

.about-box p {
  color: #444;
  font-size: 0.96rem;
}

.sidebar-box {
  background: #f3f3f3;
}

.sidebar-box h4 {
  font-size: 1.05rem;
}

.apply-link {
  text-decoration: none;
}
.apply-link:hover {
  text-decoration: underline;
}

/* ===================== Maria Montessori Section ===================== */
.maria-section {
  background-color: #fafafa;
}

.maria-card {
  background-color: #f5f5f5;
}

.maria-card img {
  width: 100%;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.maria-card img:hover {
  transform: scale(1.03);
}

.maria-caption {
  font-family: "Playfair Display", serif;
  font-size: 0.95rem;
  color: #2b2b2b;
  letter-spacing: 0.5px;
}

.maria-card-content {
  background-color: #f5f5f5;
}

.maria-card-content h3 {
  font-family: "Jost", sans-serif;
  color: #000;
}

.maria-card-content p {
  color: #555;
  line-height: 1.7;
  font-size: 1rem;
}

/* ------------------- Features Section ------------------- */
.features-section {
  background: #3a3b35;
}

.feature-box {
  min-width: 240px;
}

.icon-box {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 6px;
  flex-shrink: 0;
  font-size: 20px;
}

/* custom colors */
.bg-fuchsia {
  background: #cc33cc;
}

/* Responsive tweaks */
@media (max-width: 991px) {
  .feature-box {
    flex: 1 1 100%;
  }
}
@media (max-width: 767px) {
  .about-section {
    padding-top: 50px;
  }
}

/* -------------------- Highlights Section -------------------- */
.highlights-section {
  background-color: #2b2b2b;
  color: #fff;
}

.highlight-box {
  align-items: flex-start;
  gap: 15px;
}

.highlight-icon {
  width: 60px;
  height: 60px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  flex-shrink: 0;
}

.bg-magenta {
  background-color: #d63384;
}

/* -------------------- Responsive -------------------- */
@media (max-width: 768px) {
  .info-top-section .info-icon {
    font-size: 28px;
  }

  .info-top-section h6 {
    font-size: 1rem;
  }

  .info-top-section p {
    font-size: 0.85rem;
  }

  .highlight-icon {
    width: 55px;
    height: 55px;
    font-size: 22px;
  }

  .highlight-box h5 {
    font-size: 1rem;
  }

  .highlight-box p {
    font-size: 0.9rem;
  }
}

/* ===================== Montessori Planes of Development Section ===================== */
.montessori-planes-of-development-section {
  background-color: #f6f6f6;
  padding: 60px 0;
}

.montessori-planes-of-development-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2b2858;
}

.montessori-planes-of-development-intro {
  max-width: 800px;
  margin: 0 auto;
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

.montessori-planes-of-development-box {
  background: #f9f9f9;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 10px;
  transition: all 0.3s ease;
}

.montessori-planes-of-development-box details {
  border-bottom: 1px solid #ddd;
  margin-bottom: 5px;
  overflow: hidden;
}

.montessori-planes-of-development-box details:last-child {
  border-bottom: none;
}

.montessori-planes-of-development-box summary {
  font-weight: 600;
  font-size: 1rem;
  color: #2b2858;
  background: #fff;
  padding: 15px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s ease;
  list-style: none;
}

.montessori-planes-of-development-box summary:hover {
  background: #e8f0ff;
}

.montessori-planes-of-development-box summary::after {
  content: "+";
  font-weight: bold;
  font-size: 1.2rem;
  transition: transform 0.3s ease, content 0.3s ease;
}

.montessori-planes-of-development-box[open] summary::after,
.montessori-planes-of-development-box details[open] summary::after {
  content: "−";
  transform: rotate(180deg);
}

.montessori-planes-of-development-content {
  background: #fafafa;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

details[open] .montessori-planes-of-development-content {
  padding: 15px 20px;
  max-height: 500px; /* smooth open animation */
}

/* Responsive */
@media (max-width: 768px) {
  .montessori-planes-of-development-title {
    font-size: 1.4rem;
  }

  .montessori-planes-of-development-box summary {
    font-size: 0.95rem;
    padding: 12px 15px;
  }
}

/* ------------------- Montessori Four Planes Section ------------------- */
.planes-section {
  background-color: #fff;
  padding: 60px 0;
  text-align: center;
}

.planes-image-wrapper {
  max-width: 100%;
  overflow: hidden;
}

.planes-image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  object-fit: contain;
}

/* Responsive tweaks */
@media (max-width: 992px) {
  .planes-section {
    padding: 50px 0;
  }
}

@media (max-width: 768px) {
  .planes-section {
    padding: 40px 0;
  }

  .planes-image-wrapper img {
    border-radius: 8px;
  }
}

@media (max-width: 576px) {
  .planes-section {
    padding: 30px 0;
  }

  .planes-image-wrapper img {
    border-radius: 6px;
  }
}

/* ===================== CONVENTIONAL EDUCATION SYSTEM SECTION ===================== */
.education-section {
  background-color: #fff;
}

.edu-image-box {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

/* Make the image fit perfectly without zoom or crop */
.edu-full-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain; /* ensures full image is visible */
  transition: none; /* disable any zoom effects */
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .edu-image-box {
    border-radius: 12px;
  }
}

@media (max-width: 576px) {
  .edu-image-box {
    border-radius: 10px;
  }

  .edu-full-img {
    object-fit: contain;
  }
}

/* ------------------- News & Events Section ------------------- */
.news-events-section {
  background-color: #fff;
}

.section-title {
  font-weight: 700;
  color: #000;
  margin-bottom: 4px;
}

.section-subtitle {
  color: #7b8ac8;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 500;
}

/* News cards */
.news-card {
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 20px;
  transition: all 0.3s ease;
  background: #fff;
  height: 100%;
}

.news-card:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.news-date {
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
}

.news-title {
  font-weight: 600;
  color: #222;
  margin-bottom: 12px;
  line-height: 1.4;
}

.news-link {
  color: #4a6df3;
  font-weight: 500;
  text-decoration: none;
}

.news-link:hover {
  text-decoration: underline;
}

/* Events box */
.events-box {
  background-color: #f7f8fb;
  padding: 30px;
  border-radius: 8px;
  height: 100%;
}

.event-link {
  text-decoration: none;
  color: #000;
  transition: all 0.3s ease;
}

.event-link:hover {
  transform: scale(1.02);
}

.event-img {
  width: 100px;
  height: auto;
  border-radius: 4px;
  flex-shrink: 0;
}

.event-text {
  font-weight: 500;
  color: #000;
  font-size: 16px;
  line-height: 1.4;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .events-box {
    padding: 25px;
    text-align: left;
  }

  .event-item {
    display: flex;
    justify-content: start;
  }
}

@media (max-width: 768px) {
  .news-events-section {
    padding: 40px 0;
  }

  .event-img {
    width: 80px;
  }

  .event-text {
    font-size: 15px;
  }
}

/* ===================== OUR GALLERY PAGE =============================================================================== */

/* ===================== Gallery Section ===================== */
.gallery-section {
  background-color: #fff;
}

.gallery-item {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.03);
}

.gallery-caption {
  margin-top: 10px;
  font-size: 1rem;
  color: #333;
  font-style: italic;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .gallery-img {
    height: 200px;
  }
}

@media (max-width: 576px) {
  .gallery-img {
    height: 180px;
  }
  .gallery-caption {
    font-size: 0.95rem;
  }
}

/* ===================== ADMISSION PAGE =============================================================================== */

/* ===================== ADMISSIONS OPEN SECTION ===================== */
.admission-section {
  background-color: #f5f5f5;
}

.admission-box {
  background: #f7f7f7;
  border-radius: 20px;
  overflow: hidden;
}

.admission-image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
}

.admission-content {
  background-color: #f7f7f7;
  border-radius: 20px;
  color: #333;
}

.admission-title {
  color: #c62828; /* red shade for title */
  font-weight: 700;
}

.admission-content a {
  color: #1268fb;
  font-weight: 500;
  transition: color 0.3s ease;
}

.admission-content a:hover {
  color: #0b4fc1;
  text-decoration: underline;
}

.admission-list li {
  margin-bottom: 10px;
  line-height: 1.6;
}

@media (max-width: 991px) {
  .admission-content {
    padding: 20px 15px;
  }
  .admission-title {
    font-size: 1.5rem;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .admission-box {
    flex-direction: column;
    border-radius: 12px;
  }
  .admission-image-wrapper img {
    border-radius: 12px;
  }
}

/* ===================== ABOUT PAGES =============================================================================== */

/* ===================== ABOUT ACADEMY SECTION ===================== */
.aboutacademy-section {
  background-color: #ffffff;
}

.aboutacademy-image-box {
  width: 85%; /* reduced image box width */
  display: flex;
  justify-content: center;
  align-items: center;
}

.aboutacademy-image {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
}

.aboutacademy-content {
  background-color: #f5f5f5;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  flex: 1;
}

.aboutacademy-content h3 {
  color: #000;
  font-size: 1.8rem;
}

.aboutacademy-content p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.aboutacademy-content ul {
  padding-left: 1.2rem;
}

.aboutacademy-content li {
  color: #2b2858;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 992px) {
  .aboutacademy-image-box {
    width: 100%;
  }
  .aboutacademy-content {
    text-align: center;
    padding: 25px;
  }
}

@media (max-width: 576px) {
  .aboutacademy-content {
    padding: 20px;
  }
}

/* ===================== VISION & MISSION SECTION ===================== */
.vision-mission-section {
  background-color: #fff;
}

.vision-mission-card {
  background-color: #f7f7f7;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.vision-mission-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.vision-mission-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.vision-mission-content {
  padding: 25px;
  flex-grow: 1;
}

.vision-mission-content h4 {
  font-weight: 700;
  margin-bottom: 15px;
  color: #000;
}

.vision-mission-content p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .vision-mission-img {
    height: 240px;
  }
}

@media (max-width: 768px) {
  .vision-mission-img {
    height: 220px;
  }
  .vision-mission-content {
    padding: 20px;
  }
}

@media (max-width: 576px) {
  .vision-mission-card {
    border-radius: 14px;
  }
  .vision-mission-img {
    height: 200px;
  }
}

/* ===================== MONTESSORI TAMIL METHOD SECTION ===================== */
.tamil-method-section {
  background-color: #ffffff;
}

.tamil-method-wrapper {
  background-color: #f9f9f9;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.tamil-method-title {
  background-color: #333333;
  color: #ffffff;
  padding: 15px 0;
  border-radius: 10px 10px 0 0;
  font-weight: 700;
  font-size: 1.8rem;
}

.tamil-method-item {
  background-color: #ffffff;
  padding: 25px;
  border-bottom: 1px solid #e0e0e0;
}

.tamil-method-item.alt {
  background-color: #f2f2f2;
}

.tamil-method-item h4 {
  font-weight: 700;
  font-size: 1.2rem;
  color: #3a4a1e; /* natural green tone */
  margin-bottom: 15px;
  line-height: 1.6;
}

.tamil-method-item ul {
  padding-left: 20px;
  margin: 0;
}

.tamil-method-item li {
  color: #444;
  line-height: 1.8;
  margin-bottom: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .tamil-method-title {
    font-size: 1.5rem;
  }
  .tamil-method-item {
    padding: 20px;
  }
  .tamil-method-item h4 {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .tamil-method-item {
    padding: 18px;
  }
  .tamil-method-item h4 {
    font-size: 1rem;
  }
}

/* ===================== OUR PHILOSOPHY SECTION ===================== */
.our-philosophy-section {
  background-color: #fff;
}

.philosophy-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
}

.philosophy-title {
  font-weight: 700;
  color: #2b2858;
  font-family: "Jost", sans-serif;
}

.philosophy-content p {
  color: #555;
  line-height: 1.8;
  font-size: 16px;
  font-family: "Jost", sans-serif;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .our-philosophy-section .row {
    text-align: center;
  }

  .philosophy-image img {
    max-width: 90%;
    margin-bottom: 20px;
  }

  .philosophy-content {
    padding: 0 15px;
  }
}

/* ===================== OUR MENTORS SECTION ===================== */
.our-mentors-section {
  background-color: #fff;
}

.our-mentors-title {
  font-weight: 700;
  color: #2b2858;
  font-family: "Jost", sans-serif;
}

.mentor-item {
  display: flex;
  align-items: center;
}

.mentor-image img {
  width: 100%;
  height: auto;
  border-radius: 25px;
  object-fit: cover;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.mentor-content {
  background-color: #f7f7f7;
  padding: 25px 30px;
  border-radius: 20px;
}

.mentor-name {
  font-weight: 700;
  font-size: 22px;
  color: #2b2858;
  margin-bottom: 10px;
  font-family: "Jost", sans-serif;
}

.mentor-position {
  color: #000;
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.6;
  font-family: "Jost", sans-serif;
}

.mentor-content p {
  color: #555;
  line-height: 1.8;
  font-size: 16px;
  font-family: "Jost", sans-serif;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .mentor-item {
    flex-direction: column !important;
    text-align: center;
  }

  .mentor-content {
    margin-top: 20px;
  }

  .mentor-image img {
    max-width: 85%;
  }
}

/* ===================== MONTESSORI TIMELINE SECTION ===================== */
.montessori-timeline-section {
  background-color: #fff9f3;
}

.montessori-timeline-title {
  font-weight: 700;
  color: #2b2858;
  font-size: 2rem;
}

.timeline-images {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timeline-item {
  width: 100%;
  max-width: 700px; /* controls image width on large screens */
}

.timeline-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.timeline-img:hover {
  transform: scale(1.02);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .montessori-timeline-title {
    font-size: 1.8rem;
  }
  .timeline-item {
    max-width: 600px;
  }
}

@media (max-width: 768px) {
  .timeline-item {
    max-width: 500px;
  }
}

@media (max-width: 576px) {
  .timeline-item {
    max-width: 100%;
    padding: 0 15px;
  }
}

/* ===================== FAQ SECTION ===================== */
.montessori-faq-section {
  background-color: #f6f6f6;
  padding: 60px 0;
}

.montessori-faq-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2b2858;
}

/* Main FAQ box */
.faq-box {
  background: #f9f9f9;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 20px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Each item */
.faq-box details {
  border-bottom: 1px solid #ddd;
  margin-bottom: 8px;
  overflow: hidden;
}

.faq-box details:last-child {
  border-bottom: none;
}

/* Summary (Question) */
.faq-box summary {
  font-weight: 600;
  font-size: 1rem;
  color: #2b2858;
  background: #fff;
  padding: 15px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s ease, color 0.3s ease;
  list-style: none;
}

.faq-box summary:hover {
  background: #e8f0ff;
}

/* Plus/Minus icon */
.faq-box summary::after {
  content: "+";
  font-weight: bold;
  font-size: 1.2rem;
  color: #1268fb;
  transition: transform 0.3s ease, content 0.3s ease;
}

.faq-box details[open] summary::after {
  content: "−";
  transform: rotate(180deg);
}

/* Answer (Content) */
.faq-content {
  background: #fafafa;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

details[open] .faq-content {
  padding: 15px 20px;
  max-height: 500px; /* smooth open animation */
}

/* Responsive */
@media (max-width: 768px) {
  .montessori-faq-title {
    font-size: 1.4rem;
  }

  .faq-box {
    padding: 15px;
  }

  .faq-box summary {
    font-size: 0.95rem;
    padding: 12px 15px;
  }

  .faq-content {
    font-size: 0.9rem;
  }
}

/* faq ul */

.faq-content ul {
  padding-left: 20px;
  margin: 0;
}

.faq-content li {
  margin-bottom: 6px;
  line-height: 1.6;
  color: #333;
}

/* ===================== ABOUT MARIA MONTESSORI SECTION ===================== */
.about-maria-montessori-section {
  background-color: #fff;
}

/* Slider Wrapper */
.montessori-slider {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

/* Each Slide */
.montessori-slide {
  background-color: #d9c5b7;
  text-align: center;
  padding: 35px 25px;
  border-radius: 12px;
}

.montessori-slide h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.montessori-slide img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.montessori-slide:hover img {
  transform: scale(1.03);
}

/* Slick Controls */
.montessori-slider .slick-prev,
.montessori-slider .slick-next {
  z-index: 2;
  width: 45px;
  height: 45px;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  display: flex !important;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.montessori-slider .slick-prev:hover,
.montessori-slider .slick-next:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

.montessori-slider .slick-prev:before,
.montessori-slider .slick-next:before {
  font-size: 22px;
  color: #fff;
}

.montessori-slider .slick-dots {
  bottom: 12px;
}

.montessori-slider .slick-dots li button:before {
  color: #111;
  opacity: 0.5;
  font-size: 12px;
}

.montessori-slider .slick-dots li.slick-active button:before {
  opacity: 1;
  color: #000;
}

/* About Text Box */
.montessori-about-content {
  background-color: #f7f7f7;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  line-height: 1.8;
}

/* Responsive */
@media (max-width: 991px) {
  .montessori-slide h3 {
    font-size: 1rem;
  }
  .montessori-about-content {
    margin-top: 25px;
  }
}

@media (max-width: 767px) {
  .montessori-slide {
    padding: 25px 15px;
  }
  .montessori-slide h3 {
    font-size: 0.95rem;
  }
}

/* ===================== FACILITIES PAGE =============================================================================== */

/* ===================== FACILITIES SECTION ===================== */
.facilities-section {
  background-color: #fff;
}

.facility-card {
  background: #f8f9fa;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.facility-card:hover {
  transform: translateY(-4px);
}

.facility-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 16px 16px 0 0;
}

/* Pure CSS Accordion */
.facilities-section .accordion-item {
  border-top: 1px solid #ddd;
  overflow: hidden;
}

.facilities-section .accordion-header {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  outline: none;
  padding: 14px 18px;
  font-weight: 600;
  font-size: 16px;
  color: #2b2858;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}

/* + icon */
.facilities-section .accordion-header::after {
  content: "+";
  font-size: 20px;
  transition: transform 0.3s ease;
}

/* Hidden checkbox */
.facilities-section .accordion-item input[type="checkbox"] {
  display: none;
}

/* Body content */
.facilities-section .accordion-body {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  padding: 0 18px;
  color: #555;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

/* Open state */
.facilities-section
  .accordion-item
  input[type="checkbox"]:checked
  ~ .accordion-body {
  max-height: 500px;
  padding: 10px 18px 16px;
}

/* Rotate + icon when open */
.facilities-section
  .accordion-item
  input[type="checkbox"]:checked
  + label::after {
  transform: rotate(45deg);
}

/* ===================== SOCIAL RESPONSIBILITY ===================== */
.social-responsibility {
  background-color: #fff;
}

.social-responsibility .section-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #2b2858;
}

.social-responsibility .section-subtitle,
.social-responsibility .section-bottom-text {
  font-size: 1rem;
  color: #333;
  max-width: 850px;
  margin: 0 auto;
  line-height: 1.7;
}

.accordion-card {
  background-color: #f5f5f5;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.accordion-button {
  font-weight: 600;
  background-color: transparent;
  box-shadow: none !important;
  color: #2b2858;
  transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
  background-color: #e8efff;
  color: #2b2858;
}

.accordion-button::after {
  filter: brightness(0) saturate(100%) invert(20%) sepia(80%) saturate(2000%)
    hue-rotate(200deg);
}

.accordion-body {
  font-size: 0.95rem;
  color: #444;
  padding-top: 0.75rem;
  border-top: 1px solid #ccc;
}

/* ===================== SCIENTIFIC OBSERVATION SECTION ===================== */
.observation-section {
  background-color: #fff;
}

.observation-card {
  background: #f8f9fa;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.observation-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.observation-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 20px 20px 0 0;
}

.observation-content {
  padding: 20px 24px 24px;
}

.observation-content h4 {
  font-weight: 600;
  color: #2b2858;
  font-size: 18px;
  margin-bottom: 14px;
  text-align: center;
}

.observation-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.observation-content ul li {
  font-size: 15px;
  color: #555;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 8px;
}

.observation-content ul li:last-child {
  border-bottom: none;
}

.observation-content ul li i {
  color: #ff6600;
  margin-top: 3px;
}

/* Section title */
.observation-section .section-title {
  color: #2b2858;
  font-weight: 700;
  font-size: 32px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .observation-img {
    height: 220px;
  }
}

@media (max-width: 768px) {
  .observation-section .section-title {
    font-size: 26px;
  }

  .observation-card {
    margin-bottom: 20px;
  }

  .observation-content h4 {
    font-size: 17px;
  }
}

@media (max-width: 576px) {
  .observation-img {
    height: 200px;
  }

  .observation-content {
    padding: 16px;
  }

  .observation-content ul li {
    font-size: 14px;
  }
}

/* ===================== CONTACT PAGE =============================================================================== */

/* ===================== CONTACT INFO SECTION ===================== */
.contact-info-section {
  background-color: #fff;
  padding-top: 70px;
  padding-bottom: 70px;
}

.school-img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 12px;
}

.info-list li {
  font-size: 16px;
  margin-bottom: 10px;
  color: #333;
}

.info-list a {
  text-decoration: none;
  color: #333;
}

.info-list a:hover {
  color: #1268fb;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: #fff;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.social-icon:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .contact-info-section .col-lg-4,
  .contact-info-section .col-lg-5,
  .contact-info-section .col-lg-3 {
    text-align: center;
  }

  .info-list li {
    justify-content: center;
  }

  .card {
    margin: 0 auto;
    max-width: 340px;
  }

  .school-img {
    max-height: 350px;
  }
}

/* ===================== CONTACT SECTION ===================== */
.contact-section {
  background-color: #f7f7f7;
  padding-top: 80px;
  padding-bottom: 80px;
}

.map-wrapper {
  min-height: 450px;
  border-radius: 12px;
  overflow: hidden;
}

.contact-form-box {
  border-radius: 12px;
  background-color: #fff;
}

.contact-form-box .form-label {
  font-weight: 500;
  color: #222;
  font-size: 0.95rem;
}

.contact-form-box .form-control {
  border-radius: 6px;
  border: 1px solid #ccc;
  box-shadow: none;
  font-size: 0.95rem;
}

.contact-form-box .form-control:focus {
  border-color: #1268fb;
  box-shadow: 0 0 0 0.15rem rgba(18, 104, 251, 0.25);
}

.contact-form-box .btn-primary {
  background-color: #1268fb;
  border: none;
  font-weight: 600;
  border-radius: 6px;
}

.contact-form-box .btn-primary:hover {
  background-color: #0f58d1;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .map-wrapper {
    min-height: 380px;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 60px 0;
  }

  .map-wrapper {
    min-height: 320px;
    margin-bottom: 25px;
  }

  .contact-form-box {
    padding: 1.5rem;
  }
}

/* ===================== FOOTER =============================================================================== */
:root {
  --footer-bg: #3a3b35;
  --footer-accent: #486b17;
  --link-muted: #d0d0c8;
}

.site-footer {
  background: var(--footer-bg);
  color: #fff;
  padding: 70px 0 0;
  font-family: "Jost", sans-serif;
}

/* Headings */
.footer-title {
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
}

/* About text */
.footer-desc {
  color: #d6d6ce;
  font-size: 0.95rem;
  margin-top: 10px;
  line-height: 1.6;
}

/* Enquire Now button */
.footer-cta {
  background: #486b17;
  color: #fff;
  font-size: 0.9rem;
  padding: 9px 22px;
  border-radius: 4px;
  font-weight: 600;
}
.footer-cta:hover {
  background: #5b8420;
  color: #fff;
}

/* Social icons */
.footer-social .social-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 15px;
  color: #fff;
}
.footer-social .facebook {
  background: #3b5998;
}
.footer-social .instagram {
  background: #e1306c;
}
.footer-social .linkedin {
  background: #0a66c2;
}

/* Footer links */
.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--link-muted);
  font-size: 0.95rem;
  padding: 4px 0;
}
.footer-links a i {
  color: #fff;
  font-size: 0.75rem;
}
.footer-links a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Contact section */
.contact-address {
  font-size: 0.95rem;
  color: #f5f5ee;
  line-height: 1.6;
}
.contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e8ecd9;
  font-size: 0.93rem;
  margin-bottom: 10px;
}
.contact-list li i {
  font-size: 0.95rem;
  color: #fff;
}

/* Make mail & WhatsApp links white */
.contact-list a {
  color: #fff;
  text-decoration: none;
}
.contact-list a:hover {
  color: #d0d0c8;
  text-decoration: underline;
}

/* Footer bottom */
.footer-bottom {
  background: #fff;
  color: #111;
  font-size: 0.95rem;
  padding: 18px 0;
  margin-top: 45px;
  border-top: 1px solid #ddd;
}
.bottom-left {
  font-weight: 500;
}

/* Responsive */
@media (max-width: 991px) {
  .footer-contact-box {
    margin-top: 15px;
  }
}
@media (max-width: 767px) {
  .footer-bottom {
    text-align: center;
  }
  .text-center-sm {
    text-align: center !important;
  }
}

/* ===================== FIX: Breadcrumb Image Fade Issue ===================== */

/* Disable animation for breadcrumb images specifically */
.page-banner .banner-img {
  animation: none !important;
  opacity: 1 !important;
  transform: none !important;
}

/* Ensure fade-in animation only applies to home page banner */
.hero-banner .banner-img,
.hero-banner .banner-subtitle,
.hero-banner .banner-title {
  opacity: 0;
  animation-fill-mode: forwards;
}

.hero-banner .banner-subtitle {
  animation: fadeIn 1.5s ease forwards;
}

.hero-banner .banner-title {
  animation: fadeIn 2s ease forwards;
}

.hero-banner .banner-img {
  animation: fadeInUp 2.5s ease forwards;
}

/* --------Maha-------- */
/* Section Layout */
.primary {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 40px;
  padding: 80px 6%;
  background: white;
  flex-wrap: wrap;
  animation: fadeInSection 1.2s ease both;
}

/* Left Image Section */
.primary-img {
  flex: 1;
  min-width: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: slideRight 1.2s ease both;
}

.primary-img img {
  width: 100%;
  height: 100%;
  max-height: 550px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.6s ease;
}

.primary-img img:hover {
  transform: scale(1.03);
}

/* Right Text Section */
.primary-con {
  flex: 1;
  min-width: 320px;
  background: #d6d5d5cc;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  animation: slideLeft 1.2s ease both;
}

.primary-con h3 {
  font-size: 2rem;
  color: black;
  margin-bottom: 20px;
  font-weight: 700;
}

.primary-con p {
  font-size: 1rem;
  color: rgb(110, 110, 110);
  line-height: 1.8;
  text-align: justify;
}

/* ✅ Animations */
@keyframes fadeInSection {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideLeft {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideRight {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Design */
@media (max-width: 900px) {
  .primary {
    flex-direction: column;
    text-align: center;
    padding: 60px 5%;
  }

  .primary-img,
  .primary-con {
    animation: fadeInSection 1s ease both;
  }

  .primary-con {
    padding: 25px;
  }

  .primary-con h3 {
    font-size: 1.6rem;
  }

  .primary-img img {
    max-height: 400px;
  }
}

/* ===== Three Column Section ===== */
.three-col {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 30px;
  padding: 80px 6%;
  background: white;
}

/* Each Column Box */
.col-box {
  flex: 1;
  min-width: 300px;
  border-radius: 20px;
  padding: 30px 25px;
  text-align: center;
  color: #222;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
  animation: fadeUp 1s ease both;
}

/* Different background colors */
.box1 {
  background: #d6d5d5cc;
  animation-delay: 0.2s;
}

.box2 {
  background: #d6d5d5cc;
  animation-delay: 0.4s;
}

.box3 {
  background: #d6d5d5cc;
  animation-delay: 0.6s;
}

/* Image Styling */
.col-box img {
  width: 100%;
  /* max-width: 200px; */
  height: auto;
  /* border-radius: 15px; */
  margin-bottom: 5px;
  transition: transform 0.6s ease;
}

.col-box:hover img {
  transform: scale(1.05);
}

/* Text Styling */
.col-box h3 {
  font-size: 1.5rem;
  color: black;
  margin-bottom: 10px;
  font: Roboto;
}

.col-box p {
  font-size: 1rem;
  color: #6b6767;
  line-height: 1.7;
  text-align: justify;
  font: Roboto;
}

/* Hover Effect */
.col-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* ===== Animations ===== */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Responsive Design ===== */
@media (max-width: 900px) {
  .three-col {
    flex-direction: column;
    align-items: center;
    padding: 60px 5%;
  }

  .col-box {
    width: 100%;
    max-width: 500px;
  }

  .col-box img {
    max-width: 180px;
  }
}

/* === Two Column Section === */
.two-sec {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 40px;
  padding: 80px 6%;
  flex-wrap: wrap;
  background: white;
}

/* Each Box */
.two-box {
  flex: 1;
  min-width: 320px;
  background-color: #d6d5d5cc;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 40px 25px;
  animation: fadeUp 1.2s ease both;
  transition: transform 0.6s ease;
}

/* AOS-like Animations */
.fade-from-left {
  animation: slideInLeft 1.2s ease both;
}

.fade-from-right {
  animation: slideInRight 1.2s ease both;
}

/* Image Styling */
.two-box img {
  width: 80%;
  height: 50%;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 20px;
  transition: transform 0.5s ease;
}

.two-box:hover img {
  transform: scale(1.05);
}

/* Content Styling */
.two-content h3 {
  font-size: 1.6rem;
  color: black;
  margin-bottom: 10px;
  font-weight: 700;
}

.two-content p {
  font-size: 1rem;
  color: #333;
  line-height: 1.7;
  text-align: justify;
}

/* Hover Effect */
.two-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* === Animations (CSS Only) === */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* === Responsive === */
@media (max-width: 900px) {
  .two-sec {
    flex-direction: column;
    text-align: center;
    padding: 60px 5%;
  }

  .two-box {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    animation: fadeUp 1s ease both;
  }

  .two-box img {
    width: 60%;
    height: auto;
  }

  .two-content h3 {
    font-size: 1.4rem;
  }
}

/* === One Column Section (Image Left, Text Right) === */
.one-sec {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 80px 8%;
  background: linear-gradient(90deg, #e8f3ff, #ffffff);
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  animation: slideInLeft 1.2s ease both;
  transition: transform 0.6s ease;
}

/* Image */
.one-img {
  flex: 1;
  display: flex;
  justify-content: center;
}

.one-img img {
  width: 100%;
  max-width: 550px;
  height: auto;
  border-radius: 20px;
  transition: transform 0.6s ease;
}

.one-sec:hover img {
  transform: scale(1.05);
}

/* Content */
.one-content {
  flex: 1;
}

.one-content h3 {
  font-size: 2rem;
  color: black;
  margin-bottom: 15px;
}

.one-content p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.8;
}

/* Hover Lift */
.one-sec:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* === Animations (CSS only) === */
@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* === Responsive === */
@media (max-width: 900px) {
  .one-sec {
    flex-direction: column;
    text-align: center;
    padding: 50px 5%;
  }

  .one-img img {
    max-width: 90%;
  }

  .one-content h3 {
    font-size: 1.6rem;
  }

  .one-content p {
    font-size: 1rem;
  }
}

/* ===== Section Layout ===== */
.faculty-growth {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Two equal columns */
  align-items: start;
  gap: 50px;
  background-color: #f1f3f6;
  padding: 80px 8%;
  border-radius: 20px;
  animation: fadeUp 1.2s ease both;
}

/* ===== Left Side ===== */
.faculty-left {
  background: rgb(214, 214, 214);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.faculty-left h3 {
  font-size: 1.8rem;
  color: black;
  font-weight: 700;
  margin-bottom: 15px;
}

.faculty-left ul {
  list-style: none;
  margin-bottom: 35px;
}

.faculty-left li {
  font-size: 1rem;
  color: #000;
  line-height: 1.8;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
}

.tick {
  color: #3aa8f3;
  font-weight: 900;
  margin-right: 10px;
  font-size: 1.2rem;
  line-height: 1.5;
}

/* ===== Right Side ===== */
.faculty-right {
  background: rgb(214, 214, 214);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  animation: slideInRight 1.3s ease both;
}

.faculty-right h3 {
  font-size: 2rem;
  color: black;
  font-weight: 700;
  margin-bottom: 15px;
}

.faculty-right ul {
  list-style: none;
}

.faculty-right li {
  font-size: 1rem;
  color: #000;
  line-height: 1.8;
  display: flex;
  align-items: flex-start;
}

.faculty-growth:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transform: translateY(-6px);
  transition: all 0.6s ease;
}

/* ===== Animations ===== */
.fade-from-up {
  animation: fadeUp 1.2s ease both;
}

.fade-from-right {
  animation: slideInRight 1.2s ease both;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(80px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .faculty-growth {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 60px 5%;
  }

  .faculty-left,
  .faculty-right {
    text-align: center;
  }

  .faculty-left li,
  .faculty-right li {
    justify-content: center;
  }
}

/* ===== Section ===== */
.tamil-integrations {
  background-color: #f1f3f6;
  padding: 80px 8%;
  border-radius: 20px;
  animation: fadeUp 1.2s ease both;
  font-family: "Montserrat", sans-serif;
}

/* Heading */
.tamil-integrations h2 {
  text-align: center;
  color: #000;
  font-size: 42px;
  font-weight: 500;
  margin-bottom: 40px;
  letter-spacing: 0.5px;
}

/* ===== Table Wrapper (Gray Frame Look) ===== */
.table-container {
  background: #fff;
  border: 2px solid #dcdcdc; /* Light gray border */
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 10px;
  overflow-x: auto;
}

/* ===== Table ===== */
.integration-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
}

/* Table Headings */
.integration-table th {
  background-color: #a3a0a0; /* Light gray header */
  color: #333;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: left;
  padding: 18px 20px;
  border-bottom: 1px solid #dcdcdc;
}

/* Table Data */
.integration-table td {
  font-size: 1rem;
  color: #222;
  line-height: 1.7;
  text-align: left;
  padding: 18px 20px;
  border-bottom: 1px solid #e5e5e5;
  vertical-align: top;
}

/* Remove bottom border for last row */
.integration-table tr:last-child td {
  border-bottom: none;
}

/* Alternate row subtle color */
.integration-table tr:nth-child(even) {
  background-color: #fafafa;
}

/* Hover effect */
.integration-table tr:hover {
  background-color: #f3f6fa;
  transition: 0.3s;
}

/* ===== Animation ===== */
.fade-from-up {
  animation: fadeUp 1.2s ease both;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .tamil-integrations {
    padding: 60px 5%;
  }

  .integration-table th,
  .integration-table td {
    font-size: 0.95rem;
    padding: 14px;
  }

  .tamil-integrations h2 {
    font-size: 1.6rem;
  }
}

.tamil-integrations {
  background-color: #f1f3f6;
  padding: 80px 8%;
  border-radius: 20px;
  animation: fadeUp 1.2s ease both;
  font-family: "Montserrat", sans-serif;
}

/* Heading */
.tamil-integrations h2 {
  text-align: center;
  color: #000;
  font-size: 42px;
  font-weight: 500;
  margin-bottom: 40px;
  letter-spacing: 0.5px;
}

/* ===== Table Wrapper (Gray Frame Look) ===== */
.table-container {
  background: #fff;
  border: 2px solid #dcdcdc; /* Gray frame */
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 10px;
  overflow-x: auto;
}

/* ===== Table ===== */
.integration-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
}

/* Table Headings */
.integration-table th {
  background-color: #f5f5f5;
  color: #333;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: left;
  padding: 18px 20px;
  border-bottom: 1px solid #dcdcdc;
}

/* Table Data */
.integration-table td {
  font-size: 1rem;
  color: #222;
  line-height: 1.7;
  text-align: left;
  padding: 18px 20px;
  border-bottom: 1px solid #e5e5e5;
  vertical-align: top;
}

/* Remove bottom border for last row */
.integration-table tr:last-child td {
  border-bottom: none;
}

/* Alternate row subtle color */
.integration-table tr:nth-child(even) {
  background-color: #fafafa;
}

/* Hover effect */
.integration-table tr:hover {
  background-color: #f3f6fa;
  transition: 0.3s;
}

/* ===== Animation ===== */
.fade-from-up {
  animation: fadeUp 1.2s ease both;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .tamil-integrations {
    padding: 60px 5%;
  }

  .integration-table th,
  .integration-table td {
    font-size: 0.95rem;
    padding: 14px;
  }

  .tamil-integrations h2 {
    font-size: 1.6rem;
  }
}

/* --- Section Wrapper --- */
.elementary-section {
  background-color: white; /* light gray background */
  padding: 60px 20px;
  overflow: hidden;
}

/* --- Two Column Layout --- */
.elementary-container {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

/* --- Left Column (Image) --- */
.elementary-image {
  flex: 1;
}

.elementary-image img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* --- Right Column (Text) --- */
.elementary-content {
  flex: 1;
  display: flex;
  align-items: center;
}

.content-box {
  background-color: #dbdbdb; /* different background color */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.content-box h3 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 15px;
}

.content-box p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
  font-size: 1rem;
}

/* --- Slide Animations --- */
@keyframes slideInLeft {
  from {
    transform: translateX(-100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.slide-left {
  animation: slideInLeft 1.2s ease-out forwards;
}

.slide-right {
  animation: slideInRight 1.2s ease-out forwards;
}

/* --- Responsive View --- */
@media (max-width: 768px) {
  .elementary-container {
    flex-direction: column;
  }

  .elementary-image,
  .elementary-content {
    flex: 1 1 100%;
  }

  .elementary-content {
    justify-content: center;
  }

  .content-box {
    margin-top: 20px;
  }

  .slide-left,
  .slide-right {
    animation: none;
  }
}

/* --- Section Background --- */
.story-section {
  background-color: white;
  padding: 60px 20px;
  overflow: hidden;
}

/* --- Grid Container --- */
.story-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* --- Card Style --- */
.story-card {
  background: #e7e7e7;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

/* --- Card Image --- */
.story-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

/* --- Heading --- */
.story-card h3 {
  font-size: 1.2rem;
  color: black;
  margin-bottom: 10px;
}

/* --- Paragraph --- */
.story-card p {
  color: #555;
  line-height: 1.6;
  font-size: 0.95rem;
  text-align: justify;
}

.story-card p strong {
  font-weight: 600;
  color: #555;
}

/* --- Fade-Up Animation (CSS AOS) --- */
@keyframes fadeUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.fade-up {
  animation: fadeUp 1.2s ease forwards;
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
  .story-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .story-container {
    grid-template-columns: 1fr;
  }

  .story-card img {
    height: 180px;
  }
}

/* --- Section --- */
.integration-section {
  background-color: #fafafa;
  padding: 60px 20px;
}

.integration-section h2 {
  text-align: center;
  color: #2e7d32;
  margin-bottom: 30px;
  font-size: 1.8rem;
  font-weight: 600;
}

/* --- Table Frame Wrapper --- */
.table-wrapper {
  overflow-x: auto;
  border: 4px solid #b6b8b7; /* outer green frame */
  border-radius: 10px;
  background: #fff;
  padding: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* --- Table Styling --- */
.integration-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 800px;
  border: 1px solid #ddd; /* light border lines */
}

.integration-table th,
.integration-table td {
  padding: 16px;
  text-align: left;
  vertical-align: top;
  border: 1px solid #ccc; /* border between cells */
}

.integration-table th {
  background-color: #2e7d32;
  color: white;
  font-size: 1rem;
  text-transform: uppercase;
}

.integration-table tr:nth-child(even) {
  background-color: #f5f5f5;
}

.integration-table tr:nth-child(odd) {
  background-color: #ffffff;
}

.integration-table td {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* --- Bullet Points --- */
.integration-table ul {
  margin: 0;
  padding-left: 20px;
  list-style-type: circle;
}

.integration-table li {
  margin-bottom: 6px;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .integration-section h2 {
    font-size: 1.5rem;
  }

  .integration-table th,
  .integration-table td {
    padding: 12px;
    font-size: 0.9rem;
  }

  .integration-table {
    min-width: 100%;
  }

  .table-wrapper {
    padding: 6px;
  }
}

/* --- farm section --- */
.farm-section {
  background-color: white;
  padding: 60px 20px;
}

/* --- 2 Column Container --- */
.farm-container {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 2 equal columns */
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

/* --- Left Image --- */
.farm-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

/* --- Right Content --- */
.farm-content {
  background-color: #f2f2f2;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.farm-content h3 {
  font-size: 2rem;
  color: black;
  margin-bottom: 15px;
  text-align: center;
}

.farm-content p {
  font-size: 1rem;
  color: #444;
  line-height: 1.9;
  text-align: justify;
}

/* --- Responsive (Mobile View) --- */
@media (max-width: 768px) {
  .farm-container {
    grid-template-columns: 1fr; /* stack columns */
  }

  .farm-image {
    order: 1; /* show image first */
  }

  .farm-content {
    order: 2;
    padding: 20px;
    text-align: center;
  }

  .farm-content h3 {
    font-size: 1.5rem;
  }

  .farm-content p {
    font-size: 0.95rem;
  }
}

/* Section Styling */
.farm-grid-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 60px auto;
  padding: 20px;
  background-color: #fff;
}

/* Card Design */
.farm-card {
  background-color: #f2f2f2;
  /* border: 2px solid #ddd; */
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.farm-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

/* Card Image */
.farm-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

/* Text Styles */
.farm-card h3 {
  font-size: 1.3rem;
  color: black;
  margin-bottom: 10px;
}

.farm-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  text-align: justify;
}

/* --- AOS-like Animations (Pure CSS) --- */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Assign Animations */
.fade-left,
.fade-right,
.fade-up {
  opacity: 0;
  animation-fill-mode: forwards;
  animation-duration: 1s;
  animation-timing-function: ease-out;
}

/* View-based Animation Trigger (CSS Scroll Animation API) */
@media (prefers-reduced-motion: no-preference) {
  .fade-left {
    animation-name: fadeInLeft;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
  }
  .fade-right {
    animation-name: fadeInRight;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
  }
  .fade-up {
    animation-name: fadeInUp;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
  }
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .farm-grid-section {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .farm-grid-section {
    grid-template-columns: 1fr;
  }
}

/* --- Section Wrapper --- */
.farm-program-table {
  /* max-width: 1100px; */
  margin: 50px auto;
  padding: 20px;
  overflow-x: auto;
}

/* --- Table Styling --- */
.farm-program-table table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Roboto";
  background-color: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

/* --- Header --- */
.farm-program-table thead {
  background-color: #2e7d32;
  color: white;
  text-align: left;
  font-weight: bold;
}

.farm-program-table th {
  padding: 15px;
  font-size: 1.1rem;
  border: 1px solid #ccc;
}

/* --- Table Rows --- */
.farm-program-table td {
  padding: 14px 12px;
  border: 1px solid #ccc;
  color: rgb(124, 124, 124);
  vertical-align: top;
}

/* --- Section Titles --- */
.section-heading td {
  background-color: #e1e2e1;
  color: rgb(124, 124, 124);
  text-align: center;
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
}

/* --- Alternate Rows --- */
.farm-program-table tbody tr:nth-child(even):not(.section-heading) {
  background-color: #f9f9f9;
}

.farm-program-table tbody tr:nth-child(odd):not(.section-heading) {
  background-color: #fff;
}

/* --- Hover Effect --- */
.farm-program-table tbody tr:hover:not(.section-heading) {
  background-color: #f1f8e9;
  transition: 0.3s;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .farm-program-table table {
    font-size: 0.9rem;
  }

  .farm-program-table th,
  .farm-program-table td {
    padding: 10px;
  }
}

@media (max-width: 480px) {
  .farm-program-table table {
    font-size: 0.8rem;
  }
}

.farm-table-section {
  padding: 30px;
  background-color: #f9f9f9;
  font-family: "Roboto";
}

/* ✅ Green standalone heading */
.farm-heading {
  background-color: #44b84a;
  color: #fff;
  font-family: Montserrat;
  text-align: center;
  font-weight: 700;
  font-size: 42px;
  padding: 15px;
  border-radius: 8px;
  width: full;
  margin: 0 auto 25px auto;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.table-container {
  overflow-x: auto;
  border: 2px solid #2e7d32;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.farm-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.farm-table th {
  background-color: #2e7d32;
  color: #fff;
  font-weight: bold;
  padding: 15px;
  text-align: left;
  font-size: 1rem;
}

.farm-table td {
  padding: 15px;
  border: 1px solid #ddd;
  color: rgb(124, 124, 124);
  vertical-align: top;
  line-height: 1.6;
}

.farm-table tr:nth-child(even) {
  background-color: #f5f5f5;
}

.farm-table tr:nth-child(odd) {
  background-color: #ffffff;
}

.farm-table strong {
  color: rgb(124, 124, 124);
  font-weight: 700;
}

@media (max-width: 768px) {
  .farm-table-section {
    padding: 15px;
  }

  .farm-heading {
    font-size: 1.3rem;
    padding: 12px;
  }

  .farm-table th,
  .farm-table td {
    font-size: 0.9rem;
    padding: 10px;
  }
}

.land-lab-section {
  padding: 50px 20px;
  background-color: #f9f9f9;
  font-family: "Poppins", sans-serif;
}

.land-lab-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  flex-wrap: wrap; /* responsive stacking */
}

/* Left Image */
.land-lab-container img {
  width: 45%;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Right Content Box */
.land-lab-content {
  width: 50%;
  background-color: #e8e9e8; /* 🌿 Light green background */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Heading */
.land-lab-content h3 {
  font-size: 20px;
  color: black;
  margin-bottom: 15px;
  font-weight: 700;
  font-family: Montserrat;
}

/* Paragraph */
.land-lab-content p {
  font-size: 16px;
  font-family: "Roboto";
  color: rgb(124, 124, 124);
  line-height: 26px;
  text-align: justify;
}

/* Responsive Design */
@media (max-width: 900px) {
  .land-lab-container {
    flex-direction: column;
  }

  .land-lab-container img,
  .land-lab-content {
    width: 100%;
  }

  .land-lab-content {
    padding: 25px;
  }
}
