/* @import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&display=swap'); */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 10px 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
}

nav .logo {
  display: flex;
  align-items: center; /* Align image and text in the same row */
  gap: 10px; /* Adds spacing between the image and text */
}

nav .logo img {
  width: 65px; /* Slightly increased size for better visibility */
  height: auto; /* Maintain aspect ratio */
}

nav .logo h3 {
  color: #5a7e08;
  font-size: 1.4rem; /* Slightly increased for better emphasis */
  font-style: normal;
  margin: 0; /* Remove default margins for consistency */
  font-family: 'Times New Roman', Times, serif;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-size: 1.2rem;
    font-weight: 500;
}

nav ul li a:hover {
    color: #5a7e08;
}

nav .cta {
    background-color: #82aa23;
    color: white;
    padding: 8px 15px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    text-decoration: none;
}

nav .cta:hover {
    background-color: #5a7e08;
}

nav .menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

nav .menu-toggle div {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 4px 0;
}

nav ul li a:hover, 
nav ul li a.active {
    color: #5a7e08;
}

@media (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 50%;
        transform: translateX(50%);
        background: white;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        padding: 10px;
        border-radius: 5px;
        width: 100%;
        align-items: center;
    }

    nav ul.show {
        display: flex;
    }

    nav .menu-toggle {
        display: flex;
    }
}

header {
    background: url('../images/hero.jpg') no-repeat center center/cover;
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

header p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

header .form-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.form-container input,
.form-container select,
.form-container button {
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

.form-container button {
    background-color: #5a7e08;
    color: white;
    cursor: pointer;
    border-radius: 10px;
}

.form-container button:hover {
  background-color: #518b0e;
}

section {
    padding: 50px 20px;
    text-align: center;
}

section h1 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1rem;
}

section h2 {
  color: #5a7e08;
  margin-bottom: 1rem;
}

section p {
    max-width: 700px;
    margin: 0 auto 2rem;
}

.stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    font-weight: bold;
}

.stats div {
    margin: 10px;
    font-size: 1.2rem;
}

.stats span {
    font-size: 2rem;
    font-weight: bold;
    display: block;
    color: #5a7e08;
}

@media (max-width: 768px) {
    header {
      min-height: 110vh;
    }

    header h1 {
      font-size: clamp(1.5rem, 4vw, 2.5rem);
    }

    .form-container input,
    .form-container select,
    .form-container button {
        width: 100%;
        margin-bottom: 10px;
    }

    section h2 {
        font-size: 2rem;
    }

    .stats div {
        text-align: center;
    }
}

.cta {
  background-color: #5a7e08;
  color: white;
  padding: 8px 15px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  text-decoration: none;
  font-size: 16px;
  display: inline-block;
  text-align: center;
  transition: background-color 0.3s;
  white-space: nowrap;
}

.cta:hover {
  background-color: #518b0e;
}

/* Hide "Now" on small screens */
@media (max-width: 480px) {
  .cta .full-text {
    display: none;
  }
}


.services {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 50px;
  background-color: #becf97;
  background-size: cover;
  background-position: center;
  padding: 30px;
  border-radius: 10px;
}

.services h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  color: #333;
  font-size: 2rem;
  font-weight: bold;
}

.services h1 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  color: #5a7e08;
  font-size: 1.8rem;
  font-weight: bold;
}

/* Default card style */
.service {
  background-color: #5a7e08;
  color: white;
  padding: 25px;
  border-radius: 10px;
  flex: 1 1 calc(33.333% - 20px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease, background-color 0.3s ease;
  border: 2px solid transparent;
}

/* Hover effect */
.service:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  border: 2px solid #ffffff;
  background-color: #6b9012;
}

