*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.col-white{
  color: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.site-header.is-scrolled {
  background: #3E7458;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}

.site-header.is-scrolled .top-strip {
  background: #3E7458;
}

.site-header.is-scrolled .navbar ul li a,
.site-header.is-scrolled .about-trigger {
  color: #fff;
}

.site-header.is-scrolled .about-dropdown .about-item {
  color: #000;
}
.site-header.is-scrolled .about-dropdown .about-item:hover {
  color: #3E7458;
}



.site-header.is-scrolled .about-trigger:hover,
.site-header.is-scrolled .navbar ul li a:hover {
  color: #fff;
  opacity: 0.85;
}

.site-header.is-scrolled .dropdown-icon i {
  color: #fff;
}

.site-header.is-scrolled .hamburger-line {
  background-color: #fff;
}

.site-header.is-scrolled .appointment-btn a {
  background-color: #fff;
  color: #3E7458;
}

.top-strip {
  background-color: #3E7458;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: Arial, sans-serif;
  font-size: 14px;
}

.top-strip .contact-details{
  display: flex;
  gap: 25px;
}

.top-strip .contact-details a {
  color: #fff;
  text-decoration: none;
  font-size: larger;
}

.top-strip .contact-details a:hover {
  text-decoration: underline;
  color: #cecdcd;
}

.top-strip .contact-details a i{
  margin-right: 5px;
  color: #fff;
}

.top-strip .social-icons a {
  color: #fff;
  text-decoration: none;
  margin-left: 15px;
  font-size: 16px;
}

.top-strip .social-icons a:hover {
  color: #f12424;
}

@media (max-width: 900px) {
  .top-strip {
    flex-wrap: wrap;
    gap: 10px 15px;
    padding: 12px 20px;
    justify-content: center;
  }

  .top-strip .logo img {
    width: 70px;
    height: auto;
  }

  .top-strip .contact-details {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 20px;
  }

  .top-strip .contact-details a {
    font-size: 13px;
  }

  .top-strip .social-icons a {
    font-size: 14px;
    margin-left: 10px;
  }
}

@media (max-width: 600px) {
  .top-strip {
    padding: 10px 16px;
  }

  .top-strip .contact-details {
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  .top-strip .social-icons a {
    padding: 8px 10px;
  }
}

header {
  position: relative;
  /* z-index: 97; */
  overflow: visible;
  width: 100%;
}

.header{
  /* margin-top: 20px; */
  display: flex;
  align-items: center;
  gap: 20px;
  overflow: visible;
  position: relative;
}

.header .logo{
  flex: 1;
  padding-left: 40px;
  display: flex;
  z-index: 95;
  align-items: center;
}

.header .logo img{
  height: 80px;
}

.navbar{
  flex: 2.5;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
  position: relative;
  z-index: 97;
  padding-top: 20px;

}

.appointment-btn {
  flex: 0.8;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 40px;
}
.navbar ul{
  list-style: none;
  display: flex;
  gap: 30px;
  overflow: visible;
  position: relative;
}
.navbar ul li {
  overflow: visible;
  position: relative;
}

.navbar ul li a{
  text-decoration: none;
  color: #000;
  font-weight: 700;
  font-size: 16px;
}
.navbar ul li a .active{
  color: #3E7458;
}

.navbar ul li{
  position: relative;
}

.navbar ul li a:hover{
  color: #3E7458;
}

.about-nav {
  position: relative;
}

.about-trigger {
  background: transparent;
  border: none;
  font-weight: 700;
  font-size: 16px;
  color: #000;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0;
}

.about-trigger:hover {
  color: #3E7458;
}

.about-trigger:hover .dropdown-icon {
  transform: rotate(180deg);
}

.about-dropdown {
  position: absolute;
  top: calc(100% + 0px);
  padding-top: 16px;
  left: 0;
  width: 220px;
  background: #fff;
  border: 1px solid #e0e0e0;
  box-shadow: 0 10px 30px rgba(30, 132, 181, 0.2);
  display: none;
  z-index: 101;
  border-radius: 8px;
  overflow: hidden;
  animation: slideDown 0.3s ease;
}

.about-nav:hover .about-dropdown {
  display: block;
}

.about-item {
  display: block;
  padding: 12px 18px;
  text-decoration: none;
  color: #0b2b45;
  font-weight: 600;
  font-size: 14px;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.about-item:last-child {
  border-bottom: none;
}

.about-item:hover {
  background-color: #f0f7fc;
  color: #3E7458;
  padding-left: 24px;
}.about-item:hover {
  background-color: #f5f5f5;
  color: #3E7458;
}

.appointment-btn a {
  background-color: #3E7458;
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  display: inline-block;
  white-space: nowrap;
}

.appointment-btn a:hover {
  background-color: #0b4f72;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(30, 132, 181, 0.4);
}

/* ============================================
   HEADER LOGO & MOBILE APPLY BUTTON
   ============================================ */

.header-logo {
  display: none;
  order: 1;
  padding-left: 15px;
}

.header-logo a {
  display: flex;
  align-items: center;
}

.header-logo img {
  height: 60px;
  width: auto;
}

.header-right-group {
  display: none;
  order: 2;
  gap: 20px;
  align-items: center;
  flex-direction: row;
}

.mobile-apply-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.mobile-apply-btn a {
  background-color: #3E7458;
  color: #fff;
  padding: 8px 14px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.3s ease;
  display: inline-block;
  white-space: nowrap;
}

.mobile-apply-btn a:hover {
  background-color: #2a5240;
  transform: translateY(-2px);
}

/* ============================================
   HAMBURGER MENU & MOBILE NAVIGATION
   ============================================ */

.hamburger-menu {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 100;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background-color: #000;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Menu Sidebar */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 350px;
  height: 100vh;
  background: linear-gradient(135deg, #3E7458 0%, #0b4f72 100%);
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
  transition: right 0.3s ease;
  z-index: 9999;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

/* .mobile-menu::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
} */

.mobile-menu.active::before {
  opacity: 1;
  /* z-index: 997; */
}

.mobile-menu-header {
  padding: 20px;
  display: flex;
  justify-content: flex-end;
}

.close-menu {
  background: none;
  border: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
  padding: 5px;
  transition: transform 0.3s ease;
}

.close-menu:hover {
  transform: rotate(90deg);
}

.mobile-navbar {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.mobile-navbar ul {
  list-style: none;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-navbar ul li {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
}

.mobile-navbar ul li a {
  text-decoration: none;
  color: white;
  font-weight: 600;
  font-size: 16px;
  padding: 16px 20px;
  display: block;
  transition: all 0.3s ease;
}

.mobile-navbar ul li a:hover {
  background: rgba(255, 255, 255, 0.1);
  padding-left: 30px;
}

/* Mobile Dropdown Menus */
.mobile-about-nav,
.mobile-treatments-nav {
  position: relative;
}

.mobile-about-trigger,
.mobile-treatments-trigger {
  width: 100%;
  background: none;
  border: none;
  color: white;
  font-weight: 600;
  font-size: 16px;
  padding: 16px 20px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.mobile-about-trigger:hover,
.mobile-treatments-trigger:hover {
  background: rgba(255, 255, 255, 0.1);
  padding-left: 30px;
}

.mobile-about-trigger .dropdown-icon,
.mobile-treatments-trigger .dropdown-icon {
  transition: transform 0.3s ease;
  font-size: 14px;
}

.mobile-about-nav.active .mobile-about-trigger .dropdown-icon,
.mobile-treatments-nav.active .mobile-treatments-trigger .dropdown-icon {
  transform: rotate(180deg);
}

.mobile-about-dropdown,
.mobile-treatments-dropdown {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(0, 0, 0, 0.2);
}

.mobile-about-nav.active .mobile-about-dropdown,
.mobile-treatments-nav.active .mobile-treatments-dropdown {
  max-height: 1200px;
}

.mobile-about-dropdown a,
.mobile-treatments-dropdown a {
  padding: 12px 20px 12px 40px;
  color: white;
  text-decoration: none;
  display: block;
  font-size: 14px;
  transition: all 0.3s ease;
}

.mobile-about-dropdown a:hover,
.mobile-treatments-dropdown a:hover {
  background: rgba(255, 255, 255, 0.1);
  padding-left: 50px;
}

/* Mobile Treatment Categories */
.mobile-treatment-category {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-treatment-trigger {
  width: 100%;
  border: none;
  background: transparent;
  color: white;
  font-size: 14px;
  padding: 12px 20px 12px 40px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.mobile-treatment-trigger:hover {
  background: rgba(255, 255, 255, 0.1);
  padding-left: 50px;
}

.mobile-treatment-trigger .category-icon {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.mobile-treatment-category.active .mobile-treatment-trigger .category-icon {
  transform: rotate(45deg);
}

.mobile-treatment-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(0, 0, 0, 0.3);
}

.mobile-treatment-category.active .mobile-treatment-submenu {
  max-height: 800px;
}

.mobile-treatment-submenu a {
  display: block;
  padding: 10px 20px 10px 60px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 13px;
  transition: all 0.3s ease;
  border-left: 2px solid transparent;
}

.mobile-treatment-submenu a:hover {
  background: rgba(255, 255, 255, 0.08);
  padding-left: 70px;
  border-left-color: #3E7458;
}

.mobile-appointment {
  border-bottom: none !important;
  padding: 20px !important;
}

.mobile-book-btn {
  background: white !important;
  color: #3E7458 !important;
  border-radius: 8px !important;
  padding: 14px 24px !important;
  font-weight: 700 !important;
  text-align: center !important;
  width: 100% !important;
  display: block !important;
  transition: all 0.3s ease !important;
}

.mobile-book-btn:hover {
  background: #f0f7fc !important;
  transform: translateY(-2px) !important;
}

.hero-section {
  position: relative;
  /* min-height: 600px; */
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
}

.hero-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  display: flex;
  align-items: center;
}

.hero-slide.active {
  opacity: 1;
  position: relative;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #e8f4f8 0%, #d0e8f2 100%);
  z-index: 0;
}

.hero-container {
  position: relative;
  z-index: 1;
  /* max-width: 1400px; */
  margin: 0 auto;
  padding: 60px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: slideInLeft 0.8s ease;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: slideInRight 0.8s ease;
}

.hero-subtitle {
  font-size: 14px;
  font-weight: 600;
  color: #666;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  color: #0b2b45;
  line-height: 1.3;
  margin: 0;
}

.hero-title .highlight {
  color: #3E7458;
}

.hero-description {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  margin: 0;
  max-width: 500px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #0b4f72;
  color: #fff;
  padding: 14px 32px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  width: fit-content;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background-color: #3E7458;
  transform: translateX(5px);
  color: #fff;
}

.hero-image img {
  max-width: 100%;
  height: 500px;
  object-fit: contain;
}

/* Slider Navigation */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(28, 107, 62, 0.8);
  color: #fff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: all 0.3s ease;
  z-index: 10;
}

.slider-nav:hover {
  background: #3E7458;
  transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
  left: 30px;
}

.slider-nav.next {
  right: 30px;
}

/* Slider Dots */
.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0);
}

.dot:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: scale(1.2);
}

.dot.active {
  background: #3E7458;
  border-color: #fff;
  width: 14px;
  height: 14px;
}

@media (max-width: 768px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px 20px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-description {
    font-size: 14px;
  }

  .slider-nav {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .slider-nav.prev {
    left: 10px;
  }

  .slider-nav.next {
    right: 10px;
  }
}

/* Info Strip Section */
.info-strip {
  background: linear-gradient(135deg, #3E7458 0%, #2a5240 100%);
  padding: 40px 0;
  margin-top: -20px;
  position: relative;
  z-index: 10;
}

.info-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: center;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #fff;
}

.info-item:last-child {
  justify-content: flex-end;
}

.info-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.info-icon i {
  font-size: 24px;
  color: #fff;
}

.info-item:hover .info-icon {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.1);
}

.info-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 5px 0;
  color: #fff;
}

.info-content p {
  font-size: 16px;
  margin: 0;
  /* color: rgba(255, 255, 255, 0.95); */
  color: #fff;
}

.info-content p a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-content p a:hover {
  color: #ffe066;
}

.appointment-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  color: #0d5473;
  padding: 16px 32px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.appointment-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  /* background: #ffe066; */
  color: #0d5473;
}

.appointment-button i {
  transition: transform 0.3s ease;
}

.appointment-button:hover i {
  transform: translateX(5px);
}


/* Testimonials Section */
/* .testimonials-section {
  overflow: hidden;
}

.testimonials-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.testimonials-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-section .section-header h2 {
  font-size: 42px;
  font-weight: 600;
  color: #0b2b45;
  margin-bottom: 10px;
}

.testimonials-section .section-header p {
  font-size: 16px;
  color: #666;
  margin: 0;
}

.testimonials-slider-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
}

.testimonials-slider {
  display: flex;
  position: relative;
  overflow: hidden;
  background: transparent;
}

.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.6s ease;
  position: absolute;
  overflow: hidden;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100px);
   
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial-card.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  z-index: 10;
}

.testimonial-card.prev {
  transform: translateX(-100px);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(30, 132, 181, 0.2);
}

.testimonial-card.active:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(30, 132, 181, 0.2);
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3E7458 0%, #0b4f72 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.testimonial-card:hover::before {
  transform: scaleX(1);
} */

/* Navigation Buttons */
/* .testimonial-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #3E7458;
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(30, 132, 181, 0.3);
}

.testimonial-nav:hover {
  background: #0b4f72;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(30, 132, 181, 0.4);
}

.testimonial-nav.prev {
  left: 0;
}

.testimonial-nav.next {
  right: 0;
}


.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
  position: relative;
  z-index: 15;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.dot.active {
  background: #3E7458;
  width: 36px;
  border-radius: 6px;
}

.rating {
  display: flex;
  gap: 5px;
  margin-bottom: 15px;
}

.rating i {
  font-size: 16px;
  color: #ffc107;
}

.testimonial-text {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
  border-left: 4px solid #3E7458;
  padding-left: 15px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #3E7458 0%, #0b4f72 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  font-size: 20px;
}

.author-info h4 {
  font-size: 15px;
  font-weight: 700;
  color: #0b2b45;
  margin: 0;
}

.author-info p {
  font-size: 12px;
  color: #999;
  margin: 3px 0 0 0;
}

@media (max-width: 768px) {
  .testimonial-card {
    padding: 25px;
    min-height: 380px;
  }

  .testimonials-section .section-header h2 {
    font-size: 32px;
  }

  .testimonials-slider-wrapper {
    padding: 0 60px;
  }

  .testimonial-nav {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
} */


/* Footer Section */
.footer {
  /* background: linear-gradient(135deg, #0b4f72 0%, #052d47 100%); */
  background-color: #000;
  color: #fff;
  padding-top: 80px;
  padding-bottom: 0;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr;
  gap: 50px;
  margin-bottom: 50px;
}

/* Footer Column */
.footer-column {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.footer-column:nth-child(1) { animation-delay: 0.1s; }
.footer-column:nth-child(2) { animation-delay: 0.2s; }
.footer-column:nth-child(3) { animation-delay: 0.3s; }
.footer-column:nth-child(4) { animation-delay: 0.4s; }

/* Clinic Info */
.footer-info {
  grid-column: span 1;
}

.footer-logo {
  margin-bottom: 30px;
}

.clinic-rating {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}

.clinic-rating .stars {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-bottom: 12px;
}

.clinic-rating .stars i {
  font-size: 20px;
  color: #ffc107;
}

.clinic-rating h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0b2b45;
  margin: 8px 0;
}

.clinic-rating p {
  font-size: 13px;
  color: #666;
  margin: 0;
}

.clinic-rating .highlight {
  color: #3E7458;
  font-weight: 700;
}

.clinic-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.detail-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.detail-item i {
  color: #fff;
  /* font-weight: 500; */
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.detail-item i:hover {
  color: #3E7458;

}

.detail-item a {
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.5;
  transition: color 0.3s ease;
}

.detail-item a:hover {
  color: #3E7458;
}

.detail-item p {
  color: #fff;
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}

/* Footer Title */
.footer-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 25px;
  padding-bottom: 12px;
  border-bottom: 2px solid #3E7458;
  display: inline-block;
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links li a {
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.footer-links li a:hover {
  color: #3E7458;
  padding-left: 8px;
}
.footer-links .social-ft-icons li a{
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  font-size: 22px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.footer-links .social-ft-icons li a:hover {
  color: #3E7458;
  scale: 1.2;
  padding-left: 0;
}

/* Latest Blogs */
.footer-blogs {
  grid-column: span 1;
}

.blog-item {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.blog-item:hover {
  transform: translateX(5px);
}

.blog-thumbnail {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: #3E7458;
}

.blog-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-info {
  flex-grow: 1;
}

.blog-name {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 6px 0;
  line-height: 1.3;
}

.blog-link {
  color: #ff9800;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.blog-link:hover {
  color: #ffc107;
}

/* Footer Bottom */
.footer-bottom {
  /* background: #0a3d5a; */
  background-color: #000;
  padding: 25px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
  max-width: 1400px;
  font-weight: 500;
  margin: 0 auto;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

.developer-link {
  color: #3E7458;
  text-decoration: none;
  transition: color 0.3s ease;
}

.developer-link:hover {
  color: #fff;
}

/* Responsive Footer */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-info {
    grid-column: span 2;
  }

  .footer-blogs {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .footer {
    padding-top: 60px;
    padding-bottom: 0;
  }

  .footer-container {
    padding: 0 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-info {
    grid-column: span 1;
  }

  .footer-blogs {
    grid-column: span 1;
  }

  .footer-bottom {
    padding: 25px 20px;
  }

  .clinic-rating {
    padding: 15px;
  }

  .clinic-rating .stars i {
    font-size: 16px;
  }

  .clinic-rating h3 {
    font-size: 16px;
  }

  .footer-title {
    font-size: 16px;
  }
}


/* ===== CONTACT PAGE ===== */

/* Contact Hero Section */
.contact-hero {
  position: relative;
  height: 350px;
  /* background: linear-gradient(135deg, #3E7458 0%, #0b4f72 100%); */
  background: url(../images/hero-section/bg-contact.jpg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  animation: fadeInUp 0.8s ease forwards;
}

.contact-hero-title {
  font-size: 48px;
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.contact-hero-subtitle {
  font-size: 20px;
  font-weight: 400;
  color: #000;
  opacity: 0.95;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}



/* FAQ Section */
.contact-faq {
  padding: 80px 0;
  background: #fff;
}

.faq-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

.faq-item {
  background: #f8f9fb;
  border-radius: 12px;
  overflow: hidden;
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }
.faq-item:nth-child(6) { animation-delay: 0.6s; }

.faq-question {
  padding: 20px;
  background: #f0f7fc;
  border-left: 4px solid #3E7458;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-item:hover .faq-question {
  background: #e8f3fa;
}

.faq-question h4 {
  font-size: 15px;
  font-weight: 700;
  color: #0b2b45;
  margin: 0;
  flex-grow: 1;
}

.faq-question i {
  color: #3E7458;
  font-size: 18px;
  transition: transform 0.3s ease;
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background: #fff;
}

.faq-item.active .faq-answer {
  padding: 20px;
  max-height: 300px;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Contact */
@media (max-width: 1024px) {
  .contact-hero-title {
    font-size: 36px;
  }

  .contact-container {
    gap: 40px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    height: 250px;
  }

  .contact-hero-title {
    font-size: 28px;
  }

  .contact-hero-subtitle {
    font-size: 14px;
  }

  .contact-container {
    grid-template-columns: 1fr;
    padding: 0 20px;
    gap: 40px;
  }

  .contact-form-box {
    padding: 30px;
  }

  .info-header h2 {
    font-size: 24px;
  }

  .contact-form-box h2 {
    font-size: 24px;
  }

  .contact-section,
  .contact-faq {
    padding: 60px 0;
  }

  .contact-map-section {
    padding: 60px 20px;
  }

  .map-wrapper h2 {
    font-size: 24px;
  }

  .map-container {
    height: 350px;
  }

  .map-container iframe {
    height: 100% !important;
  }

  .social-links {
    flex-wrap: wrap;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }
}



/* ============================================
   RESPONSIVE: HAMBURGER MENU FOR MOBILE/TABLET
   ============================================ */

@media (max-width: 1400px) {
  .hamburger-menu {
    display: flex;
    margin-right: 10px;
    margin-left: 0;
    order: 1;
  }

  .navbar {
    display: none;
  }

  .appointment-btn {
    display: none !important;
  }

  .header-logo {
    display: flex;
    order: 1;
  }

  .header-right-group {
    display: flex;
  }

  .mobile-menu {
    max-width: 100%;
  }

  .header {
    gap: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
  }

  .header .logo {
    display: none;
  }

  .header .logo img {
    height: 60px;
  }

  .top-strip {
    padding: 10px 20px;
    flex-direction: column;
    gap: 10px;
    font-size: 12px;
  }

  .top-strip .contact-details {
    gap: 15px;
    flex-wrap: wrap;
  }

  .top-strip .social-icons {
    text-align: center;
  }
}

/* ============================================
   RESPONSIVE: INFO-STRIP SECTION
   ============================================ */

@media (max-width: 1024px) {
  .info-container {
    gap: 30px;
    padding: 0 30px;
  }

  .info-content h3 {
    font-size: 16px;
  }

  .info-content p {
    font-size: 14px;
  }

  .appointment-button {
    padding: 14px 28px;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .info-strip {
    padding: 30px 0;
    margin-top: -10px;
  }

  .info-container {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 20px;
  }

  .info-item {
    gap: 15px;
    justify-content: center;
    text-align: center;
  }

  .info-item:last-child {
    justify-content: center;
  }

  .info-icon {
    width: 50px;
    height: 50px;
  }

  .info-icon i {
    font-size: 20px;
  }

  .info-content h3 {
    font-size: 14px;
    margin-bottom: 3px;
  }

  .info-content p {
    font-size: 12px;
  }

  .appointment-button {
    padding: 12px 24px;
    font-size: 13px;
    width: 100%;
    justify-content: center;
  }
}

/* ===== Why Tulsi College Section ===== */
.why-tulsi-section {
  padding: 60px 20px;
  /* background: linear-gradient(135deg, #f5f7fa 0%, #e8f0f7 100%); */
  /* margin: 40px 0; */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 38px;
  color: #3E7458;
  font-weight: 700;
  margin: 0 0 15px 0;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 18px;
  color: #666;
  margin: 0;
  font-weight: 400;
}

/* Feature Cards Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.feature-card {
  background: white;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(30, 132, 181, 0.1);
  text-align: center;
  display: flex;
    flex-direction: column;
    align-items: center;
  transition: all 0.3s ease;
  border-top: 4px solid #3E7458;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(30, 132, 181, 0.2);
  border-top-color: #f12424;
}

.feature-icon {
  font-size: 48px;
  color: #3E7458;
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

.feature-card:hover .feature-icon {
  color: #f12424;
}

.feature-card h3 {
  font-size: 22px;
  color: #1b1b18;
  margin: 15px 0;
  font-weight: 700;
}

.feature-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* ===== Blog Section ===== */
.blog-section {
  padding: 20px 20px;
  background: white;
  /* margin: 40px 0; */
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.blog-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(30, 132, 181, 0.15);
  border-color: #3E7458;
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  /* background: linear-gradient(135deg, #3E7458 0%, #B5D57E 100%); */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.image-placeholder {
  color: white;
  font-size: 16px;
  font-weight: 600;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #3E7458 0%, #B5D57E 100%);
  transition: background 0.3s ease;
}

.blog-card:hover .image-placeholder {
  background: linear-gradient(135deg, #B5D57E 0%, #3E7458 100%);
}

.blog-content {
  padding: 25px;
}

.blog-date {
  display: inline-block;
  font-size: 12px;
  color: #f12424;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.blog-card h3 {
  font-size: 20px;
  color: #1b1b18;
  font-weight: 700;
  margin: 10px 0 15px 0;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.blog-card:hover h3 {
  color: #3E7458;
}

.blog-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0 0 15px 0;
}

.read-more {
  display: inline-block;
  color: #3E7458;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.read-more:hover {
  color: #f12424;
  transform: translateX(5px);
}

/* ===== Responsive Adjustments ===== */

/* Tablets (601px - 992px) */
@media (max-width: 992px) {
  .section-header h2 {
    font-size: 32px;
  }
  
  .section-subtitle {
    font-size: 16px;
  }
  
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
  }
  
  .feature-card {
    padding: 30px 20px;
  }
  
  .blog-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
  }
}

/* Mobile (480px - 600px) */
@media (max-width: 600px) {
  .why-tulsi-section {
    padding: 40px 15px;
    margin: 20px 0;
  }
  
  .blog-section {
    padding: 40px 15px;
    margin: 20px 0;
  }
  
  .container {
    padding: 0 10px;
  }
  
  .section-header h2 {
    font-size: 26px;
    margin-bottom: 10px;
  }
  
  .section-subtitle {
    font-size: 14px;
  }
  
  .section-header {
    margin-bottom: 30px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .feature-card {
    padding: 25px 20px;
  }
  
  .feature-icon {
    font-size: 40px;
  }
  
  .feature-card h3 {
    font-size: 18px;
  }
  
  .feature-card p {
    font-size: 14px;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .blog-image {
    height: 180px;
  }
  
  .blog-content {
    padding: 20px;
  }
  
  .blog-card h3 {
    font-size: 18px;
  }
  
  .blog-card p {
    font-size: 13px;
  }
  
  .image-placeholder {
    font-size: 14px;
  }
}

/* Small Phones (Below 480px) */
@media (max-width: 480px) {
  .section-header h2 {
    font-size: 22px;
  }
  
  .section-subtitle {
    font-size: 12px;
  }
  
  .feature-card {
    padding: 20px 15px;
  }
  
  .feature-icon {
    font-size: 36px;
  }
  
  .feature-card h3 {
    font-size: 16px;
  }
  
  .blog-image {
    height: 150px;
  }
  
  .blog-card h3 {
    font-size: 16px;
  }
}

/* ===== Enhanced About Us Section ===== */
.about-section {
  padding: 20px 20px;
  /* background: linear-gradient(135deg, #f8f9fa 0%, #e8f0f7 100%); */
  overflow: hidden;
}

.about-header {
  text-align: center;
  display: contents;
  margin-bottom: 60px;
  margin-top: 20px;
  animation: slideInDown 0.8s ease;
}

.section-title {
  font-size: 42px;
  color: #3E7458;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 18px;
  color: #666;
  font-weight: 400;
}

.about-wrapper {
  animation: slideInUp 0.8s ease;
}

/* About Content Layout */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-heading {
  font-size: 24px;
  color: #000;
  font-weight: 700;
  margin-top: 15px;
  position: relative;
  padding-bottom: 15px;
}

.about-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 4px;
  background: #3E7458;
  border-radius: 2px;
}

.about-paragraph {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  text-align: justify;
}

/* About Image */
.about-image {
  position: relative;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(30, 132, 181, 0.15);
}

.image-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 12px;
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.image-container:hover .about-img {
  transform: scale(1.08);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 132, 181, 0.2), rgba(241, 36, 36, 0.1));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.image-container:hover .image-overlay {
  opacity: 1;
}

/* CTA Buttons */
.about-actions {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.cta-button {
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  display: inline-block;
  border: 2px solid;
  cursor: pointer;
}

.cta-button.primary {
  background-color: #3E7458;
  color: white;
  border-color: #3E7458;
}

.cta-button.primary:hover {
  /* background-color: #B5D57E;
  border-color: #B5D57E; */
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(50, 81, 28, 0.3);
}

.cta-button.secondary {
  background-color: transparent;
  color: #3E7458;
  border-color: #3E7458;
}

.cta-button.secondary:hover {
  background-color: #3E7458;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px  25px rgba(50, 81, 28, 0.3);
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  /* margin: 60px 0; */
  padding: 50px 0;
  /* border-top: 2px solid rgba(30, 132, 181, 0.1); */
  /* border-bottom: 2px solid rgba(30, 132, 181, 0.1); */
}

.stat-card {
  background: white;
  padding: 20px 15px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border-top: 4px solid #3E7458;
}

.stat-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(30, 132, 181, 0.2);
  border-top-color: #E37344;
}

.stat-icon {
  font-size: 42px;
  color: #3E7458;
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

.stat-card:hover .stat-icon {
  color: #E37344;
}

.stat-number {
  font-size: 38px;
  font-weight: 700;
  color: #3E7458;
  margin: 15px 0;
  font-variant-numeric: tabular-nums;
}

.stat-label {
  font-size: 15px;
  color: #666;
  font-weight: 600;
}

/* Values Section */
.values-section {
  margin-top: 80px;
}

.values-title {
  font-size: 36px;
  color: #3E7458;
  text-align: center;
  margin-bottom: 50px;
  font-weight: 700;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.value-card {
  background: white;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.value-card:hover {
  border-color: #3E7458;
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(30, 132, 181, 0.15);
}

.value-icon {
  font-size: 48px;
  color: #3E7458;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.value-card:hover .value-icon {
  color: #E37344;
  transform: scale(1.15);
}

.value-card h4 {
  font-size: 20px;
  color: #1b1b18;
  margin: 15px 0;
  font-weight: 700;
}

.value-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Animations */
@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Counter Animation */
@keyframes countUp {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-image {
    height: 350px;
  }
  
  .section-title {
    font-size: 36px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 50px 15px;
  }
  
  .about-header {
    margin-bottom: 40px;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .section-subtitle {
    font-size: 16px;
  }
  
  .about-heading {
    font-size: 20px;
  }
  
  .about-paragraph {
    font-size: 14px;
  }
  
  .about-image {
    height: 300px;
  }
  
  .about-actions {
    flex-direction: column;
    gap: 15px;
  }
  
  .cta-button {
    width: 100%;
    text-align: center;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    margin: 40px 0;
    padding: 30px 0;
    gap: 20px;
  }
  
  .stat-card {
    padding: 30px 20px;
  }
  
  .stat-icon {
    font-size: 36px;
  }
  
  .stat-number {
    font-size: 32px;
  }
  
  .values-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .value-card {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 30px 10px;
  }
  
  .section-title {
    font-size: 24px;
  }
  
  .section-subtitle {
    font-size: 13px;
  }
  
  .about-heading {
    font-size: 18px;
  }
  
  .about-paragraph {
    font-size: 13px;
  }
  
  .about-image {
    height: 250px;
    margin-bottom: 20px;
  }
  
  .stat-icon {
    font-size: 32px;
  }
  
  .stat-number {
    font-size: 28px;
  }
  
  .stat-label {
    font-size: 13px;
  }
  
  .value-icon {
    font-size: 40px;
  }
  
  .value-card h4 {
    font-size: 18px;
  }
  
  .cta-button {
    padding: 12px 24px;
    font-size: 14px;
  }
}

/* Hero Banner */
.page-hero {
    background: linear-gradient(135deg, #3E7458 0%, #2a5240 100%);
    padding: 80px 20px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* .page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,133.3C672,139,768,181,864,186.7C960,192,1056,160,1152,144C1248,128,1344,128,1392,128L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
} */

.page-hero h1 {
    font-size: 48px;
    color: white;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    animation: fadeInDown 0.8s ease;
}

.page-hero p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease 0.2s both;
}

/* Simple Mission Vision Section */
.simple-mv-section {
    padding: 60px 20px 10px;
    background: white;
}

.mv-simple-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.mv-simple-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 40px 30px;
    border-radius: 12px;
    border-left: 5px solid #3E7458;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    text-align: center;
}

.mv-simple-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(62, 116, 88, 0.15);
    border-left-color: #E37344;
}

.mv-simple-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3E7458, #2a5240);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 40px;
    transition: all 0.4s ease;
}

.mv-simple-card:hover .mv-simple-icon {
    background: linear-gradient(135deg, #E37344, #c55a2d);
    transform: scale(1.1) rotate(360deg);
}

.mv-simple-card h3 {
    font-size: 26px;
    color: #3E7458;
    margin-bottom: 15px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.mv-simple-card:hover h3 {
    color: #E37344;
}

.mv-simple-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .mv-simple-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .mv-simple-card {
        padding: 30px 20px;
    }
    
    .mv-simple-card h3 {
        font-size: 22px;
    }
}

/* Mission Vision Container */
.mission-vision-container {
    max-width: 1400px;
    margin: -40px auto 80px;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.mv-card {
    background: white;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #3E7458, #E37344);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.mv-card:hover::before {
    transform: scaleX(1);
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(62, 116, 88, 0.2);
}

.mv-icon-wrapper {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #3E7458, #2a5240);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    position: relative;
    transition: all 0.4s ease;
}

.mv-card:hover .mv-icon-wrapper {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, #E37344, #c55a2d);
}

.mv-icon-wrapper i {
    font-size: 48px;
    color: white;
}

.mv-card h2 {
    font-size: 36px;
    color: #3E7458;
    text-align: center;
    margin-bottom: 25px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.mv-card:hover h2 {
    color: #E37344;
}

.mv-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUpStagger 0.6s ease forwards;
}

.mv-content p:nth-child(1) { animation-delay: 0.1s; }
.mv-content p:nth-child(2) { animation-delay: 0.2s; }
.mv-content p:nth-child(3) { animation-delay: 0.3s; }

.mv-card.in-view .mv-content p {
    opacity: 1;
    transform: translateY(0);
}

/* Core Values Section */
.core-values-section {
    /* background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); */
    padding: 80px 20px;
    /* margin-top: 60px; */
}

.section-title {
    text-align: center;
    font-size: 42px;
    color: #3E7458;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3E7458, #E37344);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.value-item {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.9);
}

.value-item.animate {
    opacity: 1;
    transform: scale(1);
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(62, 116, 88, 0.1), transparent);
    transition: left 0.6s ease;
}

.value-item:hover::before {
    left: 100%;
}

.value-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(62, 116, 88, 0.2);
    border: 2px solid #3E7458;
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3e745820, #e3734420);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

.value-item:hover .value-icon {
    transform: rotateY(360deg);
    background: linear-gradient(135deg, #3E7458, #E37344);
}

.value-icon i {
    font-size: 40px;
    color: #3E7458;
    transition: color 0.4s ease;
}

.value-item:hover .value-icon i {
    color: white;
}

.value-item h3 {
    font-size: 22px;
    color: #1b1b18;
    margin-bottom: 15px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.value-item:hover h3 {
    color: #3E7458;
}

.value-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

/* Goals Section */
.goals-section {
    max-width: 1400px;
    /* margin: 80px auto; */
    padding: 20px 20px;
}

.goals-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.goals-visual {
    position: relative;
}

.goals-image {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    position: relative;
}

.goals-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.goals-image:hover img {
    transform: scale(1.1);
}

.floating-badge {
    position: absolute;
    background: white;
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: float 3s ease-in-out infinite;
}

.badge-1 {
    top: 20px;
    right: -20px;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 40px;
    left: -20px;
    animation-delay: 1.5s;
}

.floating-badge i {
    font-size: 30px;
    color: #3E7458;
    margin-bottom: 10px;
    display: block;
}

.floating-badge span {
    font-size: 14px;
    color: #666;
    font-weight: 600;
}

.goals-content h2 {
    font-size: 40px;
    color: #3E7458;
    margin-bottom: 25px;
    font-weight: 700;
}

.goal-list {
    list-style: none;
    padding: 0;
}

.goal-list li {
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.5s ease;
}

.goal-list li.animate {
    opacity: 1;
    transform: translateX(0);
}

.goal-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3E7458, #2a5240);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.goal-list li:hover .goal-number {
    background: linear-gradient(135deg, #E37344, #c55a2d);
    transform: scale(1.15) rotate(360deg);
}

.goal-text {
    flex: 1;
}

.goal-text h4 {
    font-size: 20px;
    color: #1b1b18;
    margin-bottom: 8px;
    font-weight: 600;
}

.goal-text p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUpStagger {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .mv-grid {
        grid-template-columns: 1fr;
    }
    
    .goals-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .floating-badge {
        position: relative;
        display: inline-block;
        margin: 10px;
    }
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 36px;
    }
    
    .page-hero p {
        font-size: 16px;
    }
    
    .mv-card {
        padding: 35px 25px;
    }
    
    .mv-card h2 {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .goals-content h2 {
        font-size: 30px;
    }
    
    .goals-image {
        height: 350px;
    }
}


/* history of the school section  */

/* Hero Banner */
.history-hero {
    background: linear-gradient(135deg, #3E7458 0%, #2a5240 100%);
    padding: 80px 20px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.history-hero h1 {
    font-size: 48px;
    color: white;
    font-weight: 700;
    margin-bottom: 15px;
    animation: fadeInDown 0.8s ease;
}

.history-hero p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 0.8s ease 0.2s both;
}

/* About History Section */
.history-intro {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}



.history-intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.history-intro-text h2 {
    font-size: 38px;
    color: #3E7458;
    margin-bottom: 20px;
    font-weight: 700;
}

.history-intro-text .history-leg{
  color: #3E7458;
  font-size: 18px;
  font-weight: 600;
}

.history-intro-text p {
    font-size: 16px;
    color: #555;
    line-height: 1.9;
    margin-bottom: 15px;
}

.founding-badge {
    display: inline-block;
    background: linear-gradient(135deg, #3E7458, #2a5240);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    margin-top: 20px;
}

.history-intro-image {
    position: relative;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.history-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.history-intro-image:hover img {
    transform: scale(1.05);
}

/* Timeline Section */
.timeline-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 40px;
    color: #3E7458;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3E7458, #E37344);
    border-radius: 2px;
}

.timeline {
    position: relative;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #3E7458, #E37344, #3E7458);
}

.timeline-item {
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 0;
    margin-right: 50%;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 50%;
    margin-right: 0;
    text-align: left;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: white;
    border: 4px solid #3E7458;
    border-radius: 50%;
    top: 20px;
    z-index: 10;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-marker {
    background: #3E7458;
    box-shadow: 0 0 0 10px rgba(62, 116, 88, 0.2);
    transform: translateX(-50%) scale(1.2);
}

.timeline-content {
    background: white;
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.timeline-content:hover {
    box-shadow: 0 15px 40px rgba(62, 116, 88, 0.2);
    transform: translateY(-5px);
}

.timeline-year {
    font-size: 24px;
    font-weight: 700;
    color: #3E7458;
    margin-bottom: 10px;
}

.timeline-title {
    font-size: 18px;
    font-weight: 600;
    color: #1b1b18;
    margin-bottom: 10px;
}

.timeline-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Key Milestones */
.milestones-section {
    /* background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); */
    padding: 80px 20px;
    margin: 80px 0;
}

.milestones-container {
    max-width: 1200px;
    margin: 0 auto;
}

.milestones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.milestone-card {
    background: white;
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border-top: 4px solid #3E7458;
    position: relative;
    overflow: hidden;
}

.milestone-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(62, 116, 88, 0.1), transparent);
    transition: width 0.6s ease;
}

.milestone-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 40px rgba(62, 116, 88, 0.2);
    border-top-color: #E37344;
}

.milestone-card:hover::before {
    width: 100%;
}

.milestone-number {
    font-size: 48px;
    font-weight: 700;
    color: #3E7458;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.milestone-card:hover .milestone-number {
    color: #E37344;
}

.milestone-label {
    font-size: 18px;
    font-weight: 600;
    color: #1b1b18;
    margin-bottom: 10px;
}

.milestone-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Gallery Section */
.history-gallery {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(62, 116, 88, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-overlay-content {
    text-align: center;
    color: white;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay-content {
    opacity: 1;
    transform: scale(1);
}

.gallery-overlay-content i {
    font-size: 40px;
    margin-bottom: 15px;
    display: block;
}

.gallery-overlay-content p {
    font-size: 16px;
    font-weight: 600;
}

/* Achievements Section */
.achievements-section {
    background: linear-gradient(135deg, #3E7458 0%, #2a5240 100%);
    color: white;
    padding: 80px 20px;
    margin-top: 80px;
}

/* .achievements-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
} */

.achievements-title {
    font-size: 40px;
    margin-bottom: 50px;
    font-weight: 700;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.achievement-stat {
    background: rgba(255, 255, 255, 0.1);
    padding: 35px 25px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.achievement-stat:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.achievement-stat-number {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.achievement-stat-label {
    font-size: 16px;
    font-weight: 600;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    .history-intro-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 80px;
        margin-right: 0;
        text-align: left;
    }
    
    .timeline-marker {
        left: 20px;
    }
}

@media (max-width: 768px) {
    .history-hero h1 {
        font-size: 32px;
    }
    
    .history-intro-text h2 {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .achievements-section{
      padding: 20px 10px;
    }
    .achievements-container{
      padding: 0;
    }
    
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* chairmans section  */

/* Hero Section */
.chairman-hero {
    background: linear-gradient(135deg, #3E7458 0%, #2a5240 100%);
    padding: 80px 20px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.chairman-hero h1 {
    font-size: 48px;
    color: white;
    font-weight: 700;
    margin-bottom: 15px;
    animation: fadeInDown 0.8s ease;
}

.chairman-hero p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 0.8s ease 0.2s both;
}

/* Message Section */
.chairman-message-section {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 20px;
}

.message-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.chairman-image {
    position: relative;
}

.chairman-photo {
    width: 100%;
    max-width: 450px;
    height: 550px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    transition: transform 0.6s ease;
}

.chairman-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.chairman-photo:hover img {
    transform: scale(1.05);
}

.photo-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: white;
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: slideInLeft 0.8s ease 0.4s both;
}

.photo-badge h4 {
    font-size: 16px;
    font-weight: 700;
    color: #3E7458;
    margin: 0;
}

.photo-badge p {
    font-size: 13px;
    color: #666;
    margin: 5px 0 0;
}

.message-content h2 {
    font-size: 42px;
    color: #3E7458;
    margin-bottom: 30px;
    font-weight: 700;
    line-height: 1.3;
}

.message-content p {
    font-size: 16px;
    color: #555;
    line-height: 2;
    margin-bottom: 20px;
    text-align: justify;
    transition: all 0.3s ease;
}

.message-content p:first-of-type {
    font-weight: 600;
    font-size: 17px;
    color: #3E7458;
}

.chairman-signature {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e0e0e0;
}

.signature-image {
    width: 120px;
    height: 50px;
    margin-bottom: 15px;
}

.signature-warm {
    font-size: 20px;
    font-weight: 700;
    color: #1b1b18;
    margin-bottom: 5px;
}
.signature-name {
    font-size: 18px;
    font-weight: 600;
    color: #1b1b18;
    margin-bottom: 5px;
}

.signature-title {
    font-size: 14px;
    color: #666;
    font-weight: 600;
}

/* Key Points Section */
.key-points-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 20px;
    margin-top: 80px;
}

.key-points-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 40px;
    color: #3E7458;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3E7458, #E37344);
    border-radius: 2px;
}

.key-points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.key-point-card {
    background: white;
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border-left: 5px solid #3E7458;
    position: relative;
    overflow: hidden;
}

.key-point-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(62, 116, 88, 0.1), transparent);
    transition: width 0.6s ease;
}

.key-point-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(62, 116, 88, 0.2);
    border-left-color: #E37344;
}

.key-point-card:hover::before {
    width: 100%;
}

.key-point-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #3E7458, #2a5240);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.key-point-card:hover .key-point-icon {
    background: linear-gradient(135deg, #E37344, #c55a2d);
    transform: scale(1.15) rotate(360deg);
}

.key-point-title {
    font-size: 20px;
    color: #1b1b18;
    font-weight: 700;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.key-point-card:hover .key-point-title {
    color: #3E7458;
}

.key-point-description {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

/* Vision Quote Section */
.vision-quote-section {
    background: linear-gradient(135deg, #3E7458 0%, #2a5240 100%);
    padding: 80px 20px;
    text-align: center;
    margin: 80px 0;
    position: relative;
    overflow: hidden;
}

.vision-quote-section::before {
    content: '"';
    position: absolute;
    font-size: 200px;
    color: rgba(255, 255, 255, 0.1);
    top: -40px;
    left: 20px;
    font-family: Georgia, serif;
}

.quote-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.quote-text {
    font-size: 32px;
    color: white;
    font-style: italic;
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 1.8;
}

.quote-author {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

/* Commitments Section */
.commitments-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.commitments-heading {
    text-align: center;
    font-size: 38px;
    color: #3E7458;
    margin-bottom: 50px;
    font-weight: 700;
}

.commitments-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.commitment-item {
    display: flex;
    gap: 20px;
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInRight 0.6s ease forwards;
}

.commitment-item:nth-child(1) { animation-delay: 0.1s; }
.commitment-item:nth-child(2) { animation-delay: 0.2s; }
.commitment-item:nth-child(3) { animation-delay: 0.3s; }
.commitment-item:nth-child(4) { animation-delay: 0.4s; }
.commitment-item:nth-child(5) { animation-delay: 0.5s; }
.commitment-item:nth-child(6) { animation-delay: 0.6s; }

.commitment-number {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #3E7458, #2a5240);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    transition: all 0.3s ease;
    font-size: 18px;
}

.commitment-item:hover .commitment-number {
    background: linear-gradient(135deg, #E37344, #c55a2d);
    transform: scale(1.2) rotate(360deg);
}

.commitment-text {
    flex: 1;
}

.commitment-text h4 {
    font-size: 18px;
    color: #1b1b18;
    font-weight: 700;
    margin-bottom: 8px;
}

.commitment-text p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Call to Action */
.cta-section {
    /* background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 20px;
    text-align: center;
    margin-top: 80px; */
    /* border-radius: 20px; */
}

.cta-text {
    font-size: 24px;
    color: #3E7458;
    font-weight: 700;
    margin-bottom: 25px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 14px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-btn-primary {
    background: linear-gradient(135deg, #3E7458, #2a5240);
    color: white;
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(62, 116, 88, 0.3);
}
.cta-btn-primary a{
    /* background: linear-gradient(135deg, #3E7458, #2a5240); */
    color: #3E7458;
}


.cta-btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.cta-btn-secondary:hover {
    background: #3E7458;
    color: #fff;
    transform: translateY(-3px);
}
.cta-btn-secondary a{
    color: #fff;
    /* border: 2px solid #fff; */
}

.cta-btn-secondary a:hover {
    color: #fff;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .message-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .commitments-list {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .chairman-hero h1 {
        font-size: 32px;
    }
    
    .message-content h2 {
        font-size: 28px;
    }
    
    .quote-text {
        font-size: 24px;
    }
    
    .commitments-heading {
        font-size: 28px;
    }
    
    .key-points-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-btn {
        width: 100%;
    }
}


/* directors message section  */

/* Hero Section */
.director-hero {
    background: linear-gradient(135deg, #3E7458 0%, #2a5240 100%);
    padding: 80px 20px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.director-hero h1 {
    font-size: 48px;
    color: white;
    font-weight: 700;
    margin-bottom: 15px;
    animation: fadeInDown 0.8s ease;
}

.director-hero p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 0.8s ease 0.2s both;
}

/* Message Section */
.director-message-section {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 20px;
}

.message-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.director-image {
    position: relative;
}

.director-photo {
    width: 100%;
    max-width: 450px;
    height: 550px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    transition: transform 0.6s ease;
}

.director-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.director-photo:hover img {
    transform: scale(1.05);
}

.photo-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: white;
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: slideInLeft 0.8s ease 0.4s both;
}

.photo-badge h4 {
    font-size: 16px;
    font-weight: 700;
    color: #3E7458;
    margin: 0;
}

.photo-badge p {
    font-size: 13px;
    color: #666;
    margin: 5px 0 0;
}

.message-content h2 {
    font-size: 42px;
    color: #3E7458;
    margin-bottom: 30px;
    font-weight: 700;
    line-height: 1.3;
}

.message-content p {
    font-size: 16px;
    color: #555;
    line-height: 2;
    margin-bottom: 20px;
    text-align: justify;
    transition: all 0.3s ease;
}

.message-content p:first-of-type {
    font-weight: 600;
    font-size: 17px;
    color: #3E7458;
}

.director-signature {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e0e0e0;
}

.signature-name {
    font-size: 18px;
    font-weight: 600;
    color: #1b1b18;
    margin-bottom: 5px;
}

.signature-title {
    font-size: 14px;
    color: #666;
    font-weight: 600;
}

/* Key Points Section */
.key-points-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 20px;
    margin-top: 80px;
}

.key-points-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 40px;
    color: #3E7458;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #1e8449, #3E7458);
    border-radius: 2px;
}

.key-points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.key-point-card {
    background: white;
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border-left: 5px solid #3E7458;
    position: relative;
    overflow: hidden;
}

.key-point-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(30, 132, 73, 0.1), transparent);
    transition: width 0.6s ease;
}

.key-point-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(30, 132, 73, 0.2);
    border-left-color: #3E7458;
}

.key-point-card:hover::before {
    width: 100%;
}

.key-point-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #1e8449, #3E7458);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.key-point-card:hover .key-point-icon {
    background: linear-gradient(135deg, #3E7458, #3E7458);
    transform: scale(1.15) rotate(360deg);
}

.key-point-title {
    font-size: 20px;
    color: #1b1b18;
    font-weight: 700;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.key-point-card:hover .key-point-title {
    color: #3E7458;
}

.key-point-description {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

/* Vision Quote Section */
.vision-quote-section {
    background: linear-gradient(135deg, #1e8449 0%, #3E7458 100%);
    padding: 80px 20px;
    text-align: center;
    margin: 80px 0;
    position: relative;
    overflow: hidden;
}

.vision-quote-section::before {
    content: '"';
    position: absolute;
    font-size: 200px;
    color: rgba(255, 255, 255, 0.1);
    top: -40px;
    left: 20px;
    font-family: Georgia, serif;
}

.quote-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.quote-text {
    font-size: 32px;
    color: white;
    font-style: italic;
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 1.8;
}

.quote-author {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

/* Priorities Section */
.priorities-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.priorities-heading {
    text-align: center;
    font-size: 38px;
    color: #1e8449;
    margin-bottom: 50px;
    font-weight: 700;
}

.priorities-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.priority-item {
    display: flex;
    gap: 20px;
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInRight 0.6s ease forwards;
}

.priority-item:nth-child(1) { animation-delay: 0.1s; }
.priority-item:nth-child(2) { animation-delay: 0.2s; }
.priority-item:nth-child(3) { animation-delay: 0.3s; }
.priority-item:nth-child(4) { animation-delay: 0.4s; }
.priority-item:nth-child(5) { animation-delay: 0.5s; }
.priority-item:nth-child(6) { animation-delay: 0.6s; }

.priority-number {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #1e8449, #145a32);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    transition: all 0.3s ease;
    font-size: 18px;
}

.priority-item:hover .priority-number {
    background: linear-gradient(135deg, #3E7458, #3E7458);
    transform: scale(1.2) rotate(360deg);
}

.priority-text {
    flex: 1;
}

.priority-text h4 {
    font-size: 18px;
    color: #1b1b18;
    font-weight: 700;
    margin-bottom: 8px;
}

.priority-text p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Call to Action */
.cta-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 20px;
    text-align: center;
    margin-top: 80px;
    /* border-radius: 20px; */
}

.cta-text {
    font-size: 24px;
    color: #3E7458;
    font-weight: 700;
    margin-bottom: 25px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 14px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-btn-primary {
    background: linear-gradient(135deg, #1e8449, #3E7458);
    color: white;
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(30, 132, 73, 0.3);
}

/* .cta-btn-secondary {
    background: white;
    color: #3E7458;
    border: 2px solid #3E7458;
}

.cta-btn-secondary:hover {
    background: #3E7458;
    color: white;
    transform: translateY(-3px);
} */

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .message-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .priorities-list {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .director-hero h1 {
        font-size: 32px;
    }
    
    .message-content h2 {
        font-size: 28px;
    }
    
    .quote-text {
        font-size: 24px;
    }
    
    .priorities-heading {
        font-size: 28px;
    }
    
    .key-points-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-btn {
        width: 100%;
    }
}


/* principal message section  */

/* Hero Section */
.principal-hero {
    background: linear-gradient(135deg, #3E7458 0%, #3E7458 100%);
    padding: 80px 20px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.principal-hero h1 {
    font-size: 48px;
    color: white;
    font-weight: 700;
    margin-bottom: 15px;
    animation: fadeInDown 0.8s ease;
}

.principal-hero p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 0.8s ease 0.2s both;
}

/* Message Section */
.principal-message-section {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 20px;
}

.message-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.principal-image {
    position: relative;
}

.principal-photo {
    width: 100%;
    max-width: 450px;
    height: 550px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    transition: transform 0.6s ease;
}

.principal-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.principal-photo:hover img {
    transform: scale(1.05);
}

.photo-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: white;
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: slideInLeft 0.8s ease 0.4s both;
}

.photo-badge h4 {
    font-size: 16px;
    font-weight: 700;
    color: #3E7458;
    margin: 0;
}

.photo-badge p {
    font-size: 13px;
    color: #666;
    margin: 5px 0 0;
}

.message-content h2 {
    font-size: 42px;
    color: #3E7458;
    margin-bottom: 30px;
    font-weight: 700;
    line-height: 1.3;
}

.message-content p {
    font-size: 16px;
    color: #555;
    line-height: 2;
    margin-bottom: 20px;
    text-align: justify;
    transition: all 0.3s ease;
}

.message-content p:first-of-type {
    font-weight: 600;
    font-size: 17px;
    color: #3E7458;
}

.principal-signature {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e0e0e0;
}

.signature-name {
    font-size: 18px;
    font-weight: 600;
    color: #1b1b18;
    margin-bottom: 5px;
}

.signature-title {
    font-size: 14px;
    color: #666;
    font-weight: 600;
}

/* Key Points Section */
.key-points-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 20px;
    margin-top: 80px;
}

.key-points-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 40px;
    color: #3E7458;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3E7458, #3E7458);
    border-radius: 2px;
}

.key-points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.key-point-card {
    background: white;
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border-left: 5px solid #3E7458;
    position: relative;
    overflow: hidden;
}

.key-point-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(62, 116, 88, 0.1), transparent);
    transition: width 0.6s ease;
}

.key-point-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(139, 69, 19, 0.2);
    border-left-color: #E37344;
}

.key-point-card:hover::before {
    width: 100%;
}

.key-point-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #3E7458, #3E7458);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.key-point-card:hover .key-point-icon {
    background: linear-gradient(135deg, #E37344, #E37344);
    transform: scale(1.15) rotate(360deg);
}

.key-point-title {
    font-size: 20px;
    color: #1b1b18;
    font-weight: 700;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.key-point-card:hover .key-point-title {
    color: #3E7458;
}

.key-point-description {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

/* Vision Quote Section */
.vision-quote-section {
    background: linear-gradient(135deg, #3E7458 0%, #3E7458 100%);
    padding: 80px 20px;
    text-align: center;
    margin: 80px 0;
    position: relative;
    overflow: hidden;
}

.vision-quote-section::before {
    content: '"';
    position: absolute;
    font-size: 200px;
    color: rgba(255, 255, 255, 0.1);
    top: -40px;
    left: 20px;
    font-family: Georgia, serif;
}

.quote-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.quote-text {
    font-size: 32px;
    color: white;
    font-style: italic;
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 1.8;
}

.quote-author {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

/* School Focus Section */
.school-focus-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.school-focus-heading {
    text-align: center;
    font-size: 38px;
    color: #3E7458;
    margin-bottom: 50px;
    font-weight: 700;
}

.focus-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.focus-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInRight 0.6s ease forwards;
}

.focus-item:nth-child(1) { animation-delay: 0.1s; }
.focus-item:nth-child(2) { animation-delay: 0.2s; }
.focus-item:nth-child(3) { animation-delay: 0.3s; }
.focus-item:nth-child(4) { animation-delay: 0.4s; }
.focus-item:nth-child(5) { animation-delay: 0.5s; }
.focus-item:nth-child(6) { animation-delay: 0.6s; }

.focus-number {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #3E7458, #3E7458);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    transition: all 0.3s ease;
    font-size: 18px;
}

.focus-item:hover .focus-number {
    background: linear-gradient(135deg, #E37344, #E37344);
    transform: scale(1.2) rotate(360deg);
}

.focus-text {
    flex: 1;
}

.focus-text h4 {
    font-size: 18px;
    color: #1b1b18;
    font-weight: 700;
    margin-bottom: 8px;
}

.focus-text p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Call to Action */
.cta-section {
    background: linear-gradient(135deg, #3E7458 0%, #2c5a42 100%);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
    margin-top: 80px;
}

.cta-text {
    font-size: 24px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 25px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 14px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-btn-primary {
    background: white;
    color: #3E7458;
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* .cta-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-btn-secondary:hover {
    background: white;
    color: #3E7458;
    transform: translateY(-3px);
} */

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .message-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .focus-list {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .principal-hero h1 {
        font-size: 32px;
    }
    
    .message-content h2 {
        font-size: 28px;
    }
    
    .quote-text {
        font-size: 24px;
    }
    
    .school-focus-heading {
        font-size: 28px;
    }
    
    .key-points-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-btn {
        width: 100%;
    }
}

/* infrastructure section   */

/* Hero Section */
.infrastructure-hero {
    background: linear-gradient(135deg, #3E7458 0%, #3E7458 100%);
    padding: 80px 20px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.infrastructure-hero h1 {
    font-size: 48px;
    color: white;
    font-weight: 700;
    margin-bottom: 15px;
    animation: fadeInDown 0.8s ease;
}

.infrastructure-hero p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 0.8s ease 0.2s both;
}

/* Overview Section */
.infrastructure-overview {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.overview-text h2 {
    font-size: 38px;
    color: #3E7458;
    margin-bottom: 20px;
    font-weight: 700;
}

.overview-text p {
    font-size: 16px;
    color: #555;
    line-height: 1.9;
    margin-bottom: 15px;
    text-align: justify;
}

.overview-image {
    position: relative;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.overview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.overview-image:hover img {
    transform: scale(1.05);
}

/* Facilities Section */
.facilities-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 20px;
    margin: 60px 0;
}

.facilities-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 40px;
    color: #3E7458;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3E7458, #2c5a42);
    border-radius: 2px;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.facility-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
}

.facility-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.facility-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.facility-card:hover .facility-image img {
    transform: scale(1.15);
}

.facility-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #3E7458, #2c5a42);
    color: white;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
}

.facility-content {
    padding: 30px;
    position: relative;
}

.facility-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3E7458, #2c5a42);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    margin-bottom: 15px;
    transition: all 0.4s ease;
}

.facility-card:hover .facility-icon {
    background: linear-gradient(135deg, #3E7458, #2c5a42);
    transform: scale(1.1) rotate(-360deg);
}

.facility-title {
    font-size: 22px;
    color: #1b1b18;
    font-weight: 700;
    margin-bottom: 10px;
}

.facility-description {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.facility-features {
    font-size: 13px;
    color: #3E7458;
    font-weight: 600;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-tag {
    background: rgba(62, 116, 88, 0.2);
    padding: 5px 10px;
    border-radius: 20px;
}

.facility-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(62, 116, 88, 0.2);
}

/* Amenities Section */
.amenities-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.amenities-title {
    text-align: center;
    font-size: 38px;
    color: #3E7458;
    margin-bottom: 50px;
    font-weight: 700;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.amenity-item {
    background: white;
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border-top: 4px solid #3E7458;
    position: relative;
    overflow: hidden;
}

.amenity-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(62, 116, 88, 0.1), transparent);
    transition: width 0.6s ease;
}

.amenity-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-top-color: #3E7458;
}

.amenity-item:hover::before {
    width: 100%;
}

.amenity-icon {
    font-size: 48px;
    color: #3E7458;
    margin-bottom: 15px;
    transition: all 0.4s ease;
}

.amenity-item:hover .amenity-icon {
    color: #3E7458;
    transform: scale(1.2);
}

.amenity-name {
    font-size: 18px;
    font-weight: 700;
    color: #1b1b18;
    margin-bottom: 8px;
}

.amenity-description {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

/* Technology Section */
.technology-section {
    background: linear-gradient(135deg, #3E7458 0%, #2c5a42 100%);
    color: white;
    padding: 80px 20px;
    margin: 80px 0;
}

.technology-container {
    max-width: 1200px;
    margin: 0 auto;
}

.technology-heading {
    text-align: center;
    font-size: 40px;
    margin-bottom: 50px;
    font-weight: 700;
}

.technology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.tech-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 35px 30px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    position: relative;
}

.tech-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.tech-icon {
    font-size: 42px;
    margin-bottom: 20px;
    display: block;
    transition: all 0.4s ease;
}

.tech-card:hover .tech-icon {
    transform: scale(1.2) rotate(360deg);
}

.tech-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.tech-description {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.95;
}

/* Features Showcase */
.features-showcase {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 20px;
}

.showcase-title {
    text-align: center;
    font-size: 38px;
    color: #3E7458;
    margin-bottom: 50px;
    font-weight: 700;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.showcase-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    padding: 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.showcase-item:hover {
    box-shadow: 0 15px 40px rgba(41, 128, 185, 0.15);
    transform: translateY(-5px);
}

.showcase-item:nth-child(even) {
    grid-template-columns: 1fr 1fr;
}

.showcase-item:nth-child(even) .showcase-text {
    order: 2;
}

.showcase-item:nth-child(even) .showcase-image {
    order: 1;
}

.showcase-image {
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
}

.showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.showcase-item:hover .showcase-image img {
    transform: scale(1.1);
}

.showcase-text h3 {
    font-size: 26px;
    color: #3E7458;
    margin-bottom: 15px;
    font-weight: 700;
}

.showcase-text p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.showcase-checkpoints {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkpoint {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 14px;
    color: #555;
}

.checkpoint i {
    color: #3E7458;
    font-weight: 700;
    width: 20px;
    flex-shrink: 0;
}

/* Stats Section */
.infrastructure-stats {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 20px;
    margin: 80px 0;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-card {
    background: white;
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border-left: 5px solid #3E7458;
}

.stat-card:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-left-color: #E37344;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: #3E7458;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #1b1b18;
    font-weight: 600;
}

/* CTA Section */
.infrastructure-cta {
    background: linear-gradient(135deg, #3E7458 0%, #2c5a42 100%);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
    /* border-radius: 20px; */
    margin-top: 80px;
}

.cta-text {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #fff;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 14px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-btn-primary {
    background: white;
    color: #3E7458;
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* .cta-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-btn-secondary:hover {
    background: white;
    color: #3E7458;
    transform: translateY(-3px);
} */

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .overview-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .showcase-item {
        grid-template-columns: 1fr !important;
    }
    
    .showcase-item:nth-child(even) .showcase-text {
        order: 1 !important;
    }
    
    .showcase-item:nth-child(even) .showcase-image {
        order: 2 !important;
    }
}

@media (max-width: 768px) {
    .infrastructure-hero h1 {
        font-size: 32px;
    }
    
    .overview-text h2 {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .showcase-title {
        font-size: 28px;
    }
    
    .showcase-item {
        padding: 20px;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-btn {
        width: 100%;
    }
}

/* eligibility */

/* Hero Section */
.eligibility-hero {
    background: linear-gradient(135deg, #3E7458 0%, #2c5a42 100%);
    padding: 80px 20px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.eligibility-hero h1 {
    font-size: 48px;
    color: white;
    font-weight: 700;
    margin-bottom: 15px;
    animation: fadeInDown 0.8s ease;
}

.eligibility-hero p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 0.8s ease 0.2s both;
}

/* Section Styles */
.eligibility-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.section-title {
    font-size: 40px;
    color: #3E7458;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3E7458, #9b59b6);
    border-radius: 2px;
}

/* Age Requirements Grid */
.age-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.age-card {
    background: white;
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-top: 5px solid #3E7458;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.age-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(62, 116, 88, 0.1), transparent);
    transition: width 0.6s ease;
}

.age-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(27, 66, 24, 0.2);
    border-top-color: #2c5a42;
}

.age-card:hover::before {
    width: 100%;
}

.age-icon {
    font-size: 42px;
    color: #3E7458;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.age-card:hover .age-icon {
    transform: scale(1.2) rotate(10deg);
}

.age-class {
    font-size: 22px;
    font-weight: 700;
    color: #1b1b18;
    margin-bottom: 15px;
}

.age-info {
    font-size: 16px;
    color: #3E7458;
    font-weight: 600;
    margin-bottom: 10px;
}

.age-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Criteria Sections */
.criteria-block {
    /* background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); */
    padding: 60px 20px;
    /* margin: 60px 0; */
    border-radius: 15px;
}

.criteria-content {
    max-width: 1200px;
    margin: 0 auto;
}

.criteria-title {
    font-size: 32px;
    color: #3E7458;
    font-weight: 700;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 20px;
}

.criteria-title::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3E7458, #E37344);
    border-radius: 2px;
    /* content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #3E7458, #2c5a42);
    border-radius: 2px; */
}

.criteria-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.criteria-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border-left: 5px solid #3E7458;
}

.criteria-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(62, 116, 88, 0.15);
    border-left-color: #2c5a42;
}

.criteria-item-title {
    font-size: 18px;
    font-weight: 700;
    color: #1b1b18;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.criteria-item-title i {
    color: #3E7458;
    font-size: 22px;
}

.criteria-item-description {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}

/* Requirements List */
.requirements-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.requirements-list li {
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 15px;
    color: #555;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.requirements-list li:last-child {
    border-bottom: none;
}

.requirements-list li::before {
    content: '✓';
    color: #3E7458;
    font-weight: 700;
    font-size: 18px;
    min-width: 25px;
}

/* Important Notice */
.important-notice {
    /* background: linear-gradient(135deg, rgba(62, 116, 88, 0.1), rgba(44, 90, 66, 0.05)); */
    border-left: 5px solid #3E7458;
    padding: 30px;
    margin: 40px 0;
    border-radius: 10px;
}

.notice-title {
    font-size: 18px;
    font-weight: 700;
    color: #3E7458;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.notice-title i {
    font-size: 24px;
}

.notice-content {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
}

/* Comparison Table */
.table-container {
    overflow-x: auto;
    margin: 40px 0;
}

.eligibility-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.eligibility-table th {
    background: linear-gradient(135deg, #3E7458, #2c5a42);
    color: white;
    padding: 20px;
    font-weight: 700;
    text-align: left;
    font-size: 15px;
}

.eligibility-table td {
    padding: 18px 20px;
    border-bottom: 1px solid #e0e0e0;
    font-size: 14px;
    color: #555;
}

.eligibility-table tr:hover {
    background: rgba(62, 116, 88, 0.05);
}

.eligibility-table tr:last-child td {
    border-bottom: none;
}

/* FAQ Section */
.faq-section {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 20px;
}

.faq-title {
    text-align: center;
    font-size: 38px;
    color: #3E7458;
    margin-bottom: 50px;
    font-weight: 700;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(62, 116, 88, 0.15);
}

.faq-question {
    padding: 25px 30px;
    font-size: 18px;
    font-weight: 700;
    color: #1b1b18;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #3E7458;
}

.faq-icon {
    font-size: 20px;
    color: #3E7458;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 30px 25px;
    font-size: 15px;
    color: #555;
    line-height: 1.8;
}

/* CTA Section */
.eligibility-cta {
    background: linear-gradient(135deg, #3E7458 0%, #2c5a42 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
    /* border-radius: 20px; */
    margin-top: 80px;
}

.cta-text {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
}

.cta-subtext {
    font-size: 16px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 14px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-btn-primary {
    background: white;
    color: #3E7458;
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* .cta-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-btn-secondary:hover {
    background: white;
    color: #3E7458;
    transform: translateY(-3px);
} */

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .eligibility-hero h1 {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .criteria-title {
        font-size: 24px;
    }
    
    .age-grid {
        grid-template-columns: 1fr;
    }
    
    .criteria-items-grid {
        grid-template-columns: 1fr;
    }
    
    .table-container {
        font-size: 12px;
    }
    
    .eligibility-table th,
    .eligibility-table td {
        padding: 12px 10px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-btn {
        width: 100%;
    }
}

/* admission process  */

/* Hero Section */
.admission-hero {
    background: linear-gradient(135deg, #3E7458 0%, #2c5a42 100%);
    padding: 80px 20px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.admission-hero h1 {
    font-size: 48px;
    color: white;
    font-weight: 700;
    margin-bottom: 15px;
    animation: fadeInDown 0.8s ease;
}

.admission-hero p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 0.8s ease 0.2s both;
}

/* Overview Section */
.admission-overview {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.overview-text h2 {
    font-size: 38px;
    color: #3E7458;
    margin-bottom: 20px;
    font-weight: 700;
}

.overview-text p {
    font-size: 16px;
    color: #555;
    line-height: 1.9;
    margin-bottom: 15px;
    text-align: justify;
}

.overview-highlights {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
}

.highlight-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    padding: 15px;
    background: rgba(142, 68, 173, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(142, 68, 173, 0.1);
    transform: translateX(10px);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3E7458, #2c5a42);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    flex-shrink: 0;
}

.highlight-text {
    flex: 1;
}

.highlight-text h4 {
    font-size: 16px;
    color: #1b1b18;
    font-weight: 700;
    margin-bottom: 5px;
}

.highlight-text p {
    font-size: 13px;
    color: #666;
    margin: 0;
    text-align: left;
}

.overview-image {
    height: 450px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.overview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.overview-image:hover img {
    transform: scale(1.05);
}

/* Admission Steps Section */
.admission-steps {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 20px;
    margin: 60px 0;
}

.steps-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 40px;
    color: #3E7458;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3E7458, #9b59b6);
    border-radius: 2px;
}

.steps-timeline {
    position: relative;
    padding: 40px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    align-items: center;
    justify-content: center;
}

.timeline-line {
    display: none;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 0 1 calc(16.666% - 20px);
    margin: 0 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.step-item:nth-child(odd) .step-content,
.step-item:nth-child(even) .step-content {
    text-align: center;
    grid-column: auto;
}

.step-item:nth-child(odd) .step-number,
.step-item:nth-child(even) .step-number {
    grid-column: auto;
    order: 0;
    margin: 0 0 20px 0;
}

.step-item:nth-child(odd) .step-empty,
.step-item:nth-child(even) .step-empty {
    display: none;
}

/* Arrow between cards */
.step-item::after {
    content: '→';
    position: absolute;
    right: -35px;
    top: 40px;
    font-size: 32px;
    color: #3E7458;
    font-weight: bold;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.step-item:last-child::after {
    display: none;
}

.step-item:hover::after {
    opacity: 1;
    transform: scaleX(1.3);
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3E7458, #2c5a42);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: 700;
    position: relative;
    z-index: 10;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.step-item:hover .step-number {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 10px 30px rgba(26, 82, 53, 0.5);
}

.step-item.active .step-number {
    background: linear-gradient(135deg, #2c5a42, #1a5235);
    box-shadow: 0 0 30px rgba(62, 116, 88, 0.6);
    transform: scale(1.15);
}

.step-content {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border-top: 4px solid #e0e0e0;
    width: 100%;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.step-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(40, 112, 71, 0.2);
    border-top-color: #3E7458;
}

.step-item.active .step-content {
    background: rgba(62, 116, 88, 0.08);
    border-top-color: #3E7458;
    box-shadow: 0 10px 30px rgba(62, 116, 88, 0.15);
}

.step-title {
    font-size: 16px;
    color: #3E7458;
    font-weight: 700;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.step-item.active .step-title {
    color: #2c5a42;
    font-size: 17px;
}

.step-description {
    font-size: 13px;
    color: #555;
    line-height: 1.6;
    transition: all 0.3s ease;
    max-height: 300px;
    overflow: hidden;
    text-align: justify;
}

.step-description.collapsed {
    max-height: 0;
    opacity: 0;
    margin-top: 0;
    display: none;
}

/* Documents Section */
.documents-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.documents-title {
    text-align: center;
    font-size: 38px;
    color: #3E7458;
    margin-bottom: 50px;
    font-weight: 700;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.document-card {
    background: white;
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border-top: 4px solid #3E7458;
    position: relative;
    overflow: hidden;
}

.document-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(142, 68, 173, 0.1), transparent);
    transition: width 0.6s ease;
}

.document-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(27, 66, 24, 0.2);
    border-top-color: #3E7458;
}

.document-card:hover::before {
    width: 100%;
}

.document-icon {
    font-size: 42px;
    color: #3E7458;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.document-card:hover .document-icon {
    color: #3E7458;
    transform: scale(1.2);
}

.document-name {
    font-size: 18px;
    font-weight: 700;
    color: #1b1b18;
    margin-bottom: 10px;
}

.document-description {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

/* Fee Structure Section */
.fee-structure {
    background: linear-gradient(135deg, #3E7458 0%, #2c5a42 100%);
    color: white;
    padding: 80px 20px;
    margin: 80px 0;
}

.fee-container {
    max-width: 1200px;
    margin: 0 auto;
}

.fee-title {
    text-align: center;
    font-size: 40px;
    margin-bottom: 50px;
    font-weight: 700;
}

.fee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.fee-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    text-align: center;
}

.fee-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.fee-card-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.fee-amount {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.fee-period {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 25px;
}

.fee-features {
    text-align: left;
    font-size: 14px;
    line-height: 2;
}

.fee-features li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.fee-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: 700;
}

/* Important Dates */
.important-dates {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.dates-title {
    text-align: center;
    font-size: 38px;
    color: #3E7458;
    margin-bottom: 50px;
    font-weight: 700;
}

.dates-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.date-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border-left: 5px solid #3E7458;
}

.date-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(27, 66, 24, 0.2);
    border-left-color: #3E7458;
}

.date-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3E7458, #2c5a42);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.date-content {
    flex: 1;
}

.date-event {
    font-size: 18px;
    font-weight: 700;
    color: #1b1b18;
    margin-bottom: 5px;
}

.date-time {
    font-size: 14px;
    color: #3E7458;
    font-weight: 600;
}

/* Admission Criteria */
.admission-criteria {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 20px;
}

.criteria-container {
    max-width: 1200px;
    margin: 0 auto;
}

.criteria-title {
    text-align: center;
    font-size: 38px;
    color: #3E7458;
    margin-bottom: 50px;
    font-weight: 700;
}

.criteria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.criteria-card {
    background: white;
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.criteria-card h3 {
    font-size: 22px;
    color: #3E7458;
    margin-bottom: 20px;
    font-weight: 700;
}

.criteria-list {
    list-style: none;
    padding: 0;
}

.criteria-list li {
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 15px;
    color: #555;
    display: flex;
    gap: 12px;
}

.criteria-list li:last-child {
    border-bottom: none;
}

.criteria-list li i {
    color: #3E7458;
    font-weight: 700;
}

/* FAQ Section */
.faq-section {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 20px;
}

.faq-title {
    text-align: center;
    font-size: 38px;
    color: #3E7458;
    margin-bottom: 50px;
    font-weight: 700;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(142, 68, 173, 0.15);
}

.faq-question {
    padding: 25px 30px;
    font-size: 18px;
    font-weight: 700;
    color: #1b1b18;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #3E7458;
}

.faq-icon {
    font-size: 20px;
    color: #3E7458;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 30px 25px;
    font-size: 15px;
    color: #555;
    line-height: 1.8;
}

/* CTA Section */
.admission-cta {
    background: linear-gradient(135deg, #3E7458 0%, #2c5a42 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
    /* border-radius: 20px; */
    margin-top: 80px;
}

.cta-text {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
}

.cta-subtext {
    font-size: 16px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 14px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-btn-primary {
    background: white;
    color: #3E7458;
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* .cta-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-btn-secondary:hover {
    background: white;
    color: #3E7458;
    transform: translateY(-3px);
} */

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .steps-timeline {
        flex-wrap: wrap;
        gap: 30px 0;
    }
    
    .step-item {
        flex: 0 1 calc(33.333% - 20px);
        margin: 0 10px;
    }
    
    .step-item::after {
        right: -40px;
        font-size: 24px;
    }
    
    .dates-list {
        grid-template-columns: 1fr;
    }
    
    .criteria-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .admission-hero h1 {
        font-size: 32px;
    }
    
    .overview-text h2 {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .documents-grid {
        grid-template-columns: 1fr;
    }
    
    .fee-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-btn {
        width: 100%;
    }
    
    .steps-timeline {
        flex-direction: column;
        gap: 40px 0;
    }
    
    .step-item {
        flex: 1 1 100%;
        margin: 0;
    }
    
    .step-item::after {
        content: '↓';
        right: auto;
        bottom: -35px;
        top: auto;
        transform: none;
    }
    
    .step-item:last-child::after {
        display: none;
    }
}

@media (max-width: 640px) {
    .steps-timeline {
        padding: 20px 0;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
    
    .step-content {
        padding: 15px;
        min-height: 140px;
    }
    
    .step-title {
        font-size: 15px;
    }
    
    .step-description {
        font-size: 12px;
    }
    
    .step-item::after {
        font-size: 20px;
        bottom: -30px;
    }
}


/* faq section  *//

/* Hero Section */
.faq-hero {
    background: linear-gradient(135deg, #3E7458 0%, #2c5a42 100%);
    padding: 80px 20px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.faq-hero h1 {
    font-size: 48px;
    color: white;
    font-weight: 700;
    margin-bottom: 15px;
    animation: fadeInDown 0.8s ease;
}

.faq-hero p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 0.8s ease 0.2s both;
}

/* Search Bar */
.faq-search-container {
    max-width: 600px;
    margin: -30px auto 60px;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

.faq-search {
    width: 100%;
    padding: 18px 25px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    background: white;
    color: #333;
}

.faq-search::placeholder {
    color: #999;
}

.faq-search:focus {
    outline: none;
    box-shadow: 0 15px 50px rgba(62, 116, 88, 0.25);
    border: 2px solid #3E7458;
}

/* Main Container */
.faq-main {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Category Tabs */
.faq-categories {
    display: flex;
    gap: 10px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    justify-content: center;
}

.faq-category-btn {
    padding: 12px 25px;
    border: 2px solid #3E7458;
    background: white;
    color: #3E7458;
    border-radius: 50px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.faq-category-btn:hover,
.faq-category-btn.active {
    background: #3E7458;
    color: white;
}

/* FAQ Item */
.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(62, 116, 88, 0.15);
}

.faq-question {
    padding: 25px 30px;
    font-size: 17px;
    font-weight: 700;
    color: #1b1b18;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    user-select: none;
}

.faq-question:hover {
    color: #3E7458;
}

.faq-icon {
    font-size: 20px;
    color: #3E7458;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer-content {
    padding: 0 30px 25px;
    font-size: 15px;
    color: #555;
    line-height: 1.8;
}

/* Category Section */
.faq-category-section {
    margin-bottom: 80px;
    display: none;
}

.faq-category-section.active {
    display: block;
    animation: fadeInUp 0.5s ease;
}

.category-title {
    font-size: 32px;
    color: #3E7458;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #3E7458, #2c5a42);
    border-radius: 2px;
}

/* Helpful Links */
.faq-still-need-help {
    background: linear-gradient(135deg, rgba(62, 116, 88, 0.08), rgba(44, 90, 66, 0.05));
    border: 2px solid #3E7458;
    border-radius: 15px;
    padding: 50px 30px;
    text-align: center;
    margin: 80px 0;
}

.help-title {
    font-size: 28px;
    color: #3E7458;
    font-weight: 700;
    margin-bottom: 20px;
}

.help-text {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.7;
}

.help-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.help-btn {
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.help-btn-primary {
    background: #3E7458;
    color: white;
}

.help-btn-primary:hover {
    background: #2c5a42;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(62, 116, 88, 0.3);
}

.help-btn-secondary {
    background: white;
    color: #3E7458;
    border: 2px solid #3E7458;
}

.help-btn-secondary:hover {
    background: #3E7458;
    color: white;
    transform: translateY(-2px);
}

/* No Results */
.no-results {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

.no-results i {
    font-size: 48px;
    color: #ddd;
    margin-bottom: 20px;
}/* Hero Section */
.faq-hero {
    background: linear-gradient(135deg, #3E7458 0%, #2c5a42 100%);
    padding: 80px 20px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.faq-hero h1 {
    font-size: 48px;
    color: white;
    font-weight: 700;
    margin-bottom: 15px;
    animation: fadeInDown 0.8s ease;
}

.faq-hero p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 0.8s ease 0.2s both;
}

/* Search Bar */
.faq-search-container {
    max-width: 600px;
    margin: -30px auto 60px;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

.faq-search {
    width: 100%;
    padding: 18px 25px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    background: white;
    color: #333;
}

.faq-search::placeholder {
    color: #999;
}

.faq-search:focus {
    outline: none;
    box-shadow: 0 15px 50px rgba(62, 116, 88, 0.25);
    border: 2px solid #3E7458;
}

/* Main Container */
.faq-main {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Category Tabs */
.faq-categories {
    display: flex;
    gap: 10px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    justify-content: center;
}

.faq-category-btn {
    padding: 12px 25px;
    border: 2px solid #3E7458;
    background: white;
    color: #3E7458;
    border-radius: 50px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.faq-category-btn:hover,
.faq-category-btn.active {
    background: #3E7458;
    color: white;
}

/* FAQ Item */
.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(62, 116, 88, 0.15);
}

.faq-question {
    padding: 25px 30px;
    font-size: 17px;
    font-weight: 700;
    color: #1b1b18;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    user-select: none;
}

.faq-question:hover {
    color: #3E7458;
}

.faq-icon {
    font-size: 20px;
    color: #3E7458;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer-content {
    padding: 0 30px 25px;
    font-size: 15px;
    color: #555;
    line-height: 1.8;
}

/* Category Section */
.faq-category-section {
    margin-bottom: 80px;
    display: none;
}

.faq-category-section.active {
    display: block;
    animation: fadeInUp 0.5s ease;
}

.category-title {
    font-size: 32px;
    color: #3E7458;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #3E7458, #2c5a42);
    border-radius: 2px;
}

/* Helpful Links */
.faq-still-need-help {
    background: linear-gradient(135deg, rgba(62, 116, 88, 0.08), rgba(44, 90, 66, 0.05));
    border: 2px solid #3E7458;
    border-radius: 15px;
    padding: 50px 30px;
    text-align: center;
    margin: 80px 0;
}

.help-title {
    font-size: 28px;
    color: #3E7458;
    font-weight: 700;
    margin-bottom: 20px;
}

.help-text {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.7;
}

.help-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.help-btn {
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.help-btn-primary {
    background: #3E7458;
    color: white;
}

.help-btn-primary:hover {
    background: #2c5a42;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(62, 116, 88, 0.3);
}

.help-btn-secondary {
    background: white;
    color: #3E7458;
    border: 2px solid #3E7458;
}

.help-btn-secondary:hover {
    background: #3E7458;
    color: white;
    transform: translateY(-2px);
}

/* No Results */
.no-results {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

.no-results i {
    font-size: 48px;
    color: #ddd;
    margin-bottom: 20px;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .faq-hero h1 {
        font-size: 32px;
    }
    
    .faq-search {
        padding: 15px 20px;
        font-size: 14px;
    }
    
    .faq-categories {
        gap: 8px;
    }
    
    .faq-category-btn {
        padding: 10px 18px;
        font-size: 12px;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 15px;
    }
    
    .faq-answer-content {
        padding: 0 20px 20px;
        font-size: 14px;
    }
    
    .category-title {
        font-size: 24px;
    }
    
    .help-title {
        font-size: 22px;
    }
    
    .help-buttons {
        flex-direction: column;
    }
    
    .help-btn {
        width: 100%;
    }
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .faq-hero h1 {
        font-size: 32px;
    }
    
    .faq-search {
        padding: 15px 20px;
        font-size: 14px;
    }
    
    .faq-categories {
        gap: 8px;
    }
    
    .faq-category-btn {
        padding: 10px 18px;
        font-size: 12px;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 15px;
    }
    
    .faq-answer-content {
        padding: 0 20px 20px;
        font-size: 14px;
    }
    
    .category-title {
        font-size: 24px;
    }
    
    .help-title {
        font-size: 22px;
    }
    
    .help-buttons {
        flex-direction: column;
    }
    
    .help-btn {
        width: 100%;
    }
}

/* Page Specific Styles */
.holistic-development-page {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Introduction Section */
.holistic-intro-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 60px 20px;
}

.holistic-intro-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.holistic-intro-section .intro-content {
    /* text-align: center; */
    max-width: 900px;
    margin: 0 auto;
}

.holistic-intro-section .section-title {
    font-size: 40px;
    color: #3E7458;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    /* left: 50%;
    transform: translateX(-50%); */
}

.holistic-intro-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3E7458, #E37344);
    border-radius: 2px;
}

.holistic-intro-section .intro-text {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

/* Development Pillars Section */
.development-pillars-section {
    padding: 80px 20px;
    background: white;
}

.development-pillars-section .container {
    max-width: 1400px;
    margin: 0 auto;
}

.development-pillars-section .section-title {
    text-align: center;
    font-size: 42px;
    color: #3E7458;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.development-pillars-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3E7458, #E37344);
    border-radius: 2px;
}

.development-pillars-section .section-subtitle {
    text-align: center;
    font-size: 17px;
    color: #666;
    margin-bottom: 50px;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pillar-card {
    background: white;
    border-radius: 16px;
    padding: 35px 28px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border-top: 5px solid #3E7458;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(62, 116, 88, 0.02) 0%, rgba(227, 115, 68, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pillar-card:hover::before {
    opacity: 1;
}

.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(62, 116, 88, 0.15);
    border-top-color: #E37344;
}

.pillar-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3E7458, #2a5240);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: white;
    font-size: 36px;
    transition: all 0.4s ease;
}

.pillar-card:hover .pillar-icon {
    background: linear-gradient(135deg, #E37344, #c55a2d);
    transform: scale(1.1) rotate(360deg);
}

.pillar-card h3 {
    font-size: 22px;
    color: #1b1b18;
    font-weight: 700;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.pillar-card:hover h3 {
    color: #E37344;
}

.pillar-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.pillar-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pillar-features li {
    font-size: 14px;
    color: #555;
    padding: 8px 0 8px 28px;
    position: relative;
    line-height: 1.6;
}

.pillar-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 8px;
    color: #3E7458;
    font-weight: bold;
    font-size: 16px;
}

/* Programs Section */
.holistic-programs-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.holistic-programs-section .container {
    max-width: 1400px;
    margin: 0 auto;
}

.holistic-programs-section .section-title {
    text-align: center;
    font-size: 42px;
    color: #3E7458;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.holistic-programs-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3E7458, #E37344);
    border-radius: 2px;
}

.holistic-programs-section .section-subtitle {
    text-align: center;
    font-size: 17px;
    color: #666;
    margin-bottom: 50px;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.program-card {
    background: white;
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #3E7458;
    transition: all 0.4s ease;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(62, 116, 88, 0.15);
    border-left-color: #E37344;
}

.program-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
}

.program-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3E7458, #2a5240);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.program-card:hover .program-icon {
    background: linear-gradient(135deg, #E37344, #c55a2d);
    transform: rotate(360deg);
}

.program-card h3 {
    font-size: 20px;
    color: #1b1b18;
    font-weight: 700;
    margin: 0;
    transition: color 0.3s ease;
}

.program-card:hover h3 {
    color: #E37344;
}

.program-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* Approach Section */
.holistic-approach-section {
    padding: 80px 20px;
    background: white;
}

.holistic-approach-section .container {
    max-width: 1400px;
    margin: 0 auto;
}

.approach-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.approach-visual {
    position: relative;
}

.approach-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.approach-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.approach-image:hover img {
    transform: scale(1.05);
}

.approach-content h2 {
    font-size: 38px;
    color: #3E7458;
    font-weight: 700;
    margin-bottom: 20px;
}

.approach-intro {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 35px;
}

.approach-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.approach-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.approach-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3E7458, #2a5240);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    font-weight: 700;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.approach-item:hover .approach-number {
    background: linear-gradient(135deg, #E37344, #c55a2d);
    transform: scale(1.1);
}

.approach-text h4 {
    font-size: 19px;
    color: #1b1b18;
    font-weight: 700;
    margin-bottom: 8px;
}

.approach-text p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Impact Section */
.impact-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.impact-section .container {
    max-width: 1400px;
    margin: 0 auto;
}

.impact-section .section-title {
    text-align: center;
    font-size: 42px;
    color: #3E7458;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.impact-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3E7458, #E37344);
    border-radius: 2px;
}

.impact-section .section-subtitle {
    text-align: center;
    font-size: 17px;
    color: #666;
    margin-bottom: 50px;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.impact-card {
    background: white;
    padding: 32px 25px;
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s ease;
    border-bottom: 4px solid #3E7458;
}

.impact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(62, 116, 88, 0.15);
    border-bottom-color: #E37344;
}

.impact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3E7458, #2a5240);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 32px;
    transition: all 0.4s ease;
}

.impact-card:hover .impact-icon {
    background: linear-gradient(135deg, #E37344, #c55a2d);
    transform: scale(1.15) rotate(360deg);
}

.impact-card h4 {
    font-size: 20px;
    color: #1b1b18;
    font-weight: 700;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.impact-card:hover h4 {
    color: #E37344;
}

.impact-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Closing Section */
.holistic-closing-section {
    padding: 80px 20px;
    background: white;
}

.holistic-closing-section .container {
    max-width: 1000px;
    margin: 0 auto;
}

.closing-card {
    background: linear-gradient(135deg, #3E7458 0%, #2a5240 100%);
    padding: 50px 45px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(62, 116, 88, 0.2);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.closing-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.closing-card h3 {
    font-size: 32px;
    color: white;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.closing-card p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.9;
    margin-bottom: 20px;
    text-align: justify;
    position: relative;
    z-index: 1;
}

.closing-card p:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .approach-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .pillars-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .holistic-intro-section .section-title,
    .development-pillars-section .section-title,
    .holistic-programs-section .section-title,
    .impact-section .section-title {
        font-size: 32px;
    }
    
    .approach-content h2 {
        font-size: 30px;
    }
    
    .pillars-grid,
    .programs-grid,
    .impact-grid {
        grid-template-columns: 1fr;
    }
    
    .closing-card {
        padding: 35px 25px;
    }
    
    .closing-card h3 {
        font-size: 26px;
    }
    
    .closing-card p {
        text-align: center;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .pillar-card,
    .program-card,
    .impact-card {
        padding: 25px 20px;
    }
    
    .holistic-intro-section .intro-text {
        text-align: center;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   REGISTRATION PAGE STYLES
   ============================================ */

.register-hero {
  background: linear-gradient(135deg, #3E7458 0%, #2c5a42 100%);
  color: white;
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.register-hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
  animation: fadeInDown 0.8s ease;
}

.register-hero-content p {
  font-size: 20px;
  opacity: 0.9;
  animation: fadeInUp 0.8s ease;
}

.register-section {
  padding: 40px 20px;
  background-color: #f8f9fa;
  min-height: calc(100vh - 300px);
}

.register-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
}

.form-wrapper {
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-wrapper h2 {
  color: #3E7458;
  font-size: 32px;
  margin-bottom: 10px;
  font-weight: 700;
}

.form-subtitle {
  color: #666;
  margin-bottom: 30px;
  font-size: 16px;
}

.form-section {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e0e0e0;
}

.form-section:last-of-type {
  border-bottom: none;
}

.form-section .section-title {
  color: #3E7458;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-bottom: 3px solid #E37344;
  display: inline-block;
}

.form-section .section-title::after {
  content: none;
  display: block;
  width: 100%;
  height: 3px;
  background-color: #E37344;
  margin-top: 10px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
}

.form-group label {
  color: #333;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  transition: all 0.3s ease;
  background-color: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #3E7458;
  background-color: white;
  box-shadow: 0 0 0 3px rgba(62, 116, 88, 0.1);
}

.form-group textarea {
  resize: vertical;
  font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999;
}

.form-group select {
  cursor: pointer;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: #333;
  margin-bottom: 15px;
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  margin: 0;
  padding: 0;
}

.form-actions {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  justify-content: center;
}

.btn {
  padding: 14px 40px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background-color: #3E7458;
  color: white;
}

.btn-primary:hover {
  background-color: #2a5240;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(62, 116, 88, 0.3);
}

.btn-secondary {
  background-color: #e0e0e0;
  color: #333;
}

.btn-secondary:hover {
  background-color: #d0d0d0;
  transform: translateY(-2px);
}

.form-note {
  text-align: center;
  color: #999;
  font-size: 13px;
  margin-top: 20px;
}

.registration-info {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  height: fit-content;
  position: sticky;
  top: 100px;
}

.registration-info h3 {
  color: #3E7458;
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 700;
}

.registration-info ul {
  list-style: none;
}

.registration-info li {
  color: #666;
  font-size: 13px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
  line-height: 1.6;
}

.registration-info li:last-child {
  border-bottom: none;
}

.registration-info strong {
  color: #3E7458;
  display: block;
  margin-bottom: 4px;
}

.alert {
  padding: 20px;
  border-radius: 6px;
  margin: 20px;
  font-weight: 500;
}

.alert-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.alert-error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .register-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .registration-info {
    position: static;
    top: auto;
  }

  .form-wrapper {
    padding: 30px;
  }

  .register-hero-content h1 {
    font-size: 36px;
  }

  .register-hero-content p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .register-hero {
    padding: 60px 20px;
    margin-bottom: 40px;
  }

  .register-hero-content h1 {
    font-size: 28px;
  }

  .register-hero-content p {
    font-size: 14px;
  }

  .form-wrapper {
    padding: 20px;
  }

  .section-title {
    font-size: 18px;
  }

  .form-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    padding: 12px 20px;
  }

  .registration-info {
    padding: 20px;
  }

  .registration-info h3 {
    font-size: 18px;
  }

  .registration-info li {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .register-section {
    padding: 20px 15px;
  }

  .register-container {
    gap: 20px;
  }

  .register-hero {
    padding: 40px 15px;
  }

  .register-hero-content h1 {
    font-size: 22px;
  }

  .form-wrapper {
    padding: 15px;
  }

  .form-section {
    margin-bottom: 25px;
    padding-bottom: 20px;
  }

  .section-title {
    font-size: 16px;
  }

  .form-group label {
    font-size: 13px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 10px 12px;
    font-size: 13px;
  }
}

/* Gallery Page Styles */
.gallery-page {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Overview Section */
.gallery-overview-section {
    background: linear-gradient(135deg, #f0f8e1 0%, #ffffff 100%);
    padding: 60px 20px;
}

.gallery-overview-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-overview-section .intro-content {
    /* text-align: center; */
    max-width: 900px;
    margin: 0 auto;
}

.gallery-overview-section .section-title {
    font-size: 40px;
    color: #3E7458;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.gallery-overview-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3E7458, #E37344);
    border-radius: 2px;
}

.gallery-overview-section .intro-text {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

.gallery-overview-section .highlight-box {
    background: linear-gradient(135deg, #3E7458 0%, #2a5240 100%);
    padding: 30px;
    border-radius: 15px;
    margin-top: 40px;
    color: white;
}

.gallery-overview-section .highlight-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #a8d5ba;
    text-align: center;
}

.gallery-overview-section .highlight-box p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    text-align: center;
}

/* Filter Section */
.gallery-filter-section {
    padding: 40px 20px;
    background: white;
    border-bottom: 1px solid #e8e8e8;
}

.gallery-filter-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.filter-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    background: #f5f5f5;
    border: 2px solid transparent;
    border-radius: 25px;
    color: #666;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: #3E7458;
    color: white;
    border-color: #3E7458;
}

/* Main Gallery Grid */
.gallery-grid-section {
    padding: 80px 20px;
    background: #f5f5f5;
}

.gallery-grid-section .container {
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-grid-section .section-title {
    text-align: center;
    font-size: 42px;
    color: #3E7458;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.gallery-grid-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3E7458, #E37344);
    border-radius: 2px;
}

.gallery-grid-section .section-subtitle {
    text-align: center;
    font-size: 17px;
    color: #666;
    margin-bottom: 50px;
}

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
    height: 280px;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(62, 116, 88, 0.2);
}

.gallery-item-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3E7458, #2a5240);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.gallery-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-item-image img {
    transform: scale(1.1);
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(62, 116, 88, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    flex-direction: column;
    gap: 15px;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-overlay h3 {
    color: white;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    margin: 0;
}

.gallery-item-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    text-align: center;
    margin: 0;
    max-width: 200px;
}

.gallery-icon {
    font-size: 40px;
    color: #a8d5ba;
}

/* Category Showcase */
.category-showcase-section {
    padding: 80px 20px;
    background: white;
}

.category-showcase-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.category-showcase-section .section-title {
    text-align: center;
    font-size: 42px;
    color: #3E7458;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.category-showcase-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3E7458, #E37344);
    border-radius: 2px;
}

.category-showcase-section .section-subtitle {
    text-align: center;
    font-size: 17px;
    color: #666;
    margin-bottom: 50px;
}

.categories-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.category-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(62, 116, 88, 0.15);
}

.category-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #3E7458, #2a5240);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: white;
    position: relative;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.08);
}

.category-content {
    padding: 25px;
}

.category-content h3 {
    font-size: 21px;
    color: #1b1b18;
    font-weight: 700;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.category-card:hover .category-content h3 {
    color: #E37344;
}

.category-count {
    font-size: 14px;
    color: #E37344;
    font-weight: 600;
    margin-bottom: 12px;
}

.category-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.view-btn {
    display: inline-block;
    margin-top: 12px;
    padding: 8px 16px;
    background: #3E7458;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.category-card:hover .view-btn {
    background: #E37344;
}

/* Featured Moments */
.featured-moments-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f0f8e1 0%, #ffffff 100%);
}

.featured-moments-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.featured-moments-section .section-title {
    text-align: center;
    font-size: 42px;
    color: #3E7458;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.featured-moments-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3E7458, #E37344);
    border-radius: 2px;
}

.featured-moments-section .section-subtitle {
    text-align: center;
    font-size: 17px;
    color: #666;
    margin-bottom: 50px;
}

.moments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.moment-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.moment-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(62, 116, 88, 0.15);
}

.moment-image {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, #3E7458, #2a5240);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: white;
    overflow: hidden;
    position: relative;
}

.moment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.moment-card:hover .moment-image img {
    transform: scale(1.1);
}

.moment-content {
    padding: 25px;
}

.moment-tag {
    display: inline-block;
    background: #3E7458;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.moment-card:hover .moment-tag {
    background: #E37344;
}

.moment-content h3 {
    font-size: 20px;
    color: #1b1b18;
    font-weight: 700;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.moment-card:hover .moment-content h3 {
    color: #E37344;
}

.moment-date {
    font-size: 13px;
    color: #E37344;
    font-weight: 600;
    margin-bottom: 10px;
}

.moment-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Gallery Statistics */
.gallery-stats-section {
    padding: 80px 20px;
    background: white;
}

.gallery-stats-section .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.gallery-stats-section .section-title {
    font-size: 42px;
    color: #3E7458;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.gallery-stats-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3E7458, #E37344);
    border-radius: 2px;
}

.gallery-stats-section .section-subtitle {
    font-size: 17px;
    color: #666;
    margin-bottom: 50px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stat-card {
    background: white;
    padding: 35px 25px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-bottom: 4px solid #3E7458;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(62, 116, 88, 0.15);
    border-bottom-color: #E37344;
}

.stat-card .stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #3E7458;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.stat-card:hover .stat-number {
    color: #E37344;
}

.stat-card .stat-label {
    font-size: 16px;
    color: #666;
    font-weight: 600;
}

/* Call to Action Section */
.gallery-cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f0f8e1 0%, #ffffff 100%);
}

.gallery-cta-section .container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.gallery-cta-section h2 {
    font-size: 36px;
    color: #3E7458;
    font-weight: 700;
    margin-bottom: 20px;
}

.gallery-cta-section p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #3E7458, #2a5240);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    border: 2px solid #3E7458;
}

.cta-btn:hover {
    background: linear-gradient(135deg, #E37344, #c55a2d);
    border-color: #E37344;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(62, 116, 88, 0.2);
}

.cta-btn i {
    font-size: 18px;
}

/* Closing Section */
.gallery-closing-section {
    padding: 80px 20px;
    background: white;
}

.gallery-closing-section .container {
    max-width: 1000px;
    margin: 0 auto;
}

.closing-card {
    background: linear-gradient(135deg, #3E7458 0%, #2a5240 100%);
    padding: 50px 45px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(62, 116, 88, 0.2);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.closing-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.closing-card h3 {
    font-size: 32px;
    color: white;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.closing-card p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.9;
    margin-bottom: 20px;
    text-align: justify;
    position: relative;
    z-index: 1;
}

.closing-card p:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .masonry-grid,
    .categories-showcase-grid,
    .moments-grid,
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .gallery-overview-section .section-title,
    .gallery-grid-section .section-title,
    .category-showcase-section .section-title,
    .featured-moments-section .section-title,
    .gallery-stats-section .section-title,
    .gallery-cta-section h2 {
        font-size: 32px;
    }
    
    .masonry-grid,
    .categories-showcase-grid,
    .moments-grid,
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .filter-controls {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-btn {
        width: 100%;
        justify-content: center;
    }
    
    .closing-card {
        padding: 35px 25px;
    }
    
    .closing-card h3 {
        font-size: 26px;
    }
    
    .closing-card p {
        text-align: center;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .gallery-item {
        height: 240px;
    }
    
    .masonry-grid,
    .categories-showcase-grid,
    .moments-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-overview-section .intro-text {
        text-align: center;
    }
}

/* Recent Events and Celebrations Page Styles */
.recent-events-page {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Events Overview Section */
.events-overview-section {
    background: linear-gradient(135deg, #f0f8e1 0%, #ffffff 100%);
    padding: 60px 20px;
}

.events-overview-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.events-overview-section .intro-content {
    /* text-align: center; */
    max-width: 900px;
    margin: 0 auto;
}

.events-overview-section .section-title {
    font-size: 40px;
    color: #3E7458;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.events-overview-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3E7458, #E37344);
    border-radius: 2px;
}

.events-overview-section .intro-text {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

.events-overview-section .highlight-box {
    background: linear-gradient(135deg, #3E7458 0%, #2a5240 100%);
    padding: 30px;
    border-radius: 15px;
    margin-top: 40px;
    color: white;
}

.events-overview-section .highlight-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #a8d5ba;
}

.events-overview-section .highlight-box p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    text-align: center;
}

/* Events Timeline Section */
.events-timeline-section {
    padding: 80px 20px;
    background: white;
}

.events-timeline-section .container {
    max-width: 1400px;
    margin: 0 auto;
}

.events-timeline-section .section-title {
    text-align: center;
    font-size: 42px;
    color: #3E7458;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.events-timeline-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3E7458, #E37344);
    border-radius: 2px;
}

.events-timeline-section .section-subtitle {
    text-align: center;
    font-size: 17px;
    color: #666;
    margin-bottom: 50px;
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.event-card {
    background: white;
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(62, 116, 88, 0.15);
}

.event-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #3E7458, #2a5240);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 64px;
    overflow: hidden;
    position: relative;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.event-card:hover .event-image img {
    transform: scale(1.05);
}

.event-content {
    padding: 30px;
}

.event-date {
    display: inline-block;
    background: #3E7458;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.event-card:hover .event-date {
    background: #E37344;
}

.event-card h3 {
    font-size: 22px;
    color: #1b1b18;
    font-weight: 700;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.event-card:hover h3 {
    color: #E37344;
}

.event-category {
    font-size: 14px;
    color: #E37344;
    font-weight: 600;
    margin-bottom: 12px;
}

.event-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

.event-read-more {
    display: inline-block;
    margin-top: 15px;
    color: #3E7458;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.event-card:hover .event-read-more {
    color: #E37344;
    margin-left: 8px;
}

/* Event Categories Section */
.event-categories-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f0f8e1 0%, #ffffff 100%);
}

.event-categories-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.event-categories-section .section-title {
    text-align: center;
    font-size: 42px;
    color: #3E7458;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.event-categories-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3E7458, #E37344);
    border-radius: 2px;
}

.event-categories-section .section-subtitle {
    text-align: center;
    font-size: 17px;
    color: #666;
    margin-bottom: 50px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.category-card {
    background: white;
    border-radius: 16px;
    padding: 35px 28px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border-top: 5px solid #3E7458;
    transition: all 0.4s ease;
    text-align: center;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(62, 116, 88, 0.15);
    border-top-color: #E37344;
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3E7458, #2a5240);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 36px;
    transition: all 0.4s ease;
}

.category-card:hover .category-icon {
    background: linear-gradient(135deg, #E37344, #c55a2d);
    transform: scale(1.1) rotate(360deg);
}

.category-card h3 {
    font-size: 22px;
    color: #1b1b18;
    font-weight: 700;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.category-card:hover h3 {
    color: #E37344;
}

.category-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* Highlights Section */
.highlights-section {
    padding: 80px 20px;
    background: white;
}

.highlights-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.highlights-section .section-title {
    text-align: center;
    font-size: 42px;
    color: #3E7458;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.highlights-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3E7458, #E37344);
    border-radius: 2px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.highlight-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.highlight-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(62, 116, 88, 0.15);
}

.highlight-visual {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, #3E7458, #2a5240);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 48px;
    overflow: hidden;
    position: relative;
}

.highlight-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.highlight-item:hover .highlight-visual img {
    transform: scale(1.08);
}

.highlight-content {
    padding: 25px;
}

.highlight-content h3 {
    font-size: 20px;
    color: #1b1b18;
    font-weight: 700;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.highlight-item:hover .highlight-content h3 {
    color: #E37344;
}

.highlight-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Upcoming Events Section */
.upcoming-events-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f0f8e1 0%, #ffffff 100%);
}

.upcoming-events-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.upcoming-events-section .section-title {
    text-align: center;
    font-size: 42px;
    color: #3E7458;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.upcoming-events-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3E7458, #E37344);
    border-radius: 2px;
}

.upcoming-events-section .section-subtitle {
    text-align: center;
    font-size: 17px;
    color: #666;
    margin-bottom: 50px;
}

.upcoming-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.upcoming-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #3E7458;
    transition: all 0.4s ease;
    position: relative;
}

.upcoming-item:hover {
    transform: translateX(10px);
    box-shadow: 0 12px 30px rgba(62, 116, 88, 0.15);
    border-left-color: #E37344;
}

.upcoming-date-time {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.upcoming-date,
.upcoming-time {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f5f5f5;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: #3E7458;
}

.upcoming-item:hover .upcoming-date,
.upcoming-item:hover .upcoming-time {
    background: #ffe8d9;
    color: #E37344;
}

.upcoming-item h3 {
    font-size: 21px;
    color: #1b1b18;
    font-weight: 700;
    margin: 15px 0 10px 0;
    transition: color 0.3s ease;
}

.upcoming-item:hover h3 {
    color: #E37344;
}

.upcoming-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.register-btn {
    display: inline-block;
    margin-top: 12px;
    padding: 8px 16px;
    background: #3E7458;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #3E7458;
}

.upcoming-item:hover .register-btn {
    background: #E37344;
    border-color: #E37344;
}

/* Event Statistics Section */
.event-stats-section {
    padding: 80px 20px;
    background: white;
}

.event-stats-section .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.event-stats-section .section-title {
    font-size: 42px;
    color: #3E7458;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.event-stats-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3E7458, #E37344);
    border-radius: 2px;
}

.event-stats-section .section-subtitle {
    font-size: 17px;
    color: #666;
    margin-bottom: 50px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stat-card {
    background: white;
    padding: 35px 25px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-bottom: 4px solid #3E7458;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(62, 116, 88, 0.15);
    border-bottom-color: #E37344;
}

.stat-card .stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #3E7458;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.stat-card:hover .stat-number {
    color: #E37344;
}

.stat-card .stat-label {
    font-size: 16px;
    color: #666;
    font-weight: 600;
}

/* Closing Section */
.events-closing-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f0f8e1 0%, #ffffff 100%);
}

.events-closing-section .container {
    max-width: 1000px;
    margin: 0 auto;
}

.closing-card {
    background: linear-gradient(135deg, #3E7458 0%, #2a5240 100%);
    padding: 50px 45px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(62, 116, 88, 0.2);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.closing-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.closing-card h3 {
    font-size: 32px;
    color: white;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.closing-card p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.9;
    margin-bottom: 20px;
    text-align: justify;
    position: relative;
    z-index: 1;
}

.closing-card p:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .timeline-grid,
    .categories-grid,
    .highlights-grid,
    .upcoming-list,
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .events-overview-section .section-title,
    .events-timeline-section .section-title,
    .event-categories-section .section-title,
    .highlights-section .section-title,
    .upcoming-events-section .section-title,
    .event-stats-section .section-title {
        font-size: 32px;
    }
    
    .timeline-grid,
    .categories-grid,
    .highlights-grid,
    .upcoming-list,
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .closing-card {
        padding: 35px 25px;
    }
    
    .closing-card h3 {
        font-size: 26px;
    }
    
    .closing-card p {
        text-align: center;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .event-card,
    .category-card,
    .highlight-item,
    .upcoming-item,
    .stat-card {
        padding: 20px;
    }
    
    .events-overview-section .intro-text {
        text-align: center;
    }
}


/* Annual Calendar Page Styles */
.annual-calendar-page {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Overview Section */
.calendar-overview-section {
    background: linear-gradient(135deg, #f0f8e1 0%, #ffffff 100%);
    padding: 60px 20px;
}

.calendar-overview-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.calendar-overview-section .intro-content {
    /* text-align: center; */
    max-width: 900px;
    margin: 0 auto;
}

.calendar-overview-section .section-title {
    font-size: 40px;
    color: #3E7458;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.calendar-overview-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3E7458, #E37344);
    border-radius: 2px;
}

.calendar-overview-section .intro-text {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

.calendar-overview-section .year-box {
    background: linear-gradient(135deg, #3E7458 0%, #2a5240 100%);
    padding: 30px;
    border-radius: 15px;
    margin-top: 40px;
    color: white;
}

.calendar-overview-section .year-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #a8d5ba;
}

.calendar-overview-section .year-box p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    text-align: center;
}

/* Academic Year Structure */
.academic-year-section {
    padding: 80px 20px;
    background: white;
}

.academic-year-section .container {
    max-width: 1400px;
    margin: 0 auto;
}

.academic-year-section .section-title {
    text-align: center;
    font-size: 42px;
    color: #3E7458;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.academic-year-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3E7458, #E37344);
    border-radius: 2px;
}

.academic-year-section .section-subtitle {
    text-align: center;
    font-size: 17px;
    color: #666;
    margin-bottom: 50px;
}

.year-structure-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.structure-card {
    background: white;
    border-radius: 16px;
    padding: 35px 28px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border-top: 5px solid #3E7458;
    transition: all 0.4s ease;
    position: relative;
}

.structure-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(62, 116, 88, 0.15);
    border-top-color: #E37344;
}

.structure-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3E7458, #2a5240);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: white;
    font-size: 36px;
    transition: all 0.4s ease;
}

.structure-card:hover .structure-icon {
    background: linear-gradient(135deg, #E37344, #c55a2d);
    transform: scale(1.1) rotate(360deg);
}

.structure-card h3 {
    font-size: 22px;
    color: #1b1b18;
    font-weight: 700;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.structure-card:hover h3 {
    color: #E37344;
}

.structure-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* Monthly Timeline */
.monthly-timeline-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f0f8e1 0%, #ffffff 100%);
}

.monthly-timeline-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.monthly-timeline-section .section-title {
    text-align: center;
    font-size: 42px;
    color: #3E7458;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.monthly-timeline-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3E7458, #E37344);
    border-radius: 2px;
}

.monthly-timeline-section .section-subtitle {
    text-align: center;
    font-size: 17px;
    color: #666;
    margin-bottom: 50px;
}

.months-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.month-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border-bottom: 4px solid #3E7458;
}

.month-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(62, 116, 88, 0.15);
    border-bottom-color: #E37344;
}

.month-header {
    background: linear-gradient(135deg, #3E7458, #2a5240);
    padding: 25px;
    color: white;
    text-align: center;
}

.month-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.month-header .dates {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.month-content {
    padding: 25px;
}

.month-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.month-content li {
    padding: 12px 0;
    border-bottom: 1px solid #e8e8e8;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    position: relative;
    padding-left: 28px;
}

.month-content li:last-child {
    border-bottom: none;
}

.month-content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #3E7458;
    font-weight: bold;
    font-size: 16px;
}

.month-content li strong {
    color: #1b1b18;
    font-weight: 600;
}

/* Holiday Schedule */
.holiday-schedule-section {
    padding: 80px 20px;
    background: white;
}

.holiday-schedule-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.holiday-schedule-section .section-title {
    text-align: center;
    font-size: 42px;
    color: #3E7458;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.holiday-schedule-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3E7458, #E37344);
    border-radius: 2px;
}

.holiday-schedule-section .section-subtitle {
    text-align: center;
    font-size: 17px;
    color: #666;
    margin-bottom: 50px;
}

.holidays-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

.holidays-table thead {
    background: linear-gradient(135deg, #3E7458, #2a5240);
    color: white;
}

.holidays-table th {
    padding: 20px;
    text-align: left;
    font-weight: 700;
    font-size: 16px;
    border-bottom: 2px solid #3E7458;
}

.holidays-table td {
    padding: 18px 20px;
    border-bottom: 1px solid #e8e8e8;
    font-size: 15px;
    color: #555;
}

.holidays-table tbody tr:hover {
    background-color: #f8f9fa;
    transition: background-color 0.3s ease;
}

.holidays-table tbody tr:last-child td {
    border-bottom: none;
}

.holiday-type {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.holiday-type.national {
    background: #c8e6c9;
    color: #1b531f;
}

.holiday-type.school {
    background: #fff9c4;
    color: #f57f17;
}

.holiday-type.extended {
    background: #b3e5fc;
    color: #01579b;
}

/* Exam Schedule */
.exam-schedule-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f0f8e1 0%, #ffffff 100%);
}

.exam-schedule-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.exam-schedule-section .section-title {
    text-align: center;
    font-size: 42px;
    color: #3E7458;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.exam-schedule-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3E7458, #E37344);
    border-radius: 2px;
}

.exam-schedule-section .section-subtitle {
    text-align: center;
    font-size: 17px;
    color: #666;
    margin-bottom: 50px;
}

.exam-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.exam-type-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #3E7458;
    transition: all 0.4s ease;
}

.exam-type-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(62, 116, 88, 0.15);
    border-left-color: #E37344;
}

.exam-type-card h3 {
    font-size: 20px;
    color: #1b1b18;
    font-weight: 700;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.exam-type-card:hover h3 {
    color: #E37344;
}

.exam-type-card .timing {
    font-size: 14px;
    color: #3E7458;
    font-weight: 600;
    margin-bottom: 10px;
}

.exam-type-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Important Dates Section */
.important-dates-section {
    padding: 80px 20px;
    background: white;
}

.important-dates-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.important-dates-section .section-title {
    text-align: center;
    font-size: 42px;
    color: #3E7458;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.important-dates-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3E7458, #E37344);
    border-radius: 2px;
}

.important-dates-section .section-subtitle {
    text-align: center;
    font-size: 17px;
    color: #666;
    margin-bottom: 50px;
}

.dates-timeline {
    position: relative;
    padding: 20px 0;
}

.dates-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #3E7458, #E37344);
    transform: translateX(-50%);
}

.timeline-item {
    margin-bottom: 40px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    margin-left: 0;
    margin-right: auto;
    padding-right: 52%;
    text-align: right;
}

.timeline-item:nth-child(even) {
    margin-left: auto;
    margin-right: 0;
    padding-left: 52%;
    text-align: left;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 0;
    width: 20px;
    height: 20px;
    background: white;
    border: 4px solid #3E7458;
    border-radius: 50%;
    transform: translateX(-50%);
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-marker {
    background: #3E7458;
    box-shadow: 0 0 0 8px rgba(62, 116, 88, 0.1);
    transform: translateX(-50%) scale(1.3);
}

.timeline-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-top: 3px solid #3E7458;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-content {
    box-shadow: 0 8px 25px rgba(62, 116, 88, 0.15);
    border-top-color: #E37344;
}

.timeline-date {
    font-size: 14px;
    color: #3E7458;
    font-weight: 700;
    margin-bottom: 8px;
}

.timeline-content h4 {
    font-size: 18px;
    color: #1b1b18;
    font-weight: 700;
    margin: 0 0 8px 0;
    transition: color 0.3s ease;
}

.timeline-item:hover .timeline-content h4 {
    color: #E37344;
}

.timeline-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Download Section */
.download-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f0f8e1 0%, #ffffff 100%);
}

.download-section .container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.download-section h2 {
    font-size: 36px;
    color: #3E7458;
    font-weight: 700;
    margin-bottom: 20px;
}

.download-section p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

.download-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #3E7458, #2a5240);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    border: 2px solid #3E7458;
}

.download-btn:hover {
    background: linear-gradient(135deg, #E37344, #c55a2d);
    border-color: #E37344;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(62, 116, 88, 0.2);
}

.download-btn i {
    font-size: 18px;
}

/* Closing Section */
.calendar-closing-section {
    padding: 80px 20px;
    background: white;
}

.calendar-closing-section .container {
    max-width: 1000px;
    margin: 0 auto;
}

.closing-card {
    background: linear-gradient(135deg, #3E7458 0%, #2a5240 100%);
    padding: 50px 45px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(62, 116, 88, 0.2);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.closing-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.closing-card h3 {
    font-size: 32px;
    color: white;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.closing-card p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.9;
    margin-bottom: 20px;
    text-align: justify;
    position: relative;
    z-index: 1;
}

.closing-card p:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .year-structure-grid,
    .months-grid,
    .exam-types-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .dates-timeline::before {
        left: 0;
        transform: translateX(9px);
    }
    
    .timeline-item {
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 50px !important;
        padding-right: 0 !important;
        text-align: left !important;
    }
    
    .timeline-marker {
        left: 0;
    }
}

@media (max-width: 768px) {
    .calendar-overview-section .section-title,
    .academic-year-section .section-title,
    .monthly-timeline-section .section-title,
    .holiday-schedule-section .section-title,
    .exam-schedule-section .section-title,
    .important-dates-section .section-title,
    .download-section h2 {
        font-size: 32px;
    }
    
    .year-structure-grid,
    .months-grid,
    .exam-types-grid {
        grid-template-columns: 1fr;
    }
    
    .holidays-table,
    .holidays-table thead,
    .holidays-table tbody,
    .holidays-table th,
    .holidays-table td,
    .holidays-table tr {
        display: block;
    }
    
    .holidays-table thead {
        display: none;
    }
    
    .holidays-table tbody tr {
        margin-bottom: 15px;
        border: 1px solid #e8e8e8;
        border-radius: 8px;
        overflow: hidden;
    }
    
    .holidays-table td {
        display: block;
        text-align: right;
        padding-left: 50%;
        position: relative;
        border-bottom: 1px solid #e8e8e8;
    }
    
    .holidays-table td:last-child {
        border-bottom: none;
    }
    
    .holidays-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 20px;
        font-weight: 600;
        color: #3E7458;
    }
    
    .closing-card {
        padding: 35px 25px;
    }
    
    .closing-card h3 {
        font-size: 26px;
    }
    
    .closing-card p {
        text-align: center;
        font-size: 15px;
    }
    
    .download-buttons {
        flex-direction: column;
    }
    
    .download-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .structure-card,
    .month-card,
    .exam-type-card {
        padding: 20px;
    }
    
    .calendar-overview-section .intro-text {
        text-align: center;
    }
}

/* Tulsi Saplings Page Styles */
.tulsi-saplings-page {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Introduction Section */
.saplings-intro-section {
    background: linear-gradient(135deg, #f0f8e1 0%, #ffffff 100%);
    padding: 60px 20px;
}

.saplings-intro-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.saplings-intro-section .intro-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.saplings-intro-section .section-title {
    font-size: 40px;
    color: #3E7458;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.saplings-intro-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3E7458, #E37344);
    border-radius: 2px;
}

.saplings-intro-section .intro-text {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

.saplings-intro-section .mission-box {
    background: linear-gradient(135deg, #3E7458 0%, #2a5240 100%);
    padding: 30px;
    border-radius: 15px;
    margin-top: 40px;
    color: white;
}

.saplings-intro-section .mission-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #a8d5ba;
}

.saplings-intro-section .mission-box p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    text-align: center;
}

/* Programs Section */
.saplings-programs-section {
    padding: 80px 20px;
    background: white;
}

.saplings-programs-section .container {
    max-width: 1400px;
    margin: 0 auto;
}

.saplings-programs-section .section-title {
    text-align: center;
    font-size: 42px;
    color: #3E7458;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.saplings-programs-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3E7458, #E37344);
    border-radius: 2px;
}

.saplings-programs-section .section-subtitle {
    text-align: center;
    font-size: 17px;
    color: #666;
    margin-bottom: 50px;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.program-card {
    background: white;
    border-radius: 16px;
    padding: 35px 28px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border-top: 5px solid #3E7458;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(62, 116, 88, 0.02) 0%, rgba(227, 115, 68, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.program-card:hover::before {
    opacity: 1;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(62, 116, 88, 0.15);
    border-top-color: #E37344;
}

.program-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3E7458, #2a5240);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: white;
    font-size: 36px;
    transition: all 0.4s ease;
}

.program-card:hover .program-icon {
    background: linear-gradient(135deg, #E37344, #c55a2d);
    transform: scale(1.1) rotate(360deg);
}

.program-card h3 {
    font-size: 22px;
    color: #1b1b18;
    font-weight: 700;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.program-card:hover h3 {
    color: #E37344;
}

.program-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.program-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.program-features li {
    font-size: 14px;
    color: #555;
    padding: 8px 0 8px 28px;
    position: relative;
    line-height: 1.6;
}

.program-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 8px;
    color: #3E7458;
    font-weight: bold;
    font-size: 16px;
}

/* Initiatives Section */
.saplings-initiatives-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f0f8e1 0%, #ffffff 100%);
}

.saplings-initiatives-section .container {
    max-width: 1400px;
    margin: 0 auto;
}

.initiatives-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.initiatives-visual {
    position: relative;
}

.initiatives-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.initiatives-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.initiatives-image:hover img {
    transform: scale(1.05);
}

.initiatives-content h2 {
    font-size: 38px;
    color: #3E7458;
    font-weight: 700;
    margin-bottom: 20px;
}

.initiatives-intro {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 35px;
}

.initiatives-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.initiative-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.initiative-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3E7458, #2a5240);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    font-weight: 700;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.initiative-item:hover .initiative-number {
    background: linear-gradient(135deg, #E37344, #c55a2d);
    transform: scale(1.1);
}

.initiative-text h4 {
    font-size: 19px;
    color: #1b1b18;
    font-weight: 700;
    margin-bottom: 8px;
}

.initiative-text p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Benefits Section */
.saplings-benefits-section {
    padding: 80px 20px;
    background: white;
}

.saplings-benefits-section .container {
    max-width: 1400px;
    margin: 0 auto;
}

.saplings-benefits-section .section-title {
    text-align: center;
    font-size: 42px;
    color: #3E7458;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.saplings-benefits-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3E7458, #E37344);
    border-radius: 2px;
}

.saplings-benefits-section .section-subtitle {
    text-align: center;
    font-size: 17px;
    color: #666;
    margin-bottom: 50px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    background: white;
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #3E7458;
    transition: all 0.4s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(62, 116, 88, 0.15);
    border-left-color: #E37344;
}

.benefit-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3E7458, #2a5240);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.benefit-card:hover .benefit-icon {
    background: linear-gradient(135deg, #E37344, #c55a2d);
    transform: rotate(360deg);
}

.benefit-card h3 {
    font-size: 20px;
    color: #1b1b18;
    font-weight: 700;
    margin: 0;
    transition: color 0.3s ease;
}

.benefit-card:hover h3 {
    color: #E37344;
}

.benefit-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* Success Stories Section */
.success-stories-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f0f8e1 0%, #ffffff 100%);
}

.success-stories-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.success-stories-section .section-title {
    text-align: center;
    font-size: 42px;
    color: #3E7458;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.success-stories-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3E7458, #E37344);
    border-radius: 2px;
}

.success-stories-section .section-subtitle {
    text-align: center;
    font-size: 17px;
    color: #666;
    margin-bottom: 50px;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.story-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-bottom: 4px solid #3E7458;
    transition: all 0.4s ease;
}

.story-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(62, 116, 88, 0.15);
    border-bottom-color: #E37344;
}

.story-tag {
    display: inline-block;
    background: #3E7458;
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.story-card h3 {
    font-size: 21px;
    color: #1b1b18;
    font-weight: 700;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.story-card:hover h3 {
    color: #E37344;
}

.story-card .program-name {
    font-size: 14px;
    color: #E37344;
    font-weight: 600;
    margin-bottom: 12px;
}

.story-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Impact Section */
.impact-section {
    padding: 80px 20px;
    background: white;
}

.impact-section .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.impact-section .section-title {
    font-size: 42px;
    color: #3E7458;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.impact-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3E7458, #E37344);
    border-radius: 2px;
}

.impact-section .section-subtitle {
    font-size: 17px;
    color: #666;
    margin-bottom: 50px;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.impact-stat {
    background: white;
    padding: 35px 25px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-bottom: 4px solid #3E7458;
}

.impact-stat:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(62, 116, 88, 0.15);
    border-bottom-color: #E37344;
}

.impact-stat .stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #3E7458;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.impact-stat:hover .stat-number {
    color: #E37344;
}

.impact-stat .stat-label {
    font-size: 16px;
    color: #666;
    font-weight: 600;
}

/* Getting Involved Section */
.getting-involved-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #3E7458 0%, #2a5240 100%);
}

.getting-involved-section .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.getting-involved-section h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.getting-involved-section p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.95);
}

.involvement-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.involvement-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 35px 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    text-align: center;
}

.involvement-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.4);
}

.involvement-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: #a8d5ba;
}

.involvement-card h3 {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.involvement-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

/* Closing Section */
.saplings-closing-section {
    padding: 80px 20px;
    background: white;
}

.saplings-closing-section .container {
    max-width: 1000px;
    margin: 0 auto;
}

.closing-card {
    background: linear-gradient(135deg, #3E7458 0%, #2a5240 100%);
    padding: 50px 45px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(62, 116, 88, 0.2);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.closing-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.closing-card h3 {
    font-size: 32px;
    color: white;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.closing-card p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.9;
    margin-bottom: 20px;
    text-align: justify;
    position: relative;
    z-index: 1;
}

.closing-card p:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .initiatives-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .programs-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .saplings-intro-section .section-title,
    .saplings-programs-section .section-title,
    .saplings-benefits-section .section-title,
    .success-stories-section .section-title,
    .impact-section .section-title {
        font-size: 32px;
    }
    
    .initiatives-content h2,
    .getting-involved-section h2 {
        font-size: 30px;
    }
    
    .programs-grid,
    .benefits-grid,
    .stories-grid,
    .impact-stats,
    .involvement-cards {
        grid-template-columns: 1fr;
    }
    
    .closing-card {
        padding: 35px 25px;
    }
    
    .closing-card h3 {
        font-size: 26px;
    }
    
    .closing-card p {
        text-align: center;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .program-card,
    .benefit-card,
    .story-card,
    .impact-stat {
        padding: 25px 20px;
    }
    
    .saplings-intro-section .intro-text {
        text-align: center;
    }
}

/* Success Stories Page Styles */
.success-hero {
    background: linear-gradient(135deg, rgba(62, 116, 88, 0.95), rgba(44, 90, 66, 0.95)), url('/assets/images/hero-section/hero1.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
}

.success-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.success-hero p {
    font-size: 20px;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Intro Section */
.success-intro {
    padding: 40px 20px;
    background: linear-gradient(135deg, #f8faf9 0%, #ffffff 100%);
}

.success-intro .container {
    max-width: 1000px;
    margin: 0 auto;
    /* text-align: center; */
}

.success-intro .section-title {
    font-size: 40px;
    color: #3E7458;
    font-weight: 700;
    margin-bottom: 20px;
}

.success-intro .intro-text {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
}

/* Stories Grid Section */
.success-stories {
    padding: 40px 20px;
    background: white;
}

.success-stories .container {
    max-width: 1200px;
    margin: 0 auto;
}

.success-stories .section-title {
    text-align: center;
    font-size: 40px;
    color: #3E7458;
    font-weight: 700;
    margin-bottom: 50px;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.story-card {
    background: linear-gradient(135deg, #f8faf9 0%, #ffffff 100%);
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid #3E7458;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(62, 116, 88, 0.15);
}

.alumni-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3E7458, #2c5a42);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 48px;
    margin: 0 auto 20px;
    border: 5px solid white;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.alumni-name {
    font-size: 24px;
    font-weight: 700;
    color: #1b1b18;
    text-align: center;
    margin-bottom: 5px;
}

.alumni-batch {
    text-align: center;
    color: #3E7458;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 15px;
}

.alumni-position {
    text-align: center;
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
    font-weight: 500;
}

.alumni-quote {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    font-style: italic;
    text-align: center;
    position: relative;
    padding: 20px 0;
}

.alumni-quote::before {
    content: '"';
    font-size: 60px;
    color: #3E7458;
    opacity: 0.2;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-family: Georgia, serif;
}

/* Featured Story Section */
.featured-story {
    padding: 40px 20px;
    background: linear-gradient(135deg, #f0f8f4 0%, #ffffff 100%);
}

.featured-story .container {
    max-width: 1200px;
    margin: 0 auto;
}

.featured-story .section-title {
    text-align: center;
    font-size: 40px;
    color: #3E7458;
    font-weight: 700;
    margin-bottom: 50px;
}

.featured-content {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 0;
}

.featured-image {
    background: linear-gradient(135deg, #3E7458, #2c5a42);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.featured-image i {
    font-size: 150px;
    color: white;
    opacity: 0.9;
}

.featured-text {
    padding: 60px;
}

.featured-text h3 {
    font-size: 32px;
    color: #1b1b18;
    font-weight: 700;
    margin-bottom: 10px;
}

.featured-text .batch {
    color: #3E7458;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 8px;
}

.featured-text .position {
    color: #666;
    font-size: 16px;
    margin-bottom: 30px;
}

.featured-text .story {
    font-size: 16px;
    color: #555;
    line-height: 1.9;
    margin-bottom: 20px;
}

.featured-text .story:last-child {
    margin-bottom: 0;
}

/* Stats Section */
.success-stats {
    padding: 80px 20px;
    background: linear-gradient(135deg, #3E7458 0%, #2c5a42 100%);
    color: white;
}

.success-stats .container {
    max-width: 1200px;
    margin: 0 auto;
}

.success-stats .section-title {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 50px;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.stat-box {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-box:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.95;
}

/* CTA Section */
.success-cta {
    padding: 50px 20px;
    background: white;
    text-align: center;
}

.success-cta .container {
    max-width: 800px;
    margin: 0 auto;
}

.success-cta h2 {
    font-size: 36px;
    color: #3E7458;
    font-weight: 700;
    margin-bottom: 20px;
}

.success-cta p {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-btn-primary {
    background: linear-gradient(135deg, #3E7458, #2c5a42);
    color: white;
}

.cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(62, 116, 88, 0.3);
}

.cta-btn-secondary {
    background: transparent;
    color: #3E7458;
    border: 2px solid #3E7458;
}

.cta-btn-secondary:hover {
    background: #3E7458;
    color: white;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 968px) {
    .featured-content {
        grid-template-columns: 1fr;
    }

    .featured-image {
        padding: 40px;
    }

    .featured-image i {
        font-size: 100px;
    }

    .featured-text {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .success-hero h1 {
        font-size: 36px;
    }

    .success-hero p {
        font-size: 16px;
    }

    .section-title {
        font-size: 32px !important;
    }

    .stories-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Rise N Shine Page Styles */
.rise-shine-page {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Introduction Section */
.rise-intro-section {
    background: linear-gradient(135deg, #fff8e1 0%, #ffffff 100%);
    padding: 60px 20px;
}

.rise-intro-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.rise-intro-section .intro-content {
    /* text-align: center; */
    max-width: 900px;
    margin: 0 auto;
}

.rise-intro-section .section-title {
    font-size: 40px;
    color: #3E7458;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.rise-intro-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3E7458, #E37344);
    border-radius: 2px;
}

.rise-intro-section .intro-text {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

.rise-intro-section .highlight-box {
    background: linear-gradient(135deg, #3E7458 0%, #2a5240 100%);
    padding: 30px;
    border-radius: 15px;
    margin-top: 40px;
    color: white;
}

.rise-intro-section .highlight-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #fff;
}

.rise-intro-section .highlight-box p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    text-align: center;
}

/* Features Section */
.rise-features-section {
    padding: 80px 20px;
    background: white;
}

.rise-features-section .container {
    max-width: 1400px;
    margin: 0 auto;
}

.rise-features-section .section-title {
    text-align: center;
    font-size: 42px;
    color: #3E7458;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.rise-features-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3E7458, #E37344);
    border-radius: 2px;
}

.rise-features-section .section-subtitle {
    text-align: center;
    font-size: 17px;
    color: #666;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: white;
    border-radius: 16px;
    padding: 35px 28px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border-top: 5px solid #3E7458;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 213, 79, 0.05) 0%, rgba(227, 115, 68, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(255, 193, 7, 0.2);
    border-top-color: #E37344;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3E7458, #2a5240);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: white;
    font-size: 36px;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, #E37344, #c55a2d);
    transform: scale(1.1) rotate(360deg);
    color: #fff;
}

.feature-card h3 {
    font-size: 22px;
    color: #1b1b18;
    font-weight: 700;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.feature-card:hover h3 {
    color: #E37344;
}

.feature-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* Curriculum Section */
.rise-curriculum-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #fff8e1 0%, #ffffff 100%);
}

.rise-curriculum-section .container {
    max-width: 1400px;
    margin: 0 auto;
}

.curriculum-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.curriculum-content h2 {
    font-size: 38px;
    color: #3E7458;
    font-weight: 700;
    margin-bottom: 20px;
}

.curriculum-intro {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 35px;
}

.curriculum-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.curriculum-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.curriculum-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3E7458, #2a5240);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.curriculum-item:hover .curriculum-icon {
    background: linear-gradient(135deg, #E37344, #c55a2d);
    transform: scale(1.1);
}

.curriculum-text h4 {
    font-size: 19px;
    color: #1b1b18;
    font-weight: 700;
    margin-bottom: 8px;
}

.curriculum-text p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.curriculum-visual {
    position: relative;
}

.curriculum-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.curriculum-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.curriculum-image:hover img {
    transform: scale(1.05);
}

/* Age Groups Section */
.rise-agegroups-section {
    padding: 80px 20px;
    background: white;
}

.rise-agegroups-section .container {
    max-width: 1400px;
    margin: 0 auto;
}

.rise-agegroups-section .section-title {
    text-align: center;
    font-size: 42px;
    color: #3E7458;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.rise-agegroups-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3E7458, #E37344);
    border-radius: 2px;
}

.rise-agegroups-section .section-subtitle {
    text-align: center;
    font-size: 17px;
    color: #666;
    margin-bottom: 50px;
}

.agegroups-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.agegroup-card {
    background: white;
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #3E7458;
    transition: all 0.4s ease;
}

.agegroup-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(255, 193, 7, 0.2);
    border-left-color: #E37344;
}

.agegroup-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
}

.agegroup-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3E7458, #2a5240);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.agegroup-card:hover .agegroup-icon {
    background: linear-gradient(135deg, #E37344, #c55a2d);
    transform: rotate(360deg);
}

.agegroup-card h3 {
    font-size: 20px;
    color: #1b1b18;
    font-weight: 700;
    margin: 0;
    transition: color 0.3s ease;
}

.agegroup-card:hover h3 {
    color: #E37344;
}

.agegroup-card .age-range {
    font-size: 14px;
    color: #E37344;
    font-weight: 600;
    margin-bottom: 12px;
}

.agegroup-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.agegroup-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.agegroup-card ul li {
    font-size: 14px;
    color: #555;
    padding: 6px 0 6px 25px;
    position: relative;
    line-height: 1.6;
}

.agegroup-card ul li::before {
    content: '★';
    position: absolute;
    left: 0;
    top: 6px;
    color: #3E7458;
    font-size: 14px;
}

/* Facilities Section */
.rise-facilities-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.rise-facilities-section .container {
    max-width: 1400px;
    margin: 0 auto;
}

.rise-facilities-section .section-title {
    text-align: center;
    font-size: 42px;
    color: #3E7458;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.rise-facilities-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3E7458, #E37344);
    border-radius: 2px;
}

.rise-facilities-section .section-subtitle {
    text-align: center;
    font-size: 17px;
    color: #666;
    margin-bottom: 50px;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.facility-card {
    background: white;
    padding: 32px 25px;
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s ease;
    border-bottom: 4px solid #3E7458;
}

.facility-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(62, 116, 88, 0.2);
    border-bottom-color: #E37344;
}

.facility-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3E7458, #2a5240);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 32px;
    transition: all 0.4s ease;
}

.facility-card:hover .facility-icon {
    background: linear-gradient(135deg, #E37344, #c55a2d);
    transform: scale(1.15) rotate(360deg);
}

.facility-card h4 {
    font-size: 20px;
    color: #1b1b18;
    font-weight: 700;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.facility-card:hover h4 {
    color: #E37344;
}

.facility-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Closing Section */
.rise-closing-section {
    padding: 80px 20px;
    background: white;
}

.rise-closing-section .container {
    max-width: 1000px;
    margin: 0 auto;
}

.closing-card {
    background: linear-gradient(135deg, #3E7458 0%, #2a5240 100%);
    padding: 50px 45px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(62, 116, 88, 0.3);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.closing-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.closing-card h3 {
    font-size: 32px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.closing-card p {
    font-size: 16px;
    color: #fff;
    line-height: 1.9;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.closing-card p:last-child {
    margin-bottom: 0;
}

.contact-cta {
    position: relative;
    z-index: 1;
}

.contact-btn {
    display: inline-block;
    padding: 15px 40px;
    background: #fff;
    color: #3E7458;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(62, 116, 88, 0.3);
}

.contact-btn:hover {
    background: #2a5240;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(62, 116, 88, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .curriculum-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .rise-intro-section .section-title,
    .rise-features-section .section-title,
    .rise-agegroups-section .section-title,
    .rise-facilities-section .section-title {
        font-size: 32px;
    }
    
    .curriculum-content h2 {
        font-size: 30px;
    }
    
    .features-grid,
    .agegroups-grid,
    .facilities-grid {
        grid-template-columns: 1fr;
    }
    
    .closing-card {
        padding: 35px 25px;
    }
    
    .closing-card h3 {
        font-size: 26px;
    }
    
    .closing-card p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .feature-card,
    .agegroup-card,
    .facility-card {
        padding: 25px 20px;
    }
    
    .rise-intro-section .intro-text {
        text-align: center;
    }
}


/* Wall of Fame Page Styles */
.wall-of-fame-page {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Introduction Section */
.fame-intro-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 60px 20px;
}

.fame-intro-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.fame-intro-section .intro-content {
    /* text-align: center; */
    max-width: 900px;
    margin: 0 auto;
}

.fame-intro-section .section-title {
    font-size: 40px;
    color: #3E7458;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.fame-intro-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3E7458, #E37344);
    border-radius: 2px;
}

.fame-intro-section .intro-text {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

/* Categories Section */
.fame-categories-section {
    padding: 80px 20px;
    background: white;
}

.fame-categories-section .container {
    max-width: 1400px;
    margin: 0 auto;
}

.fame-categories-section .section-title {
    text-align: center;
    font-size: 42px;
    color: #3E7458;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.fame-categories-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3E7458, #E37344);
    border-radius: 2px;
}

.fame-categories-section .section-subtitle {
    text-align: center;
    font-size: 17px;
    color: #666;
    margin-bottom: 50px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.category-card {
    background: white;
    border-radius: 16px;
    padding: 35px 28px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border-top: 5px solid #3E7458;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(62, 116, 88, 0.02) 0%, rgba(227, 115, 68, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.category-card:hover::before {
    opacity: 1;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(62, 116, 88, 0.15);
    border-top-color: #E37344;
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3E7458, #2a5240);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: white;
    font-size: 36px;
    transition: all 0.4s ease;
}

.category-card:hover .category-icon {
    background: linear-gradient(135deg, #E37344, #c55a2d);
    transform: scale(1.1) rotate(360deg);
}

.category-card h3 {
    font-size: 22px;
    color: #1b1b18;
    font-weight: 700;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.category-card:hover h3 {
    color: #E37344;
}

.category-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.category-highlight {
    background: linear-gradient(135deg, rgba(62, 116, 88, 0.1) 0%, rgba(227, 115, 68, 0.1) 100%);
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid #3E7458;
    font-size: 14px;
    color: #555;
    font-weight: 600;
    text-align: center;
}

/* Excellence Stories Section */
.excellence-stories-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.excellence-stories-section .container {
    max-width: 1400px;
    margin: 0 auto;
}

.excellence-stories-section .section-title {
    text-align: center;
    font-size: 42px;
    color: #3E7458;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.excellence-stories-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3E7458, #E37344);
    border-radius: 2px;
}

.excellence-stories-section .section-subtitle {
    text-align: center;
    font-size: 17px;
    color: #666;
    margin-bottom: 50px;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.story-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.story-image {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, #3E7458, #2a5240);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 80px;
    position: relative;
    overflow: hidden;
}

.story-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(62, 116, 88, 0.3), rgba(227, 115, 68, 0.3));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.story-card:hover .story-image::after {
    opacity: 1;
}

.story-content {
    padding: 30px;
}

.story-tag {
    display: inline-block;
    background: #3E7458;
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.story-card h3 {
    font-size: 21px;
    color: #1b1b18;
    font-weight: 700;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.story-card:hover h3 {
    color: #E37344;
}

.story-card .achievement {
    font-size: 14px;
    color: #E37344;
    font-weight: 600;
    margin-bottom: 12px;
}

.story-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.story-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(62, 116, 88, 0.15);
}

/* Achievement Statistics */
.achievement-stats-section {
    padding: 80px 20px;
    background: white;
}

.achievement-stats-section .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.achievement-stats-section .section-title {
    font-size: 42px;
    color: #3E7458;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.achievement-stats-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3E7458, #E37344);
    border-radius: 2px;
}

.achievement-stats-section .section-subtitle {
    font-size: 17px;
    color: #666;
    margin-bottom: 50px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stat-card {
    background: white;
    padding: 35px 25px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-bottom: 4px solid #3E7458;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(62, 116, 88, 0.15);
    border-bottom-color: #E37344;
}

.stat-card .stat-number {
    font-size: 52px;
    font-weight: 700;
    color: #3E7458;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.stat-card:hover .stat-number {
    color: #E37344;
}

.stat-card .stat-label {
    font-size: 16px;
    color: #666;
    font-weight: 600;
}

/* Recognition Section */
.recognition-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.recognition-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.recognition-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.recognition-visual {
    position: relative;
}

.recognition-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.recognition-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.recognition-image:hover img {
    transform: scale(1.05);
}

.recognition-content h2 {
    font-size: 38px;
    color: #3E7458;
    font-weight: 700;
    margin-bottom: 20px;
}

.recognition-intro {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 35px;
}

.recognition-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.recognition-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.recognition-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3E7458, #2a5240);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    font-weight: 700;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.recognition-item:hover .recognition-number {
    background: linear-gradient(135deg, #E37344, #c55a2d);
    transform: scale(1.1);
}

.recognition-text h4 {
    font-size: 19px;
    color: #1b1b18;
    font-weight: 700;
    margin-bottom: 8px;
}

.recognition-text p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Closing Section */
.fame-closing-section {
    padding: 80px 20px;
    background: white;
}

.fame-closing-section .container {
    max-width: 1000px;
    margin: 0 auto;
}

.closing-card {
    background: linear-gradient(135deg, #3E7458 0%, #2a5240 100%);
    padding: 50px 45px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(62, 116, 88, 0.2);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.closing-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.closing-card h3 {
    font-size: 32px;
    color: white;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.closing-card p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.9;
    margin-bottom: 20px;
    text-align: justify;
    position: relative;
    z-index: 1;
}

.closing-card p:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .recognition-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .fame-intro-section .section-title,
    .fame-categories-section .section-title,
    .excellence-stories-section .section-title,
    .achievement-stats-section .section-title,
    .recognition-section .section-title {
        font-size: 32px;
    }
    
    .recognition-content h2 {
        font-size: 30px;
    }
    
    .categories-grid,
    .stories-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .closing-card {
        padding: 35px 25px;
    }
    
    .closing-card h3 {
        font-size: 26px;
    }
    
    .closing-card p {
        text-align: center;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .category-card,
    .story-card,
    .stat-card {
        padding: 25px 20px;
    }
    
    .fame-intro-section .intro-text {
        text-align: center;
    }
}

/* Page Specific Styles */
.pupil-welfare-page {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Introduction Section */
.welfare-intro-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 60px 20px;
}

.welfare-intro-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.welfare-intro-section .intro-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.welfare-intro-section .section-title {
    font-size: 40px;
    color: #3E7458;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.welfare-intro-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3E7458, #E37344);
    border-radius: 2px;
}

.welfare-intro-section .intro-text {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

/* Core Areas Section */
.welfare-areas-section {
    padding: 80px 20px;
    background: white;
}

.welfare-areas-section .container {
    max-width: 1400px;
    margin: 0 auto;
}

.welfare-areas-section .section-title {
    text-align: center;
    font-size: 42px;
    color: #3E7458;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.welfare-areas-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3E7458, #E37344);
    border-radius: 2px;
}

.welfare-areas-section .section-subtitle {
    text-align: center;
    font-size: 17px;
    color: #666;
    margin-bottom: 50px;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.area-card {
    background: white;
    border-radius: 16px;
    padding: 35px 28px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border-top: 5px solid #3E7458;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.area-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(62, 116, 88, 0.02) 0%, rgba(227, 115, 68, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.area-card:hover::before {
    opacity: 1;
}

.area-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(62, 116, 88, 0.15);
    border-top-color: #E37344;
}

.area-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3E7458, #2a5240);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: white;
    font-size: 36px;
    transition: all 0.4s ease;
}

.area-card:hover .area-icon {
    background: linear-gradient(135deg, #E37344, #c55a2d);
    transform: scale(1.1) rotate(360deg);
}

.area-card h3 {
    font-size: 22px;
    color: #1b1b18;
    font-weight: 700;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.area-card:hover h3 {
    color: #E37344;
}

.area-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.area-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.area-features li {
    font-size: 14px;
    color: #555;
    padding: 8px 0 8px 28px;
    position: relative;
    line-height: 1.6;
}

.area-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 8px;
    color: #3E7458;
    font-weight: bold;
    font-size: 16px;
}

/* Services Section */
.welfare-services-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.welfare-services-section .container {
    max-width: 1400px;
    margin: 0 auto;
}

.welfare-services-section .section-title {
    text-align: center;
    font-size: 42px;
    color: #3E7458;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.welfare-services-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3E7458, #E37344);
    border-radius: 2px;
}

.welfare-services-section .section-subtitle {
    text-align: center;
    font-size: 17px;
    color: #666;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: white;
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #3E7458;
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(62, 116, 88, 0.15);
    border-left-color: #E37344;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3E7458, #2a5240);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, #E37344, #c55a2d);
    transform: rotate(360deg);
}

.service-card h3 {
    font-size: 20px;
    color: #1b1b18;
    font-weight: 700;
    margin: 0;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: #E37344;
}

.service-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* Initiatives Section */
.welfare-initiatives-section {
    padding: 80px 20px;
    background: white;
}

.welfare-initiatives-section .container {
    max-width: 1400px;
    margin: 0 auto;
}

.initiatives-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.initiatives-visual {
    position: relative;
}

.initiatives-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.initiatives-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.initiatives-image:hover img {
    transform: scale(1.05);
}

.initiatives-content h2 {
    font-size: 38px;
    color: #3E7458;
    font-weight: 700;
    margin-bottom: 20px;
}

.initiatives-intro {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 35px;
}

.initiatives-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.initiative-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.initiative-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3E7458, #2a5240);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    font-weight: 700;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.initiative-item:hover .initiative-number {
    background: linear-gradient(135deg, #E37344, #c55a2d);
    transform: scale(1.1);
}

.initiative-text h4 {
    font-size: 19px;
    color: #1b1b18;
    font-weight: 700;
    margin-bottom: 8px;
}

.initiative-text p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Commitment Section */
.welfare-commitment-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.welfare-commitment-section .container {
    max-width: 1400px;
    margin: 0 auto;
}

.welfare-commitment-section .section-title {
    text-align: center;
    font-size: 42px;
    color: #3E7458;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.welfare-commitment-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3E7458, #E37344);
    border-radius: 2px;
}

.welfare-commitment-section .section-subtitle {
    text-align: center;
    font-size: 17px;
    color: #666;
    margin-bottom: 50px;
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.commitment-card {
    background: white;
    padding: 32px 25px;
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s ease;
    border-bottom: 4px solid #3E7458;
}

.commitment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(62, 116, 88, 0.15);
    border-bottom-color: #E37344;
}

.commitment-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3E7458, #2a5240);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 32px;
    transition: all 0.4s ease;
}

.commitment-card:hover .commitment-icon {
    background: linear-gradient(135deg, #E37344, #c55a2d);
    transform: scale(1.15) rotate(360deg);
}

.commitment-card h4 {
    font-size: 20px;
    color: #1b1b18;
    font-weight: 700;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.commitment-card:hover h4 {
    color: #E37344;
}

.commitment-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Closing Section */
.welfare-closing-section {
    padding: 80px 20px;
    background: white;
}

.welfare-closing-section .container {
    max-width: 1000px;
    margin: 0 auto;
}

.closing-card {
    background: linear-gradient(135deg, #3E7458 0%, #2a5240 100%);
    padding: 50px 45px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(62, 116, 88, 0.2);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.closing-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.closing-card h3 {
    font-size: 32px;
    color: white;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.closing-card p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.9;
    margin-bottom: 20px;
    text-align: justify;
    position: relative;
    z-index: 1;
}

.closing-card p:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .initiatives-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .areas-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .welfare-intro-section .section-title,
    .welfare-areas-section .section-title,
    .welfare-services-section .section-title,
    .welfare-commitment-section .section-title {
        font-size: 32px;
    }
    
    .initiatives-content h2 {
        font-size: 30px;
    }
    
    .areas-grid,
    .services-grid,
    .commitment-grid {
        grid-template-columns: 1fr;
    }
    
    .closing-card {
        padding: 35px 25px;
    }
    
    .closing-card h3 {
        font-size: 26px;
    }
    
    .closing-card p {
        text-align: center;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .area-card,
    .service-card,
    .commitment-card {
        padding: 25px 20px;
    }
    
    .welfare-intro-section .intro-text {
        text-align: center;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Well-being Page Styles */
.well-being-page {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Introduction */
.wellbeing-intro {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 50px 20px;
    text-align: center;
}

.wellbeing-intro .container {
    max-width: 800px;
    margin: 0 auto;
}

.wellbeing-intro h2 {
    font-size: 36px;
    color: #3E7458;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.wellbeing-intro h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #3E7458, #E37344);
}

.wellbeing-intro p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-top: 30px;
}

/* Focus Areas */
.wellbeing-focus {
    padding: 60px 20px;
    background: white;
}

.wellbeing-focus .container {
    max-width: 1200px;
    margin: 0 auto;
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.focus-item {
    background: white;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #3E7458;
    transition: all 0.3s ease;
    text-align: center;
}

.focus-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(62, 116, 88, 0.15);
    border-top-color: #E37344;
}

.focus-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3E7458, #2a5240);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 32px;
    transition: all 0.3s ease;
}

.focus-item:hover .focus-icon {
    background: linear-gradient(135deg, #E37344, #c55a2d);
    transform: rotate(360deg);
}

.focus-item h3 {
    font-size: 20px;
    color: #1b1b18;
    font-weight: 700;
    margin-bottom: 12px;
}

.focus-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Support Section */
.wellbeing-support {
    padding: 50px 20px;
    background: linear-gradient(135deg, #3E7458 0%, #2a5240 100%);
    text-align: center;
}

.wellbeing-support .container {
    max-width: 900px;
    margin: 0 auto;
}

.wellbeing-support h2 {
    font-size: 32px;
    color: white;
    font-weight: 700;
    margin-bottom: 20px;
}

.wellbeing-support p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
}

.support-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 35px;
}

.support-feature {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.support-feature:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.support-feature i {
    font-size: 28px;
    color: #E37344;
    margin-bottom: 10px;
}

.support-feature h4 {
    font-size: 17px;
    color: white;
    font-weight: 600;
    margin-bottom: 8px;
}

.support-feature p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .wellbeing-intro h2 {
        font-size: 28px;
    }
    
    .focus-grid {
        grid-template-columns: 1fr;
    }
    
    .wellbeing-support h2 {
        font-size: 26px;
    }
    
    .support-features {
        grid-template-columns: 1fr;
    }
}

/* Community Reach Page Styles */
.community-reach-page {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Introduction Section */
.community-intro-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 60px 20px;
}

.community-intro-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.community-intro-section .intro-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.community-intro-section .section-title {
    font-size: 40px;
    color: #3E7458;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.community-intro-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3E7458, #E37344);
    border-radius: 2px;
}

.community-intro-section .intro-text {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

/* Programs Section */
.community-programs-section {
    padding: 40px 20px;
    background: white;
}

.community-programs-section .container {
    max-width: 1400px;
    margin: 0 auto;
}

.community-programs-section .section-title {
    text-align: center;
    font-size: 42px;
    color: #3E7458;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.community-programs-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3E7458, #E37344);
    border-radius: 2px;
}

.community-programs-section .section-subtitle {
    text-align: center;
    font-size: 17px;
    color: #666;
    margin-bottom: 50px;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.program-card {
    background: white;
    border-radius: 16px;
    padding: 35px 28px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #3E7458;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(62, 116, 88, 0.02) 0%, rgba(227, 115, 68, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.program-card:hover::before {
    opacity: 1;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(62, 116, 88, 0.15);
    border-left-color: #E37344;
}

.program-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3E7458, #2a5240);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: white;
    font-size: 36px;
    transition: all 0.4s ease;
}

.program-card:hover .program-icon {
    background: linear-gradient(135deg, #E37344, #c55a2d);
    transform: scale(1.1) rotate(360deg);
}

.program-card h3 {
    font-size: 22px;
    color: #1b1b18;
    font-weight: 700;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.program-card:hover h3 {
    color: #E37344;
}

.program-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* Initiatives Section */
.community-initiatives-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.community-initiatives-section .container {
    max-width: 1400px;
    margin: 0 auto;
}

.initiatives-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.initiatives-visual {
    position: relative;
}

.initiatives-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.initiatives-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.initiatives-image:hover img {
    transform: scale(1.05);
}

.initiatives-content h2 {
    font-size: 38px;
    color: #3E7458;
    font-weight: 700;
    margin-bottom: 20px;
}

.initiatives-intro {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 35px;
}

.initiatives-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.initiative-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.initiative-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3E7458, #2a5240);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    font-weight: 700;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.initiative-item:hover .initiative-number {
    background: linear-gradient(135deg, #E37344, #c55a2d);
    transform: scale(1.1);
}

.initiative-text h4 {
    font-size: 19px;
    color: #1b1b18;
    font-weight: 700;
    margin-bottom: 8px;
}

.initiative-text p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Partnerships Section */
.community-partnerships-section {
    padding: 80px 20px;
    background: white;
}

.community-partnerships-section .container {
    max-width: 1400px;
    margin: 0 auto;
}

.community-partnerships-section .section-title {
    text-align: center;
    font-size: 42px;
    color: #3E7458;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.community-partnerships-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3E7458, #E37344);
    border-radius: 2px;
}

.community-partnerships-section .section-subtitle {
    text-align: center;
    font-size: 17px;
    color: #666;
    margin-bottom: 50px;
}

.partnerships-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.partnership-card {
    background: white;
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    border-bottom: 4px solid #3E7458;
    transition: all 0.4s ease;
    text-align: center;
}

.partnership-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(62, 116, 88, 0.15);
    border-bottom-color: #E37344;
}

.partnership-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3E7458, #2a5240);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 32px;
    transition: all 0.4s ease;
}

.partnership-card:hover .partnership-icon {
    background: linear-gradient(135deg, #E37344, #c55a2d);
    transform: scale(1.15) rotate(360deg);
}

.partnership-card h3 {
    font-size: 20px;
    color: #1b1b18;
    font-weight: 700;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.partnership-card:hover h3 {
    color: #E37344;
}

.partnership-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Impact Section */
.community-impact-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.community-impact-section .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.community-impact-section .section-title {
    font-size: 42px;
    color: #3E7458;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.community-impact-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3E7458, #E37344);
    border-radius: 2px;
}

.community-impact-section .section-subtitle {
    font-size: 17px;
    color: #666;
    margin-bottom: 50px;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.impact-stat {
    background: white;
    padding: 35px 25px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.impact-stat:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(62, 116, 88, 0.15);
}

.impact-stat .stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #3E7458;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.impact-stat:hover .stat-number {
    color: #E37344;
}

.impact-stat .stat-label {
    font-size: 16px;
    color: #666;
    font-weight: 600;
}

/* Closing Section */
.community-closing-section {
    padding: 80px 20px;
    background: white;
}

.community-closing-section .container {
    max-width: 1000px;
    margin: 0 auto;
}

.closing-card {
    background: linear-gradient(135deg, #3E7458 0%, #2a5240 100%);
    padding: 50px 45px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(62, 116, 88, 0.2);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.closing-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.closing-card h3 {
    font-size: 32px;
    color: white;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.closing-card p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.9;
    margin-bottom: 20px;
    text-align: justify;
    position: relative;
    z-index: 1;
}

.closing-card p:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .initiatives-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .programs-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .community-intro-section .section-title,
    .community-programs-section .section-title,
    .community-partnerships-section .section-title,
    .community-impact-section .section-title {
        font-size: 32px;
    }
    
    .initiatives-content h2 {
        font-size: 30px;
    }
    
    .programs-grid,
    .partnerships-grid,
    .impact-stats {
        grid-template-columns: 1fr;
    }
    
    .closing-card {
        padding: 35px 25px;
    }
    
    .closing-card h3 {
        font-size: 26px;
    }
    
    .closing-card p {
        text-align: center;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .program-card,
    .partnership-card {
        padding: 25px 20px;
    }
    
    .community-intro-section .intro-text {
        text-align: center;
    }
}

.curriculum-pedagogy-page .cp-hero {
			background: linear-gradient(135deg, #3E7458 0%, #2c5a42 100%);
			padding: 80px 20px 60px;
			text-align: center;
		}

		.curriculum-pedagogy-page .cp-hero h1 {
			font-size: 48px;
			color: #fff;
			font-weight: 700;
			margin-bottom: 12px;
		}

		.curriculum-pedagogy-page .cp-hero p {
			font-size: 20px;
			color: rgba(255, 255, 255, 0.9);
		}

		.curriculum-pedagogy-page .cp-section {
			max-width: 1200px;
			margin: 60px auto;
			padding: 0 20px;
		}

		.curriculum-pedagogy-page .section-title {
			text-align: center;
			font-size: 38px;
			color: #3E7458;
			font-weight: 700;
			margin-bottom: 45px;
			position: relative;
			display: inline-block;
			left: 50%;
			transform: translateX(-50%);
		}

		.curriculum-pedagogy-page .section-title::after {
			content: '';
			position: absolute;
			bottom: -12px;
			left: 50%;
			transform: translateX(-50%);
			width: 80px;
			height: 4px;
			background: linear-gradient(90deg, #3E7458, #2c5a42);
			border-radius: 2px;
		}

		.curriculum-pedagogy-page .intro-card {
			background: #fff;
			padding: 36px;
			border-radius: 12px;
			box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
			line-height: 1.9;
			color: #555;
			font-size: 16px;
		}

		.curriculum-pedagogy-page .grid-3 {
			display: grid;
			grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
			gap: 25px;
		}

		.curriculum-pedagogy-page .card {
			background: #fff;
			padding: 28px;
			border-radius: 12px;
			box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
			border-top: 4px solid #3E7458;
		}

		.curriculum-pedagogy-page .card h3 {
			font-size: 18px;
			font-weight: 700;
			color: #1b1b18;
			margin-bottom: 10px;
		}

		.curriculum-pedagogy-page .card p {
			font-size: 14px;
			color: #666;
			line-height: 1.7;
		}

		.curriculum-pedagogy-page .pillars {
			display: grid;
			grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
			gap: 25px;
		}

		.curriculum-pedagogy-page .pillar {
			background: #fff;
			padding: 26px;
			border-radius: 12px;
			box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
			border-left: 5px solid #3E7458;
		}

		.curriculum-pedagogy-page .pillar h4 {
			font-size: 17px;
			font-weight: 700;
			color: #1b1b18;
			margin-bottom: 8px;
		}

		.curriculum-pedagogy-page .pillar p {
			font-size: 14px;
			color: #666;
			line-height: 1.7;
		}

		.curriculum-pedagogy-page .assessment {
			background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
			padding: 50px 20px;
			border-radius: 16px;
		}

		.curriculum-pedagogy-page .assessment-list {
			list-style: none;
			padding: 0;
			margin: 0;
			display: grid;
			grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
			gap: 20px;
		}

		.curriculum-pedagogy-page .assessment-list li {
			background: #fff;
			padding: 20px;
			border-radius: 12px;
			box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
			font-size: 14px;
			color: #555;
		}

		.curriculum-pedagogy-page .cta {
			background: linear-gradient(135deg, #3E7458 0%, #2c5a42 100%);
			color: #fff;
			padding: 50px 20px;
			text-align: center;
			border-radius: 18px;
			margin-top: 70px;
		}

		.curriculum-pedagogy-page .cta-text {
			font-size: 26px;
			font-weight: 700;
			margin-bottom: 18px;
		}

		.curriculum-pedagogy-page .cta-btn {
			display: inline-block;
			padding: 12px 30px;
			border-radius: 50px;
			background: #fff;
			color: #3E7458;
			font-weight: 600;
			text-decoration: none;
		}

		@media (max-width: 768px) {
			.curriculum-pedagogy-page .cp-hero h1 {
				font-size: 32px;
			}

			.curriculum-pedagogy-page .section-title {
				font-size: 28px;
			}
		}