/* CSS Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #2d3748;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  line-height: 1.2;
  color: #1a202c;
}

/* Top Bar */
.top-bar {
  background: #2d5016;
  color: white;
  padding: 8px 0;
  font-size: 0.875rem;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-info {
  display: flex;
  gap: 2rem;
}

.contact-info span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  color: white;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
  background: #ff8c42;
  transform: translateY(-2px);
}

/* Header Improvements */
.header {
  background: #fff;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 2.5rem;
  min-height: 80px;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-shrink: 0;
  min-width: 0;
}

.logo {
  width: 45px;
  height: 45px;
  object-fit: contain;
  vertical-align: middle;
}

.school-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  vertical-align: middle;
}

.school-name {
  font-size: 1rem;
  font-weight: 700;
  color: #2d5016;
  margin: 0;
  line-height: 1.1;
}

.school-subtitle {
  font-size: 0.75rem;
  color: #4a5568;
  margin: 0;
  font-weight: 500;
}

.school-motto {
  font-size: 0.65rem;
  color: #ff8c42;
  margin: 0;
  font-weight: 600;
  font-style: italic;
}

/* Navbar: Ensure single horizontal line, no wrapping or overflow */
.main-nav {
  display: flex;
  align-items: center;
  min-width: 0;
  flex: 1 1 auto;
  margin-left: 0.5rem;
}
.nav-menu {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.7rem;
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  margin: 0;
  min-height: unset;
  list-style: none;
  justify-content: flex-start;
}
.nav-link {
  display: flex;
  align-items: center;
  border-radius: 2rem;
  padding: 0.38rem 1rem;
  font-size: 0.93rem;
  font-weight: 600;
  background: transparent;
  transition: color 0.18s, background 0.18s, box-shadow 0.18s, border 0.18s;
  color: #4a5568;
  position: relative;
  letter-spacing: 0.02em;
  margin: 0 0.08rem;
  vertical-align: middle;
  white-space: nowrap;
  border: 1.5px solid transparent;
  box-shadow: none;
  text-decoration: none !important;
}
.nav-link:hover {
  background: transparent;
  color: #ff8c42;
  border: 1.5px solid transparent;
  box-shadow: none;
}
.nav-link.active {
  background: #ffecd9;
  color: #ff8c42;
  border: 1.5px solid #ff8c42;
  box-shadow: 0 2px 8px rgba(255, 140, 66, 0.10);
}
@media (max-width: 900px) {
  .nav-menu {
    border-radius: 1.2rem;
    padding: 0.18rem 0.4rem;
    min-height: 38px;
    gap: 0.3rem;
  }
  .nav-link {
    font-size: 0.97rem;
    padding: 0.4rem 0.7rem;
  }
}

.nav-link i {
  font-size: 0.6rem;
  transition: transform 0.3s ease;
}

.dropdown:hover .nav-link i {
  transform: rotate(180deg);
}

.dropdown {
  position: relative;
}
.dropdown-menu {
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 180px;
  margin-top: 0.5rem;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background: #fff7f2;
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(255, 140, 66, 0.10), 0 1.5px 6px rgba(255,140,66,0.07);
  padding: 0.4rem 0;
  transition: opacity 0.2s;
}
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.dropdown-menu a {
  display: block;
  padding: 0.5rem 1rem;
  color: #4a5568;
  text-decoration: none;
  font-size: 0.75rem;
  transition: all 0.2s ease;
}

.dropdown-menu a:hover {
  background: rgba(255, 140, 66, 0.1);
  color: #ff8c42;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 3px;
  cursor: pointer;
  padding: 0.4rem;
}

.mobile-menu-toggle span {
  width: 20px;
  height: 2px;
  background: #2d5016;
  border-radius: 1px;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  padding: 0;
  margin: 0;
  background: none;
}

.hero-slider {
  width: 100%;
  padding: 0;
  margin: 0;
}

.hero-slide {
  position: static;
  width: 100%;
  height: auto;
  opacity: 1;
  min-height: unset;
  transition: none;
}

.hero-slide.active {
  opacity: 1;
}

.hero-image {
  width: 100%;
  max-height: 100vh;
  display: block;
  object-fit: fill;
  margin: 0 auto;
}

/* Remove overlay if any */
.hero-overlay {
  display: none !important;
  background: none !important;
  padding: 0 !important;
}

.hero-content {
  max-width: 600px;
  color: white;
  animation: fadeInUp 1s ease-out;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #ff8c42;
  font-weight: 500;
}

.hero-description {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: #ff8c42;
  color: white;
  border-color: #ff8c42;
}

.btn-primary:hover {
  background: transparent;
  color: #ff8c42;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 140, 66, 0.3);
}

.btn-outline {
  background: transparent;
  color: white;
  border-color: white;
}

.btn-outline:hover {
  background: white;
  color: #2d5016;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.hero-indicators {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: #ff8c42;
}

/* Quick Stats */
.quick-stats {
  background: #2d5016;
  color: white;
  padding: 4rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  text-align: left;
}

.stat-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 140, 66, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon i {
  font-size: 2rem;
  color: #ff8c42;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: white;
}

.stat-label {
  font-size: 1.125rem;
  opacity: 0.9;
}

/* Section Styles */
section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  display: inline-block;
  background: rgba(255, 140, 66, 0.1);
  color: #ff8c42;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #ff8c42;
}

.section-description {
  font-size: 1.125rem;
  color: #718096;
  max-width: 600px;
  margin: 0 auto;
}

/* Welcome Section */
.welcome-section {
  background: #f7fafc;
}

.welcome-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.text-content h3 {
  font-size: 1.875rem;
  margin-bottom: 1.5rem;
  color: #2d5016;
}

.text-content p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  color: #4a5568;
  line-height: 1.7;
}

.features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.feature-item i {
  color: #ff8c42;
  font-size: 1.25rem;
}

.welcome-image {
  position: relative;
}

