body {
  font-family: 'Open Sans', sans-serif;
  text-align: center;
  margin: 0;
  padding: 20px;
}
h1, h2, h3, .welcome-text, .facility-section h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

  
  .logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
  }
  
  .logo {
    width: 100px;
    margin: 0 10px;
    color: #444;
  }
  
  .line {
    height: 3px;
    width: 120px;
    background-color: #006400; 
  }
  .line2 {
    height: 3px;
    width: 120px;
    background-color: #006400; 
  }
  .welcome-text {
    font-size: 20px;
    font-weight: bold;
    color: #444;
    margin: 20px 0;
  }
  
  .description-box {
    max-width: 350px;
    margin: 0 auto 20px;
    padding: 15px;
    border: 2px solid black;
    border-radius: 15px;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.5;
  }
  
  .video-container {
    max-width: 350px;
    margin: 0 auto 20px;
  }
  
  video {
    width: 100%;
    border: 2px solid black;
  }
  
  .button-wrapper {
    margin-bottom: 50px;
  }
  
  .explore-btn {
  background-color: #006400;
  color: white;
  border: none;
  padding: 10px 30px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.explore-btn:hover {
  background-color: #00a000;
  transform: scale(1.05);
}

  .footer-bar {
    position: relative;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 10px 24px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    z-index: 999;
    border-radius: 12px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    max-width: 360px;
    width: 90%;
  }
  
  .footer-line {
    height: 3px;
    width: 60px;
    background-color: green;
    border: none;
    margin: 0; /* remove any default margin */
  }
  
  .footer-link {
    text-decoration: none;
    color: #1e5f1e;
    font-weight: 600;
    margin: 0; /* remove any default margin */
    transition: color 0.3s;
  }
  
  .footer-link:hover {
    color: #33aa33;
  }
  .facility {
  margin: 40px 0;
}

.slider {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: auto;
  overflow: hidden;
}

.slide {
  display: none;
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.slide.active {
  display: block;
}

.prev, .next {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  background-color: rgba(0,0,0,0.5);
  color: white;
  border: none;
  font-size: 24px;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
}

.prev { left: 10px; }
.next { right: 10px; }
  
 input {
  padding: 10px;
  width: 85%;
  border-radius: 8px;
  border: 1px solid #ccc;
  margin-top: 5px;
  font-size: 14px;
}
select {
  width: 90%;
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-top: 5px;
  margin-bottom: 15px;
  box-sizing: border-box;
  background-color: white;
  color: #333;
}
.Charges-Information {
  background-color: #f5f5f5;
  border: 2px solid #000000;
  padding: 20px;
  margin: 20px auto;
  width: 100%;
  max-width: 350px;
  border-radius: 10px;
  font-family: Arial, sans-serif;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.p2 {
  margin: 0;
  font-weight: bold;
  font-size: 1rem;
  color: #333;
  line-height: 1.7;
  white-space: pre-line;
}

.Charges-Information p::first-line {
  text-align: center;
  display: block;
  font-size: 1rem;
}
.location-section {
  text-align: center;
  padding: 40px 20px;
  background-color: #f8fdf8;
}

.location-title {
  font-size: 1.8rem;
  color: #006400;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 1px 1px 1px rgba(0, 100, 0, 0.1);
}

.map-container {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 100, 0, 0.15);
}
.more-info-wrapper {
  margin-top: -30px;
  margin-bottom: 10px;
}

.info-btn {
  background-color: #006400;
  color: white;
  border: none;
  padding: 10px 30px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  display: inline-block;
  margin-top: 60px; /* 👈 this pushes the button down */
}

.info-btn:hover {
  background-color: #00a000;
  transform: scale(1.05);
}

.overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background-color: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.info-modal {
  background: #fff;
  width: 80%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 30px;
  border-radius: 12px;
  position: relative;
  animation: fadeIn 0.3s ease-in-out;
}
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
.close-btn {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 24px;
  cursor: pointer;
  color: #333;
}
.facility-section {
  margin-top: 30px;
}
.facility-section h3 {
  margin-bottom: 10px;
  color: #004d00;
}
.slider {
  display: flex;
  overflow-x: auto;
  gap: 10px;
}
.slider img {
  max-height: 200px;
  border-radius: 10px;
  object-fit: cover;
}
.map-wrapper {
  margin-top: 15px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
/* Unified Slider Container */
/* Unified Slider Container */
.slider {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 30px auto;
  overflow: hidden;
  border-radius: 12px;
  background: white; /* White background behind images */
}

/* Sliding Track */
.slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

/* Slider Images */
.slider-track img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  border-radius: 10px;
  padding: 6px;
  flex-shrink: 0;
  background: white;
}

/* Navigation Buttons */
/* Add to your existing .slider-btn styles */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 32px;
  background: none;
  color: #004aad;
  border: none;
  cursor: pointer;
  z-index: 10;
  padding: 10px;
  transition: transform 0.2s ease, color 0.2s ease;
}

/* Hover lifts it slightly upward */
.slider-btn:hover {
  transform: translateY(-55%);
  color: #006400; /* darker green-blue on hover */
}

/* Click gives a press-down effect */
.slider-btn:active {
  transform: translateY(-45%) scale(0.95);
}

/* Positions */
.slider-btn.left {
  left: 10px;
}

.slider-btn.right {
  right: 10px;
}
/* Responsive */
@media (max-width: 768px) {
  .slider {
    max-width: 95%;
  }

  .slider-track img {
    max-height: 300px;
  }

  .slider-btn {
    font-size: 26px;
  }
}

.popup-subtitle-centered {
  display: flex;
  justify-content: center;
  text-align: left;
  margin: 0 auto 30px;
}

.popup-subtitle-centered ul {
  list-style: disc;
  padding-left: 20px;
  font-size: 16px;
  color: #333;
  line-height: 1.7;
  max-width: 500px;
}

.popup-subtitle ul {
  padding-left: 20px;
  list-style-type: disc;
  line-height: 1.6;
}
/* === TAB BAR + ACTIVE STATE === */
.tab-bar {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.tab-btn {
  background-color: white;
  color: #006400;
  border: 2px solid #006400;
  border-radius: 8px;
  padding: 10px 20px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn:hover {
  background-color: #006400;
  color: white;
}

.tab-btn.active {
  background-color: #006400;
  color: white;
}

/* === ABOUT US - TEAM CARD STYLING === */
.about-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
}

.team-card {
  background-color: #ffffff;
  border: 2px solid #ccc;
  border-radius: 10px;
  width: 250px;
  padding: 15px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  text-align: center;
  transition: transform 0.3s;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-card img {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

.team-card h4 {
  font-size: 18px;
  color: #006400;
  margin-bottom: 5px;
}

.team-card .name {
  font-weight: bold;
  margin-bottom: 5px;
}

.team-card .message {
  font-size: 14px;
  font-style: italic;
  color: #333;
}

.directors {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}


/* === CONTACT US SECTION === */
.contact-section {
  background-color: #f8f8f8;
  padding: 30px 20px;
  border-radius: 10px;
  max-width: 360px;
  margin: 0 auto;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.contact-section h2 {
  color: #006400;
  font-size: 22px;
  margin-bottom: 15px;
}

.contact-section p {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}

/* === RESPONSIVE TWEAKS === */
@media (max-width: 600px) {
  .tab-bar {
    flex-direction: column;
    align-items: center;
  }

  .team-card {
    width: 90%;
  }

  .contact-section {
    width: 90%;
  }
}
.feedback-display-section {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 900px;
  margin: auto;
}

.feedback-box {
  border: 2px solid #ccc;
  padding: 20px;
  border-radius: 15px;
  background-color: #f9f9f9;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.feedback-box h3 {
  margin: 0;
  color: #333;
  font-weight: 600;
}

.visit-date {
  font-size: 14px;
  color: #777;
  margin-bottom: 10px;
}

.feedback-text {
  font-size: 16px;
  margin: 10px 0;
}

.feedback-media {
  max-width: 280px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: contain; /* Ensures entire video is visible */
  background-color: #000;
  display: block;
  margin: 10px auto;
}

.overlay {
  position: fixed;
  display: none;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.feedback-modal {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  position: relative;
  font-family: 'Poppins', sans-serif;
}

.feedback-modal h2 {
  text-align: center;
  margin-bottom: 20px;
}

.feedback-modal label {
  display: block;
  margin: 10px 0 5px;
  font-weight: 600;
}

.feedback-modal input,
.feedback-modal textarea {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
}

.popup-btns {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.cancel-btn {
  background-color: #999;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 24px;
  font-weight: bold;
  color: #666;
  cursor: pointer;
}
.spinner {
  border: 3px solid #f3f3f3;
  border-top: 3px solid #444;
  border-radius: 50%;
  width: 14px;
  height: 14px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }

.floating-bottom-btn {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #000; /* black */
  color: white;
  padding: 14px 36px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.floating-bottom-btn:hover {
  background-color: #ff6b00; /* your orange hover color */
  transform: translateX(-50%) scale(1.03);
}






  
  