/* Heading inside each card */
.service h3 {
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.popular-suites {
  text-align: center;
  padding: 20px;
}

.popular-suites h2 {
  margin-bottom: 20px;
  color: #333;
  font-size: 2rem;
}

.popular-suites h1 {
  margin-bottom: 20px;
  color: #5a7e08;
  font-size: 1.6rem;
}

.suites {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.suite {
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  width: calc(25% - 20px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  background: white;
}

.suite img {
  width: 100%;
  height: auto;
}

.suite-info {
  padding: 10px;
  text-align: center;
}

.suite-info h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.suite-info p {
  font-size: 14px;
  color: #666;
}

.suite-info span {
  font-weight: bold;
  color: #5a7e08;
}

@media (max-width: 768px) {
  .service {
    flex: 1 1 calc(50% - 20px);
  }

  .suite {
    width: calc(50% - 20px);
  }
}

@media (max-width: 480px) {
  .service {
    flex: 1 1 100%;
  }

  .suite {
    width: 100%;
  }
}

.who {
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background-color: #becf97;
}

.who h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  color: #333;
}
.who h1 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  color: #5a7e08;
  font-size: 1.8rem;
}

.text-content {
  flex: 1;
  max-width: 600px;
  margin: 10px;
}


.text-content p {
  margin: 10px 0 20px;
}

.image-content {
  flex: 1;
  max-width: 400px;
  margin: 10px;
}

.image-content img {
  width: 100%;
  border-radius: 10px;
}
  
/* Container section with image */
section.container {
  position: relative;
  width: 90%;
  max-width: 1000px;
  margin: 20px auto;
  height: 300px;
  background: url('../images/activities.jpg') center/cover no-repeat;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  justify-content: flex-start; /* Align items to the left */
  align-items: center; /* Center content vertically */
}

section.container .content {
  padding: 20px;
  max-width: 50%; /* Restrict content to half the container */
  border-radius: 10px;
}

section.container h1,
section.container p,
section.container .btn {
  margin: 0;
}

section.container h1 {
  font-size: 1.8rem;
  color: #fff;
}

section.container p {
  font-size: 1rem;
  color: #fff;
  margin: 10px 0 20px;
}

section.container .btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #5a7e08;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
  align-self: flex-start; /* Align button to the left */
  margin-top: 20px; /* Add some spacing above the button */
}

section.container .btn:hover {
  background-color: #518b0e;
}

/* Responsive Styles */
@media (max-width: 768px) {
  /* For tablet and mobile screens */
  section.container {
    height: auto; /* Allow the container to expand with the content */
    flex-direction: column; /* Stack the content and image vertically */
  }

  section.container .content {
    max-width: 90%; /* Expand content to take up more space on smaller screens */
    text-align: center; /* Center align the text */
    padding: 20px;
  }

  section.container h1 {
    font-size: 1.5rem; /* Adjust heading size for smaller screens */
  }

  section.container p {
    font-size: 0.9rem; /* Adjust paragraph size for smaller screens */
  }

  .who {
    flex-direction: column; /* Stack the sections vertically */
    padding: 10px; /* Reduce padding for smaller screens */
  }

  .who1 {
    flex-direction: column; /* Stack the sections vertically */
    padding: 10px; /* Reduce padding for smaller screens */
  }

  .text-content {
    max-width: 100%; /* Allow text to take full width on small screens */
  }

  .image-content {
    max-width: 100%; /* Allow image to take full width on small screens */
    margin-top: 20px; /* Add space above the image */
  }

  .who1 .image-content {
    max-width: 100%; /* Allow image to take full width on small screens */
    margin-top: 20px; /* Add space above the image */
  }
}

/* For very small screens (e.g., mobile phones) */
@media (max-width: 480px) {
  /* Adjust button size and padding */
  section.container .btn {
    padding: 8px 16px;
    font-size: 0.9rem; /* Make the button font smaller */
  }

  .text-content h2 {
    font-size: 1.5rem; /* Adjust subtitle size for smaller screens */
  }

  .text-content p {
    font-size: 0.8rem; /* Adjust paragraph size further */
  }
}

.pricing-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
}

.pricing-section h1 {
  color: #333;
  font-size: 2rem;
  margin-bottom: 10px;
}

.pricing-section h2 {
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
}

.pricing-table th, .pricing-table td {
  border: 1px solid #ddd;
  padding: 15px;
  text-align: center; /* Center align text in table cells */
}

.pricing-table th {
  background-color: #f4f4f4;
  font-size: 1.1em;
}

.pricing-table td {
  padding: 25px 15px;
}

.pricing-table td .price {
    font-size: 1.2em;
    font-weight: bold;
    color: #333;
    text-align: center;
}