.main-image {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.image-overlay {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: rgba(45, 80, 22, 0.9);
  color: white;
  padding: 1.5rem;
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.overlay-content h4 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #ff8c42;
}

/* Programs Section */
.programs-section {
  background: white;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.program-card {
  background: white;
  border-radius: 15px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-align: center;
}

.program-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.program-card.featured {
  border-color: #ff8c42;
  transform: scale(1.05);
}

.program-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 140, 66, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.program-icon i {
  font-size: 2rem;
  color: #ff8c42;
}

.program-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #2d5016;
}

.program-grades {
  color: #ff8c42;
  font-weight: 600;
  margin-bottom: 1rem;
}

.program-card p {
  color: #4a5568;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.program-features {
  list-style: none;
  margin-bottom: 2rem;
}

.program-features li {
  padding: 0.5rem 0;
  color: #4a5568;
  position: relative;
  padding-left: 1.5rem;
}

.program-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ff8c42;
  font-weight: bold;
}

.program-link {
  color: #2d5016;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.program-link:hover {
  color: #ff8c42;
}

/* Principal's Message */
.principal-message {
  background: linear-gradient(135deg, #2d5016, #1a2e0a);
  color: white;
}

.message-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.message-text .section-tag {
  background: rgba(255, 140, 66, 0.2);
}

.message-text .section-title {
  color: white;
}

.message-text blockquote {
  font-size: 1.25rem;
  line-height: 1.7;
  font-style: italic;
  margin: 2rem 0;
  opacity: 0.9;
}

.principal-info {
  margin: 2rem 0;
}

.principal-info h4 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #ff8c42;
}

.principal-info p {
  opacity: 0.8;
  margin-bottom: 0.25rem;
}

.principal-photo {
  width: 100%;
  max-width: 402px;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Facilities Showcase */
.facilities-showcase {
  background: #f7fafc;
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.facility-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.facility-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.facility-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.facility-content {
  padding: 2rem;
}

.facility-content h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #2d5016;
}

.facility-content p {
  color: #4a5568;
  line-height: 1.6;
}

/* News & Events */
.news-events {
  background: white;
}

.news-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
}

.news-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.news-card.featured {
  grid-row: span 2;
}

.news-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.news-card.featured .news-image {
  height: 300px;
}

.news-content {
  padding: 1.5rem;
}

.news-date {
  color: #ff8c42;
  font-size: 0.875rem;
  font-weight: 600;
}

.news-content h3 {
  font-size: 1.25rem;
  margin: 0.5rem 0 1rem;
  color: #2d5016;
}

.news-content p {
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.news-link {
  color: #2d5016;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.news-link:hover {
  color: #ff8c42;
}

/* Testimonials */
.testimonials {
  background: #f7fafc;
}

.testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-card {
  background: white;
  border-radius: 15px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  display: none;
}

.testimonial-card.active {
  display: block;
}

.quote-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 140, 66, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.quote-icon i {
  font-size: 1.5rem;
  color: #ff8c42;
}

.testimonial-content p {
  font-size: 1.25rem;
  line-height: 1.7;
  color: #4a5568;
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}

.author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h4 {
  color: #2d5016;
  margin-bottom: 0.25rem;
}

.author-info p {
  color: #718096;
  font-size: 0.875rem;
  margin-bottom: 0.125rem;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #ff8c42, #e67e22);
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: white;
}

.cta-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-section .btn-primary {
  background: white;
  color: #ff8c42;
  border-color: white;
}

.cta-section .btn-primary:hover {
  background: transparent;
  color: white;
  border-color: white;
}

.cta-section .btn-outline {
  background: transparent;
  color: white;
  border-color: white;
}

.cta-section .btn-outline:hover {
  background: white;
  color: #ff8c42;
}

/* Footer */
.footer {
  background: #1a202c;
  color: white;
  padding: 2rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 0.8fr 2.2fr;
  gap: 2rem;
  margin-bottom: 2rem;
  align-items: start;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-logo-img {
  width: 77px;
  height: 60px;
  object-fit: contain;
}

.footer-school-info h3 {
  color: #ff8c42;
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
  white-space: nowrap;
}

.footer-school-info p {
  color: #a0aec0;
  font-size: 0.875rem;
}

.footer-motto {
  color: #ff8c42 !important;
  font-style: italic;
}

.footer-description {
  color: #a0aec0;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: #ff8c42;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #ff8c42;
  color: white !important;
  transform: translateY(-2px);
}

.footer-section h4 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}

.footer-section:nth-child(2) h4 {
  margin-bottom: 1rem;
}

.footer-section:nth-child(2) .footer-links {
  margin-bottom: 0;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #a0aec0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ff8c42;
}

.contact-info {
  display: flex;
  /* flex-direction: column; */
  gap: 1.2rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-item i {
  color: #ff8c42;
  margin-top: 0.25rem;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.contact-item div p {
  color: #a0aec0;
  margin-bottom: 0.4rem;
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid #2d3748;
  padding-top: 2rem;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a {
  color: #a0aec0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #ff8c42;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .welcome-content,
  .message-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .news-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
  .contact-info {
    gap: 1rem;
    flex-wrap: nowrap;
  }
  .top-bar-content {
    flex-direction: row;
    flex-wrap: nowrap;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 2rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    gap: 0;
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .nav-menu li {
    width: 100%;
    text-align: center;
    padding: 0.5rem 0;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: #f7fafc;
    margin-top: 0.5rem;
  }

  .hero {
    height: 70vh;
    min-height: 500px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .programs-grid {
    grid-template-columns: 1fr;
  }

  .facilities-grid {
    grid-template-columns: 1fr;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .header-content {
    flex-direction: column;
    gap: 1rem;
  }

  .logo-section {
    flex-direction: column;
    text-align: center;
  }

  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-item {
    flex-direction: column;
    text-align: center;
  }

  .btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* Birthday Section Styles */
.birthday-section {
  background: #f8fafc;
  padding: 60px 0 40px 0;
}
.birthday-section .section-header {
  text-align: center;
  margin-bottom: 2rem;
}
.birthday-cards-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
}
.birthday-cards-scroll {
  display: flex;
  gap: 2rem;
  animation: birthday-scroll 30s linear infinite;
  will-change: transform;
}
.birthday-card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 24px rgba(44, 62, 80, 0.08);
  padding: 1.5rem 1.25rem;
  min-width: 220px;
  max-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.birthday-card:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 8px 32px rgba(44, 62, 80, 0.16);
}
.birthday-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 3px solid #ff8c42;
}
.birthday-name {
  font-size: 1.15rem;
  font-weight: 600;
  color: #2d5016;
  margin-bottom: 0.25rem;
}
.birthday-date {
  font-size: 1rem;
  color: #ff8c42;
  font-weight: 500;
  margin-bottom: 0.15rem;
}
.birthday-class {
  font-size: 0.95rem;
  color: #2d3748;
  opacity: 0.8;
}
@keyframes birthday-scroll {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@media (max-width: 768px) {
  .birthday-cards-scroll {
    gap: 1rem;
    animation-duration: 18s;
  }
  .birthday-card {
    min-width: 160px;
    max-width: 160px;
    padding: 1rem 0.5rem;
  }
  .birthday-img {
    width: 60px;
    height: 60px;
  }
}

/* Modern Footer Styles */
.modern-footer {
  display: flex;
  flex-wrap: nowrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.5rem 0 1rem 0;
}
.footer-section {
  flex: 1 1 0;
  min-width: 200px;
  max-width: none;
  margin-bottom: 0;
}
.footer-section:nth-child(2) {
  flex: 0.5 1 0;
  min-width: 120px;
  max-width: 180px;
}
.footer-section:last-child {
  max-width: none;
  flex: 1.5 1 0;
}
.footer-logo-img {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  margin-bottom: 1rem;
}
.footer-school-info h3 {
  font-size: 1.3rem;
  margin: 0;
  color: #ff8c42;
  white-space: nowrap;
}
.footer-motto {
  font-size: 0.95rem;
  color: #b0b0b0;
}
.footer-description {
  margin: 1rem 0 1.5rem 0;
  color: #b0b0b0;
}
.footer-social a {
  color: #ff8c42;
  margin-right: -0.3rem;
  font-size: 1.2rem;
  transition: color 0.2s;
}
.footer-social a:hover {
  color: #fff !important;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 0.7rem;
}
.footer-links a {
  color: #b0b0b0;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #ff8c42;
}
.contact-info {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.5rem;
  gap: 0.7rem;
}
.contact-item i {
  color: #ff8c42;
  font-size: 1.1rem;
  margin-top: 0.2rem;
  min-width: 18px;
}
.contact-details {
  line-height: 1.4;
}
.footer-map {
  flex: 0.8 1 0;
  min-width: 200px;
  margin-top: 0;
}
.footer-map iframe {
  width: 100%;
  height: 150px;
  border-radius: 10px;
}
.footer-bottom {
  background: #1a222b;
  padding: 1rem 0 0.5rem 0;
  border-radius: 0 0 20px 20px;
  margin-top: 1rem;
}
.footer-bottom-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  color: #b0b0b0;
  font-size: 0.95rem;
}
.footer-bottom-links a {
  color: #ff8c42;
  margin-left: 1.2rem;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom-links a:hover {
  color: #fff;
}
@media (max-width: 1100px) {
  .modern-footer {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-section {
    max-width: 100%;
    min-width: 0;
    flex: 1 1 45%;
  }
  .footer-section:nth-child(2) {
    flex: 0.4 1 0;
    max-width: 150px;
  }
  .footer-section:last-child {
    flex: 1.6 1 0;
  }
  .footer-map {
    max-width: 100%;
  }
}
@media (max-width: 700px) {
  .modern-footer {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem 0 1rem 0;
  }
  .footer-section {
    width: 100%;
    max-width: 100%;
  }
  .footer-map iframe {
    height: 140px;
  }
}

.contact-flex {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 2rem;
}
.contact-details-block {
  flex: 1.2 1 0;
  min-width: 250px;
}
@media (max-width: 900px) {
  .contact-flex {
    flex-direction: column;
    gap: 1rem;
  }
  .contact-details-block, .footer-map {
    max-width: 100%;
    min-width: 0;
  }
}

/* Vision Page Styles */
.page-content {
  padding-top: 2rem;
  min-height: 80vh;
}

.page-header {
  background: linear-gradient(135deg, #2d5016 0%, #4a7c59 100%);
  color: white;
  padding: 3rem 0;
  margin-bottom: 3rem;
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.breadcrumb {
  font-size: 0.95rem;
  opacity: 0.9;
}

.breadcrumb a {
  color: #ff8c42;
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: white;
}

.content-section {
  padding: 2rem 0 4rem 0;
}

.vision-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.vision-text h2 {
  font-size: 2.25rem;
  color: #2d5016;
  margin-bottom: 2rem;
  font-weight: 700;
}

.vision-statement, .mission-statement {
  margin-bottom: 2.5rem;
}

.vision-statement h3, .mission-statement h3 {
  font-size: 1.5rem;
  color: #ff8c42;
  margin-bottom: 1rem;
  font-weight: 600;
}

.vision-statement p, .mission-statement p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #4a5568;
}

.values-section {
  margin-bottom: 2.5rem;
}

.values-section h3 {
  font-size: 1.5rem;
  color: #ff8c42;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.value-item {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.value-item i {
  font-size: 2rem;
  color: #ff8c42;
  margin-bottom: 1rem;
}

.value-item h4 {
  font-size: 1.25rem;
  color: #2d5016;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.value-item p {
  color: #4a5568;
  line-height: 1.6;
  font-size: 0.95rem;
}

.objectives-section h3 {
  font-size: 1.5rem;
  color: #ff8c42;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.objectives-list {
  list-style: none;
  padding: 0;
}

.objectives-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  line-height: 1.6;
  color: #4a5568;
  font-size: 1.05rem;
}

.objectives-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #ff8c42;
  font-weight: bold;
  font-size: 1.2rem;
}

.vision-image {
  position: sticky;
  top: 7rem;
}

.vision-img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Responsive Design for Vision Page */
@media (max-width: 1024px) {
  .vision-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .vision-image {
    position: static;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-header {
    padding: 2rem 0;
  }
  
  .page-header h1 {
    font-size: 2rem;
  }
  
  .vision-text h2 {
    font-size: 1.875rem;
  }
  
  .content-section {
    padding: 1rem 0 2rem 0;
  }
  
  .vision-content {
    gap: 2rem;
  }
  
  .value-item {
    padding: 1.25rem;
  }
}

@media (max-width: 480px) {
  .page-header h1 {
    font-size: 1.75rem;
  }
  
  .vision-text h2 {
    font-size: 1.5rem;
  }
  
  .values-grid {
    gap: 1rem;
  }
  
  .value-item {
    padding: 1rem;
  }
}

/* Responsive Header */
@media (max-width: 1400px) {
  .nav-link {
    padding: 0.35rem 0.4rem;
    font-size: 0.7rem;
  }
  
  .nav-link i {
    font-size: 0.55rem;
  }
  
  .dropdown-menu {
    min-width: 150px;
  }
  
  .dropdown-menu a {
    padding: 0.4rem 0.9rem;
    font-size: 0.7rem;
  }
}

@media (max-width: 1200px) {
  .nav-link {
    padding: 0.3rem 0.35rem;
    font-size: 0.65rem;
  }
  
  .nav-link i {
    font-size: 0.5rem;
  }
  
  .school-name {
    font-size: 0.9rem;
  }
  
  .school-subtitle {
    font-size: 0.7rem;
  }
  
  .school-motto {
    font-size: 0.6rem;
  }
  
  .logo {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 1024px) {
  .header-content {
    gap: 0.8rem;
  }
  
  .nav-menu {
    gap: 0;
  }
  
  .nav-link {
    padding: 0.25rem 0.3rem;
    font-size: 0.6rem;
  }
  
  .dropdown-menu {
    min-width: 140px;
  }
  
  .dropdown-menu a {
    padding: 0.35rem 0.8rem;
    font-size: 0.65rem;
  }
}

@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: 0.8rem;
    padding: 0.8rem 0;
  }
  
  .logo-section {
    justify-content: center;
  }
  
  .main-nav {
    width: 100%;
    justify-content: center;
  }
  
  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    padding: 0.8rem 0;
    margin-top: 0.8rem;
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .nav-menu li {
    width: 100%;
  }
  
  .nav-link {
    width: 100%;
    justify-content: center;
    padding: 0.8rem;
    margin: 0;
    border-radius: 0;
    font-size: 0.85rem;
  }
  
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(255, 140, 66, 0.05);
    border-radius: 0;
    margin-top: 0.4rem;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}

@media (max-width: 480px) {
  .school-name {
    font-size: 0.9rem;
  }
  
  .school-subtitle {
    font-size: 0.65rem;
  }
  
  .school-motto {
    font-size: 0.55rem;
  }
  
  .logo {
    width: 35px;
    height: 35px;
  }
  
  .nav-link {
    font-size: 0.8rem;
  }
}

/* About School Page Styles */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-text h2 {
  font-size: 2.25rem;
  color: #2d5016;
  margin-bottom: 2rem;
  font-weight: 700;
}

.about-intro {
  margin-bottom: 3rem;
}

.about-intro p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #4a5568;
}

.about-highlights {
  margin-bottom: 3rem;
}

.about-highlights h3 {
  font-size: 1.5rem;
  color: #ff8c42;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.highlight-item {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.highlight-item i {
  font-size: 2rem;
  color: #ff8c42;
  margin-bottom: 1rem;
}

.highlight-item h4 {
  font-size: 1.25rem;
  color: #2d5016;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.highlight-item p {
  color: #4a5568;
  line-height: 1.6;
  font-size: 0.95rem;
}

.about-stats {
  margin-bottom: 3rem;
}

.about-stats h3 {
  font-size: 1.5rem;
  color: #ff8c42;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.stat-card {
  background: linear-gradient(135deg, #2d5016 0%, #4a7c59 100%);
  color: white;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease;
}

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

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #ff8c42;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
  font-weight: 500;
}

.about-mission {
  margin-bottom: 2rem;
}

.about-mission h3 {
  font-size: 1.5rem;
  color: #ff8c42;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.about-mission p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #4a5568;
  margin-bottom: 1rem;
}

.about-image {
  position: sticky;
  top: 2rem;
}

.about-img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Responsive Design for About Page */
@media (max-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-image {
    position: static;
  }
  
  .highlights-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-text h2 {
    font-size: 1.875rem;
  }
  
  .about-intro p {
    font-size: 1rem;
  }
  
  .highlight-item {
    padding: 1.25rem;
  }
  
  .stat-card {
    padding: 1.25rem;
  }
  
  .stat-number {
    font-size: 1.75rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .about-text h2 {
    font-size: 1.5rem;
  }
  
  .highlight-item {
    padding: 1rem;
  }
  
  .stat-card {
    padding: 1rem;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
}

/* About School Welcome Section Styles */
.about-welcome-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  color: #222e3a;
}
.about-underline {
  width: 120px;
  height: 4px;
  margin: 0 auto 2.5rem auto;
  background: linear-gradient(90deg, #ff8c42 40%, #ffe066 60%);
  border-radius: 2px;
}
.about-welcome-section {
  padding: 2rem 0 4rem 0;
}
.about-welcome-layout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  /* max-width: 900px; */
  margin: 0 auto;
}
.about-welcome-image {
  flex: 1 1 320px;
  display: flex;
  justify-content: center;
}
.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 2px solid #eaeaea;
}
.about-welcome-text {
  flex: 1 1 380px;
  font-size: 1.1rem;
  color: #222e3a;
  line-height: 1.7;
  text-align: left;
  padding: 0 0.5rem;
}
@media (max-width: 900px) {
  .about-welcome-layout {
    flex-direction: column;
    gap: 2rem;
    max-width: 98vw;
  }
  .about-welcome-image, .about-welcome-text {
    width: 100%;
    max-width: 100%;
  }
  .about-img {
    width: 100%;
    max-width: 350px;
    height: auto;
  }
}
@media (max-width: 600px) {
  .about-welcome-title {
    font-size: 1.3rem;
  }
  .about-underline {
    width: 70px;
    height: 3px;
    margin-bottom: 1.5rem;
  }
  .about-welcome-section {
    padding: 1rem 0 2rem 0;
  }
  .about-welcome-layout {
    gap: 1.2rem;
  }
  .about-img {
    max-width: 98vw;
    min-width: 0;
    border-radius: 6px;
  }
  .about-welcome-text {
    font-size: 0.98rem;
    padding: 0;
  }
}

/* Logo Page Styles */
.logo-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.logo-text h2 {
  font-size: 2.25rem;
  color: #2d5016;
  margin-bottom: 2rem;
  font-weight: 700;
}

.logo-description {
  margin-bottom: 3rem;
}

.logo-description p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #4a5568;
}

.logo-elements {
  margin-bottom: 3rem;
}

.logo-elements h3 {
  font-size: 1.5rem;
  color: #ff8c42;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.elements-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.element-item {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.element-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.element-item i {
  font-size: 2rem;
  color: #ff8c42;
  margin-bottom: 1rem;
}

.element-item h4 {
  font-size: 1.25rem;
  color: #2d5016;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.element-item p {
  color: #4a5568;
  line-height: 1.6;
  font-size: 0.95rem;
}

.logo-colors {
  margin-bottom: 3rem;
}

.logo-colors h3 {
  font-size: 1.5rem;
  color: #ff8c42;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.colors-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.color-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.color-swatch {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  flex-shrink: 0;
}

.color-swatch.green {
  background: linear-gradient(135deg, #2d5016 0%, #4a7c59 100%);
}

.color-swatch.orange {
  background: linear-gradient(135deg, #ff8c42 0%, #ff6b35 100%);
}

.color-swatch.blue {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.color-info h4 {
  font-size: 1.25rem;
  color: #2d5016;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.color-info p {
  color: #4a5568;
  line-height: 1.6;
  font-size: 0.95rem;
}

.logo-motto {
  margin-bottom: 2rem;
}

.logo-motto h3 {
  font-size: 1.5rem;
  color: #ff8c42;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.logo-motto p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #4a5568;
}

.logo-display {
  position: sticky;
  top: 2rem;
}

.logo-showcase {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  text-align: center;
}

.logo-large {
  width: 200px;
  height: 200px;
  object-fit: contain;
  margin-bottom: 2rem;
}

.logo-caption h4 {
  font-size: 1.5rem;
  color: #2d5016;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.logo-caption p {
  font-size: 1.125rem;
  color: #ff8c42;
  font-weight: 600;
  font-style: italic;
}

/* Logo Page Hero Section */
.logo-hero {
  background: linear-gradient(90deg, #f7fafc 60%, #e6f0ea 100%);
  padding: 3rem 0 2rem 0;
}
.logo-hero-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
}
.logo-hero-text {
  flex: 1 1 350px;
  text-align: left;
}
.logo-hero-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #2d5016;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}
.logo-hero-underline {
  width: 90px;
  height: 4px;
  background: linear-gradient(90deg, #ff8c42 60%, #ffe066 100%);
  border-radius: 2px;
  margin-bottom: 1.5rem;
}
.logo-hero-desc {
  font-size: 1.1rem;
  color: #4a5568;
  line-height: 1.7;
}
.logo-hero-imgwrap {
  flex: 1 1 220px;
  display: flex;
  justify-content: center;
}
.logo-hero-img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(45, 80, 22, 0.10);
  background: white;
  padding: 1.5rem;
}

/* Logo Spotlight Card */
.logo-spotlight-section {
  background: #fff;
  padding: 2.5rem 0 2rem 0;
}
.logo-spotlight-card {
  background: linear-gradient(120deg, #e6f0ea 0%, #fff 100%);
  border-radius: 24px;
  box-shadow: 0 8px 40px rgba(45, 80, 22, 0.10);
  padding: 2.5rem 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 500px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.logo-spotlight-img {
  width: 160px;
  height: 160px;
  object-fit: contain;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 4px 24px rgba(45, 80, 22, 0.08);
  margin-bottom: 1.5rem;
}
.logo-spotlight-caption h2 {
  font-size: 1.4rem;
  color: #2d5016;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-align: center;
}
.logo-spotlight-motto {
  font-size: 1.1rem;
  color: #ff8c42;
  font-weight: 600;
  font-style: italic;
  text-align: center;
}

/* Logo Elements Section */
.logo-elements-section {
  background: #f7fafc;
  padding: 2.5rem 0 2rem 0;
}
.logo-section-title {
  text-align: center;
  font-size: 1.5rem;
  color: #2d5016;
  font-weight: 700;
  margin-bottom: 2rem;
  letter-spacing: 1px;
}
.logo-elements-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.logo-element-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  padding: 2rem 1.2rem 1.5rem 1.2rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.logo-element-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px rgba(45, 80, 22, 0.13);
}
.logo-element-icon {
  font-size: 2.2rem;
  color: #ff8c42;
  margin-bottom: 1rem;
}
.logo-element-card h4 {
  font-size: 1.1rem;
  color: #2d5016;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.logo-element-card p {
  color: #4a5568;
  font-size: 0.98rem;
  line-height: 1.6;
}

/* Logo Colors Section */
.logo-colors-section {
  background: #fff;
  padding: 2.5rem 0 2rem 0;
}
.logo-colors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.logo-color-card {
  background: #f7fafc;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.5rem 1.2rem;
}
.logo-color-swatch {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid #fff;
  box-shadow: 0 2px 10px rgba(45, 80, 22, 0.10);
}
.logo-color-swatch.green {
  background: linear-gradient(135deg, #2d5016 0%, #4a7c59 100%);
}
.logo-color-swatch.orange {
  background: linear-gradient(135deg, #ff8c42 0%, #ff6b35 100%);
}
.logo-color-swatch.blue {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}
.logo-color-info h4 {
  font-size: 1.1rem;
  color: #2d5016;
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.logo-color-info p {
  color: #4a5568;
  font-size: 0.97rem;
  line-height: 1.5;
}

/* Logo Motto Section */
.logo-motto-section {
  background: #f7fafc;
  padding: 2.5rem 0 2rem 0;
}
.logo-motto-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  max-width: 700px;
  margin: 0 auto;
  padding: 2.2rem 1.5rem 1.7rem 1.5rem;
  text-align: center;
}
.logo-motto-card h3 {
  font-size: 1.3rem;
  color: #ff8c42;
  font-weight: 700;
  margin-bottom: 1rem;
}
.logo-motto-card p {
  color: #4a5568;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Responsive Design for Logo Page */
@media (max-width: 1100px) {
  .logo-hero-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  .logo-hero-text {
    text-align: center;
  }
  .logo-hero-imgwrap {
    justify-content: center;
  }
  .logo-elements-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
  .logo-colors-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}
@media (max-width: 700px) {
  .logo-hero-title {
    font-size: 1.3rem;
  }
  .logo-hero-img {
    width: 120px;
    height: 120px;
    padding: 0.7rem;
  }
  .logo-spotlight-card {
    padding: 1.2rem 0.5rem 1rem 0.5rem;
  }
  .logo-spotlight-img {
    width: 90px;
    height: 90px;
  }
  .logo-elements-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .logo-colors-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .logo-motto-card {
    padding: 1.2rem 0.5rem 1rem 0.5rem;
  }
}

/* Manager Page Layout Styles */
.manager-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  color: #222e3a;
}
.manager-underline {
  width: 120px;
  height: 4px;
  margin: 0 auto 2.5rem auto;
  background: linear-gradient(90deg, #ff8c42 40%, #ffe066 60%);
  border-radius: 2px;
}
.manager-section {
  padding: 2rem 0 4rem 0;
}
.manager-layout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  /* max-width: 900px; */
  margin: 0 auto;
}
.manager-image-block {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.manager-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 2px solid #eaeaea;
  background: #fff;
}
.manager-name {
  font-size: 1.05rem;
  font-weight: 600;
  color: #222e3a;
  margin-top: 0.7rem;
  text-align: center;
}
.manager-designation {
  font-size: 0.95rem;
  color: #4a5568;
  margin-bottom: 0.5rem;
  text-align: center;
}
.manager-message-text {
  flex: 1 1 380px;
  font-size: 1.1rem;
  color: #222e3a;
  line-height: 1.7;
  text-align: left;
  padding: 0 0.5rem;
}
@media (max-width: 900px) {
  .manager-layout {
    flex-direction: column;
    gap: 2rem;
    max-width: 98vw;
  }
  .manager-image-block, .manager-message-text {
    width: 100%;
    max-width: 100%;
  }
  .manager-img {
    width: 100%;
    max-width: 260px;
    height: auto;
  }
}
@media (max-width: 600px) {
  .manager-title {
    font-size: 1.3rem;
  }
  .manager-underline {
    width: 70px;
    height: 3px;
    margin-bottom: 1.5rem;
  }
  .manager-section {
    padding: 1rem 0 2rem 0;
  }
  .manager-layout {
    gap: 1.2rem;
  }
  .manager-img {
    max-width: 98vw;
    min-width: 0;
    border-radius: 6px;
  }
  .manager-message-text {
    font-size: 0.98rem;
    padding: 0;
  }
}

/* Principal Page Layout Styles */
.principal-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  color: #222e3a;
}
.principal-underline {
  width: 120px;
  height: 4px;
  margin: 0 auto 2.5rem auto;
  background: linear-gradient(90deg, #ff8c42 40%, #ffe066 60%);
  border-radius: 2px;
}
.principal-section {
  padding: 2rem 0 4rem 0;
}
.principal-layout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  /* max-width: 900px; */
  margin: 0 auto;
}
.principal-image-block {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.principal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 2px solid #eaeaea;
  background: #fff;
}
.principal-name {
  font-size: 1.05rem;
  font-weight: 600;
  color: #222e3a;
  margin-top: 0.7rem;
  text-align: center;
}
.principal-designation {
  font-size: 0.95rem;
  color: #4a5568;
  margin-bottom: 0.5rem;
  text-align: center;
}
.principal-message-text {
  flex: 1 1 380px;
  font-size: 1.1rem;
  color: #222e3a;
  line-height: 1.7;
  text-align: left;
  padding: 0 0.5rem;
}
.principal-qualifications {
  margin-top: 1.5rem;
  font-size: 1rem;
  color: #4a5568;
}
@media (max-width: 900px) {
  .principal-layout {
    flex-direction: column;
    gap: 2rem;
    max-width: 98vw;
  }
  .principal-image-block, .principal-message-text {
    width: 100%;
    max-width: 100%;
  }
  .principal-img {
    width: 100%;
    max-width: 260px;
    height: auto;
  }
}
@media (max-width: 600px) {
  .principal-title {
    font-size: 1.3rem;
  }
  .principal-underline {
    width: 70px;
    height: 3px;
    margin-bottom: 1.5rem;
  }
  .principal-section {
    padding: 1rem 0 2rem 0;
  }
  .principal-layout {
    gap: 1.2rem;
  }
  .principal-img {
    max-width: 98vw;
    min-width: 0;
    border-radius: 6px;
  }
  .principal-message-text {
    font-size: 0.98rem;
    padding: 0;
  }
}

/* Infrastructure Page Styles */
.infra-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  color: #222e3a;
}
.infra-underline {
  width: 120px;
  height: 4px;
  margin: 0 auto 2.5rem auto;
  background: linear-gradient(90deg, #ff8c42 40%, #ffe066 60%);
  border-radius: 2px;
}
.infra-section {
  padding: 2rem 0 4rem 0;
}
.infra-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.infra-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 2px solid #eaeaea;
  background: #fff;
  transition: transform 0.3s, box-shadow 0.3s;
}
.infra-img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 32px rgba(45, 80, 22, 0.13);
}
@media (max-width: 700px) {
  .infra-title {
    font-size: 1.3rem;
  }
  .infra-underline {
    width: 70px;
    height: 3px;
    margin-bottom: 1.5rem;
  }
  .infra-section {
    padding: 1rem 0 2rem 0;
  }
  .infra-grid {
    gap: 1rem;
  }
  .infra-img {
    height: 150px;
    border-radius: 8px;
  }
}

/* Events Page Styles */
.events-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  color: #222e3a;
}
.events-underline {
  width: 120px;
  height: 4px;
  margin: 0 auto 2.5rem auto;
  background: linear-gradient(90deg, #ff8c42 40%, #ffe066 60%);
  border-radius: 2px;
}
.events-section {
  padding: 2rem 0 4rem 0;
}
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.event-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  transition: transform 0.35s cubic-bezier(.21,1.02,.73,1.01), box-shadow 0.35s cubic-bezier(.21,1.02,.73,1.01);
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  animation: eventCardFadeIn 0.7s forwards;
}
.event-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(45, 80, 22, 0.13);
}
@keyframes eventCardFadeIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.event-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}
.event-content {
  padding: 1.2rem 1.2rem 1.5rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.event-title {
  font-size: 1.15rem;
  color: #2d5016;
  font-weight: 700;
  margin-bottom: 0.7rem;
}
.event-desc {
  color: #4a5568;
  font-size: 1rem;
  line-height: 1.6;
}
@media (max-width: 700px) {
  .events-title {
    font-size: 1.3rem;
  }
  .events-underline {
    width: 70px;
    height: 3px;
    margin-bottom: 1.5rem;
  }
  .events-section {
    padding: 1rem 0 2rem 0;
  }
  .events-grid {
    gap: 1rem;
  }
  .event-img {
    height: 120px;
    border-radius: 8px 8px 0 0;
  }
  .event-content {
    padding: 0.8rem 0.8rem 1rem 0.8rem;
  }
  .event-title {
    font-size: 1rem;
  }
  .event-desc {
    font-size: 0.95rem;
  }
}

/* Contact Us Page Styles */
.contact-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  color: #222e3a;
}
.contact-underline {
  width: 120px;
  height: 4px;
  margin: 0 auto 2.5rem auto;
  background: linear-gradient(90deg, #ff8c42 40%, #ffe066 60%);
  border-radius: 2px;
}
.contact-section {
  padding: 2rem 0 4rem 0;
}
.contact-form-map-layout {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.contact-form {
  flex: 1 1 340px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.contact-form h2 {
  font-size: 1.3rem;
  color: #2d5016;
  font-weight: 700;
  margin-bottom: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group label {
  font-size: 0.98rem;
  color: #4a5568;
  font-weight: 500;
}
.form-group input,
.form-group textarea {
  padding: 0.7rem 1rem;
  border: 1.5px solid #eaeaea;
  border-radius: 8px;
  font-size: 1rem;
  background: #f7fafc;
  color: #222e3a;
  transition: border 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
  border: 1.5px solid #ff8c42;
  outline: none;
}
.contact-submit-btn {
  background: linear-gradient(90deg, #ff8c42 60%, #ffe066 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  border: none;
  border-radius: 8px;
  padding: 0.9rem 0;
  margin-top: 0.5rem;
  cursor: pointer;
  transition: background 0.2s;
}
.contact-submit-btn:hover {
  background: linear-gradient(90deg, #ffe066 60%, #ff8c42 100%);
  color: #2d5016;
}
.contact-map-block {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  margin-top: 0;
  max-width: 500px;
}
.contact-map-block h2 {
  font-size: 1.15rem;
  color: #2d5016;
  font-weight: 700;
  margin-bottom: 1rem;
}
.contact-map-block iframe {
  width: 100%;
  min-height: 220px;
  border-radius: 10px;
  border: none;
  margin-top: 0.5rem;
}
@media (max-width: 900px) {
  .contact-form-map-layout {
    flex-direction: column;
    gap: 2rem;
    max-width: 98vw;
  }
  .contact-form, .contact-map-block {
    width: 100%;
    max-width: 100%;
    padding: 1.2rem 0.7rem 1rem 0.7rem;
  }
}
@media (max-width: 600px) {
  .contact-title {
    font-size: 1.3rem;
  }
  .contact-underline {
    width: 70px;
    height: 3px;
    margin-bottom: 1.5rem;
  }
  .contact-section {
    padding: 1rem 0 2rem 0;
  }
  .contact-form-map-layout {
    gap: 1.2rem;
  }
  .contact-form, .contact-map-block {
    padding: 0.7rem 0.2rem 0.7rem 0.2rem;
  }
  .contact-map-block iframe {
    min-height: 160px;
  }
}

/* Career Page Styles */
.career-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  color: #222e3a;
}
.career-underline {
  width: 120px;
  height: 4px;
  margin: 0 auto 2.5rem auto;
  background: linear-gradient(90deg, #ff8c42 40%, #ffe066 60%);
  border-radius: 2px;
}
.career-section {
  padding: 2rem 0 4rem 0;
}
.career-intro {
  text-align: center;
  font-size: 1.1rem;
  color: #4a5568;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Career Application Form Styles */
.career-application-form {
  max-width: 900px;
  margin: 0 auto;
}

.form-container {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  padding: 2.5rem;
}

.form-title {
  font-size: 1.5rem;
  color: #2d5016;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
  border-bottom: 2px solid #ff8c42;
  padding-bottom: 1rem;
}

.application-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.95rem;
  color: #2d5016;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.8rem 1rem;
  border: 1.5px solid #eaeaea;
  border-radius: 8px;
  font-size: 1rem;
  background: #f7fafc;
  color: #222e3a;
  transition: border 0.2s, box-shadow 0.2s;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border: 1.5px solid #ff8c42;
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 140, 66, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.file-help {
  font-size: 0.85rem;
  color: #718096;
  margin-top: 0.25rem;
}

.form-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #eaeaea;
}

.submit-btn {
  background: linear-gradient(90deg, #ff8c42 60%, #ffe066 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  border: none;
  border-radius: 8px;
  padding: 0.9rem 2rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(255,140,66,0.08);
}

.submit-btn:hover {
  background: linear-gradient(90deg, #ffe066 60%, #ff8c42 100%);
  color: #2d5016;
  transform: translateY(-2px);
}

.reset-btn {
  background: #f7fafc;
  color: #4a5568;
  font-weight: 600;
  font-size: 1.05rem;
  border: 1.5px solid #eaeaea;
  border-radius: 8px;
  padding: 0.9rem 2rem;
  cursor: pointer;
  transition: all 0.2s;
}

.reset-btn:hover {
  background: #eaeaea;
  color: #2d5016;
  border-color: #cbd5e0;
}
@media (max-width: 700px) {
  .career-title {
    font-size: 1.3rem;
  }
  .career-underline {
    width: 70px;
    height: 3px;
    margin-bottom: 1.5rem;
  }
  .career-section {
    padding: 1rem 0 2rem 0;
  }
  
  .form-container {
    padding: 1.5rem;
    margin: 0 1rem;
  }
  
  .form-title {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .form-actions {
    flex-direction: column;
    gap: 0.8rem;
  }
  
  .submit-btn,
  .reset-btn {
    width: 100%;
    padding: 0.8rem 1.5rem;
  }
}

/* --- Modern Animations & Effects --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(.21,1.02,.73,1.01), transform 0.8s cubic-bezier(.21,1.02,.73,1.01);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-up { transform: translateY(40px); }
.reveal-down { transform: translateY(-40px); }
.reveal.visible.reveal-left,
.reveal.visible.reveal-right,
.reveal.visible.reveal-up,
.reveal.visible.reveal-down {
  transform: none;
}

/* Glowing Button Effect */
.glow-hover {
  box-shadow: 0 0 0 rgba(255,140,66,0.7);
  transition: box-shadow 0.3s;
}
.glow-hover:hover {
  box-shadow: 0 0 16px 4px rgba(255,140,66,0.5), 0 2px 8px rgba(255,140,66,0.15);
}

/* Animated Gradient Background */
.animated-gradient-bg {
  background: #ff8c42 !important;
  background-size: 200% 200% !important;
  animation: none !important;
}

/* Floating Icon Animation */
.floating-icon {
  animation: floating 2.5s ease-in-out infinite alternate;
}
@keyframes floating {
  0% { transform: translateY(0); }
  100% { transform: translateY(-12px); }
}

/* Card Hover Pop */
.card-pop {
  transition: transform 0.3s cubic-bezier(.21,1.02,.73,1.01), box-shadow 0.3s cubic-bezier(.21,1.02,.73,1.01);
}
.card-pop:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 16px 40px rgba(255,140,66,0.13), 0 2px 8px rgba(45,80,22,0.08);
}

/* Animated Underline for Section Titles */
.section-title {
  position: relative;
  overflow: hidden;
}
.section-title::after {
  content: '';
  display: block;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff8c42 40%, #ff8c42 100%) !important;
  border-radius: 2px;
  margin: 0.5rem auto 0 auto;
  transition: width 0.6s cubic-bezier(.21,1.02,.73,1.01);
}
.section-title.revealed::after {
  width: 120px;
}

/* Animated Button Gradient */
.btn-animated {
  background: linear-gradient(90deg, #ff8c42 0%, #ff8c42 100%) !important;
  background-size: 200% 200% !important;
  animation: btnGradient 2.5s linear infinite alternate;
  color: #fff !important;
  border: none;
  box-shadow: 0 2px 8px rgba(255,140,66,0.08);
}
@keyframes btnGradient {
  0% {background-position:0% 50%}
  100% {background-position:100% 50%}
}

/* Animate images on hover */
img.animated-img {
  transition: transform 0.4s cubic-bezier(.21,1.02,.73,1.01), box-shadow 0.4s cubic-bezier(.21,1.02,.73,1.01);
}
img.animated-img:hover {
  transform: scale(1.05) rotate(-2deg);
  box-shadow: 0 8px 32px rgba(45,80,22,0.13);
}

/* Animate icons on hover */
.animated-icon {
  transition: color 0.3s, transform 0.3s;
}
.animated-icon:hover {
  /* color: #ff8c42; */
  transform: scale(1.2) rotate(-8deg);
}

/* --- Updated Modern Green Gradient --- */
/* // (Reverted: Remove all custom :root, green gradient, and related overrides) */
/* // ... existing code ... */

/* Navbar Modernization */
.navbar-blur {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(44,62,80,0.10), 0 1.5px 6px rgba(45,80,22,0.07);
  border-bottom: 1.5px solid #eaeaea;
}
.logo {
  width: 70px !important;
  height: 70px !important;
  min-width: 70px;
  min-height: 70px;
  max-width: 70px;
  max-height: 70px;
}
.nav-link {
  font-size: 0.87rem;
  padding: 0.5rem 0.7rem;
  letter-spacing: 0.01em;
  position: relative;
  transition: color 0.2s, background 0.2s;
}
.nav-underline::after {
  content: '';
  display: block;
  position: absolute;
  left: 20%;
  right: 20%;
  bottom: 0.3rem;
  height: 2.5px;
  background: linear-gradient(90deg, #ff8c42 40%, #ff8c42 100%) !important;
  border-radius: 2px;
  width: 0;
  transition: width 0.35s cubic-bezier(.21,1.02,.73,1.01);
}
.nav-underline:hover::after,
.nav-underline:focus::after,
.nav-underline.active::after {
  width: 60%;
}

@media (max-width: 900px) {
  .logo {
    width: 48px !important;
    height: 48px !important;
    min-width: 48px;
    min-height: 48px;
    max-width: 48px;
    max-height: 48px;
  }
  .nav-link {
    font-size: 0.93rem;
    padding: 0.5rem 0.5rem;
  }
}
@media (max-width: 600px) {
  .logo {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px;
    min-height: 38px;
    max-width: 38px;
    max-height: 38px;
  }
  .nav-link {
    font-size: 0.9rem;
    padding: 0.5rem 0.5rem;
  }
}

/* Marquee bar styles */
.marquee-bar {
  width: 100%;
  background: #ff8c42;
  height: 44px;
  overflow: hidden;
  position: relative;
  z-index: 900;
}
.marquee-text {
  display: inline-block;
  white-space: nowrap;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 1.25rem;
  line-height: 44px;
  padding-left: 100vw;
  animation: marquee-scroll 12s linear infinite;
}
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100vw); }
}
@media (max-width: 600px) {
  .marquee-text {
    font-size: 1rem;
    line-height: 36px;
  }
  .marquee-bar {
    height: 36px;
  }
}