.pricing-table button {
  background-color: #5a7e08;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 10px;
  font-size: 1em;
  cursor: pointer;
  display: block;
  margin: 0 auto;
}

.pricing-table button:hover {
  background-color: #518b0e;
}

.pricing-table tr {
  margin-bottom: 20px;
  display: table-row;
}

ul {
  list-style: disc inside; /* Add bullet points */
  padding: 0;
  text-align: center;
}

ul li {
  margin-bottom: 5px;
}

@media (max-width: 768px) {
  .pricing-table td {
    display: block;
    text-align: center;
  }
}

.testimonials {
  padding: 60px; /* Increased padding for better spacing */
  height: auto; /* Adjust height dynamically */
  text-align: center;
  background-color: #becf97;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
}

.testimonials h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #333;
}

.testimonial-container {
  position: relative;
  height: auto; /* Adjusted to fit content dynamically */
  min-height: 180px;
}

.testimonial {
  position: absolute;
  width: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
  transform: translateY(20px);
  padding: 20px;
}

.testimonial.active {
  opacity: 1;
  transform: translateY(0);
}

.testimonial p {
  font-size: 1.2rem;
  font-style: italic;
  color: #333;
  margin-bottom: 0.5rem;
  max-width: none;
}

.testimonial h4 {
  font-size: 1.5rem;
  color: #333;
}

.stars {
  margin-top: 10px;
  color: orangered;
  font-size: 1.5em;
}

.testimonial-image {
  width: 80px;
  height: 80px;
  border-radius: 70%;
  object-fit: cover;
  border: 2px solid whitesmoke;
}

@media (max-width: 1024px) {
  .testimonials {
    padding: 30px 15px; /* Adjust padding for tablets */
  }
}

@media (max-width: 768px) {
  .testimonials {
    padding: 25px 10px; /* Adjust padding for smaller screens */
  }
  
  .testimonial-container {
    min-height: 160px;
  }

  .testimonials h2 {
    font-size: 1.5rem;
  }

  .testimonial p {
    font-size: 1rem;
  }

  .testimonial h4 {
    font-size: 1.3rem;
  }

  .testimonial-image {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 480px) {
  .testimonials {
    padding: 50px 5px; /* Adjust padding for mobile screens */
  }
  
  .testimonial-container {
    min-height: 140px;
  }

  .testimonials h2 {
    font-size: 1.3rem;
  }

  .testimonial p {
    font-size: 0.9rem;
  }

  .testimonial h4 {
    font-size: 1.2rem;
  }
}

.footer {
  background-color: #f8f8f8;
  padding: 40px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.footer .column {
  flex: 1 1 200px;
  margin: 10px;
}

.footer .subscribe {
  max-width: 300px;
}

.footer .subscribe form {
  display: flex;
  align-items: center;
  width: 100%;
}

.footer .subscribe input {
  flex: 1;
  padding: 10px;
  border: 1px solid #ddd;
  border-right: none;
  border-radius: 20px 0 0 20px;
}

.footer .subscribe button {
  padding: 10px 25px;
  background-color: #5a7e08;
  font-weight: 600;
  color: #fff;
  border: none;
  border-radius: 20px 20px 20px 20px;
  cursor: pointer;
}

.footer .subscribe button:hover {
  background-color: #518b0e;
}

.footer .links ul,
.footer .socials ul {
  list-style: none;
  padding: 0;
}

.footer .links ul li,
.footer .socials ul li {
  margin: 5px 0;
}

.footer .links ul li a,
.footer .socials ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
}

.footer .links ul li a:hover,
.footer .socials ul li a:hover {
  color: #5a7e08;
}

.footer .address {
  font-size: 14px;
}

@media (max-width: 768px) {
  .footer {
      flex-direction: column;
      align-items: center;
  }

  .footer .column {
      flex: 1 1 100%;
      text-align: center;
  }

  .footer .subscribe form {
      flex-direction: row;
      align-items: center;
      justify-content: center;
  }

  .footer .subscribe input {
      flex: 1;
      min-width: 60%;
  }

  .footer .subscribe button {
      flex: 0;
  }
}

.copyright {
  background: #8dc63f;
  color: #333;
  text-align: center;
  padding: 1rem;
}

.copyright p {
  margin: 0;
  font-weight: bold;
}

/* About page */
.who1 {
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background-color: #becf97;
}

.who1 h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  color: #333;
}
.who1 h1 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  color: #486306;
  font-size: 1.8rem;
}

.who1 .image-content {
  max-width: 100%; /* Ensures the image doesn't exceed its container */
  height: auto; /* Maintains aspect ratio */
  width: 80%; /* Adjust as per your requirement */
  border-radius: 10px; /* Optional: Adds rounded corners to the image */
  margin: 0 auto; /* Centers the image if the container has text-align: center */
  display: block; /* Ensures proper alignment */
}

.who1 .image-content img {
  width: 100%;
  border-radius: 10px;
}

/* About Section */
.about-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  padding: 40px 20px;
  background-color: #becf97;
}

.about-content {
  flex: 1;
  padding: 20px;
}

.about-content h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #5a7e08;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  max-width: 500px;
}

/* Mission and Vision Section */
.mission-vision {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
  padding: 40px 20px;
  background: white;
}

.mission, .vision {
  flex: 1;
  max-width: 400px;
  text-align: center;
}

.mission h2, .vision h2 {
  color: #5a7e08;
}

/* Call to Action Section */
.cta-section {
  padding: 40px 20px;
  background: #becf97;
  color: #333;
  text-align: center;
}

.cta-section h2 {
  margin-bottom: 10px;
}

/* Blogs Css */
.blogs {
  padding: 4rem 2rem;
  background-color: #becf97;
  text-align: center;
}

.blog-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.blog {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s;
}

.blog:hover {
  transform: translateY(-5px);
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
  text-align: left;
}

.blog-content h3 {
  font-size: 1.5rem;
  color: #5a7e08;
  margin-bottom: 0.5rem;
}

.blog-content p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 1rem;
}

/* Rooms Css */

.rooms-section {
  padding: 60px 30px;
  background-color: #becf97;
  text-align: center;
  max-width: 1400px;
  margin: 0 auto;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.rooms-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center; /* Centers all cards */
  align-items: stretch; /* Ensures cards stretch evenly in height */
}

.room-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-width: 350px;
  flex: 1 1 calc(33.33% - 20px); /* 3 cards per row with spacing */
  min-width: 280px; /* Ensures proper sizing on smaller screens */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.room-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.room-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.room-card:hover .room-image img {
  transform: scale(1.1);
}

.room-content {
  padding: 20px;
}

.room-content h3 {
  font-size: 1.5rem;
  color: #5a7e08;
  margin-bottom: 10px;
}

.room-content p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 10px;
}

.room-content span {
  font-weight: bold;
  color: #497106;
}

.room-content .book-now {
  display: inline-block;
  background-color: #5a7e08;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.room-content .book-now:hover {
  background-color: #497106;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .room-card {
    flex: 1 1 calc(50% - 20px); /* Two cards per row for medium screens */
  }
}

@media (max-width: 768px) {
  .rooms-container {
    flex-direction: row; /* Ensures flex alignment works correctly */
    justify-content: center; /* Centers cards in one row */
    gap: 30px; /* Increase gap for single-column layout */
  }

  .room-card {
    flex: 1 1 100%; /* Single column on smaller screens */
    max-width: 500px; /* Center-align narrower cards */
  }
}

/* Contact Section */
.contact-section {
  max-width: 800px;
  margin: 50px auto;
  background: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Heading Styles */
.contact-section h2 {
  color: #5a7e08;
  font-size: 2rem;
  text-align: center;
}

.contact-section h1 {
  text-align: center;
  margin-bottom: 20px;
  color: #333;
}

/* Form Styles */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Row and Col Structure */
.row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.col {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  font-weight: bold;
}

/* Input and Select Styles */
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
  transition: 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #5a7e08;
  outline: none;
}

/* Textarea */
.contact-form textarea {
  resize: vertical;
}

/* Submit Button */
.submit-button {
  background-color: #5a7e08;
  color: white;
  border: none;
  padding: 12px;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
  width: 100%;
}

.submit-button:hover {
  background-color: #486306;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-section {
      width: 90%;
      padding: 20px;
  }

  .row {
      flex-direction: column;
      gap: 10px;
  }

  .col {
      min-width: 100%;
  }

  .submit-button {
      padding: 10px;
      font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .contact-section h2 {
      font-size: 1.5rem;
  }

  .contact-section h1 {
      font-size: 1.3rem;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
      font-size: 0.9rem;
      padding: 8px;
  }

  .submit-button {
      padding: 8px;
      font-size: 0.85rem;
  }
}

/* ul {
  list-style: none;
  padding: 0;
}

ul li {
  background: #ecf0f1;
  margin: 10px 0;
  padding: 10px;
  border-radius: 5px;
  font-size: 1.1rem;
}

p {
  font-size: 1.1rem;
  text-align: justify;
} */

.amenities ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 10px;
}

.amenities li {
  text-align: center;
  padding: 15px;
  background: #82aa23;
  font-weight: bold;
  color: white;
}

.amenities li strong {
  font-size: 1.2rem;
  color: white;
}

.amenities li strong i {
  font-size: 1.5rem;
}

@media (max-width: 768px) {
  section {
      padding: 15px;
  }
  h1, h2 {
      font-size: 1.5rem;
  }
}

.why-choose {
  background-color: #becf97;
}

.why-choose ul {
  list-style: none;
  padding: 0;
}

.why-choose ul li {
  background: #fff;
  margin: 10px 0;
  padding: 10px;
  border-radius: 5px;
  font-size: 1.1rem;
}

.why-choose p {
  font-size: 1.1rem;
  text-align: justify;
}

.why-choose li strong {
  font-size: 1.2rem;
  color: #486306;
}

.why-choose li strong i {
  font-size: 1.5rem;
}

.why-choose li {
  color: #333;
}

.footer .subscribe img {
  width: 150px;
}

.how-to-reach p {
  font-size: 1.2rem;
}

.how-to-reach p strong {
  color: #486306;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}
.gallery img {
  width: 300px;
  height: 200px;
  height: auto;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.2s;
  border-radius: 10px;
}
.gallery img:hover {
  transform: scale(1.1);
}
.fullscreen {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.fullscreen img {
  max-width: 90%;
  max-height: 90%;
}
.close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 30px;
  color: white;
  cursor: pointer;
}
.nav-button {
  position: absolute;
  top: 50%;
  font-size: 30px;
  color: white;
  cursor: pointer;
  background: none;
  border: none;
}
.left {
  left: 10px;
}
.right {
  right: 10px;
}
@media screen and (max-width: 600px) {
  .gallery {
      flex-direction: column;
      align-items: center;
  }
  .gallery img {
      max-width: 350px;
  }
  .nav-button {
      font-size: 24px;
  }
}

.policies-section {
  text-align: center;
  padding: 50px 20px;
  background-color: #f8f9fa;
}

.policies-section h2 {
  font-size: 2rem;
  color: #5a7e08;
  margin-bottom: 20px;
}

.policy-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1100px;
  margin: auto;
}

.policy-card {
  background: linear-gradient(135deg, #82aa23, #6f901d);
  border-radius: 10px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15);
  padding: 25px;
  max-width: 500px;
  width: 100%;
  text-align: left;
  border: 2px solid transparent;
  transition: all 0.4s ease-in-out;
}

.policy-card:hover {
  transform: scale(1.05);
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.25);
  background: linear-gradient(135deg, #6f901d, #5a7e08);
  border-color: white;
}

.policy-card h3 {
  color: white;
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 10px;
  border-bottom: 2px solid white;
  padding-bottom: 5px;
}

.policy-card ul {
  list-style-type: none;
  padding: 0;
}

.policy-card ul li {
  font-size: 1rem;
  padding: 10px 0;
  color: whitesmoke;
  display: flex;
  align-items: center;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
}

.policy-card ul li:hover {
  color: yellow;
  transform: translateX(5px);
}

.policy-card ul li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: white;
  margin-right: 10px;
}

@media (max-width: 768px) {
  .policy-container {
      flex-direction: column;
      align-items: center;
  }
}
