* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h2{
  font-family: 'Times New Roman', Times, serif;
  font-size: 30px;
}

p{
  font-family: "Roboto";
  font-weight: 300;
}

a{
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}




.header {
    position: fixed; /* Places header on top of hero */
    z-index: 10;
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 5px 60px;
    top: 0;
    background-color: transparent;
    left: 0;
    transition: background-color 0.4s ease; /* Smooth transition */
}


.header.scrolled {
    background-color: rgb(14, 62, 14); /* Green after scroll */
}

.logo img{
    max-width: 120px;
}


.pages{
    padding: 10px 0;
    border-radius: 8px;
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

/* Hero section takes full height of viewport */


/* Links styling */
.pages a {
    color: white;
    text-decoration: none;
    padding: 10px;
    text-align: center;
    border-bottom: 1px solid transparent;
    transition: border-color 0.1s ease-in;
}

.pages a:hover{
    border-bottom: 1px solid white;
}

.contact{
    color: white;
}

.contact:hover{
    background-color: white;
    color: black;
}

@media screen and (min-width:769px){
    .contact{
        border: 1px solid white !important; 
        padding: 10px 26px !important; 
    }
}

.pages a.active{
    border-bottom: 1px solid white;
}

.hamburger {
    height: 50px;
    display: none;
    width: 50px;
    margin-left: auto;
    position: relative;
}


.hamburger span{
  height: 3px;
    width: 50%;
    background-color: white;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
    transition: .3s ease;
    z-index: 5;
}


.hamburger span:nth-child(1){
    top: 35%;
}

.hamburger span:nth-child(3){
    top: 65%;
}

.hamburger.show span {
    width: 50%;
}


.hamburger.show span:nth-child(2){
    opacity: 0;
}

.hamburger.show span:nth-child(1){
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.hamburger.show span:nth-child(3){
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}


@media screen and (max-width:768px){
    .hamburger {
        display: block; /* show hamburger on mobile */
    }


.pages {
    max-height: 0; /* Collapsed by default */
    opacity: 0;
    gap: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgb(14, 62, 14);
    position: absolute;
    top: 72px;
    left: 0;              /* Align to left edge */
    width: 100%;  
    padding: 0 10px; /* No vertical padding when closed */
    box-shadow: 0px 4px 8px rgba(0,0,0,0.1);
    border-radius: 0;
    transition: all 0.3s ease-in-out;
}

.pages.show {
    max-height: 500px; /* Enough height to show menu */
    opacity: 1;
    padding: 10px;
    transform: translateY(0);
}

.pages a {
    font-size: 17px;
    padding: 5px;
    text-align: left;
    display: block; /* Ensures each link takes full width */
}



}

  .float-btn {
      position: fixed;
      z-index: 99999;
      border: 1px solid #6e6a6a;
      bottom: 14px;
          -webkit-backdrop-filter: blur(1px); /* for Safari */
              background: #124d24; /* transparent background */
      color: white;
      backdrop-filter: blur(1px);
      padding: 12px 18px;
      text-decoration: none;
      font-size: 16px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease; 
    }


.float-btn.show {
  opacity: 1;
  visibility: visible;
}



    .float-btn:hover {
      background-color: white;
      color: black;
    }

    /* Right button */
    .float-right {
      left: 20px;
    }

.float-middle {
  display: flex;
  flex-direction: column;
  border-radius: 50px;
  background-color: rgba(216, 223, 216, 0.75);
  position: fixed;
  z-index: 99;
  bottom: 290px;
  right: -15px;
  text-decoration: none;
  color: #124d24;
  backdrop-filter: blur(4px);
  padding: 12px;
  cursor: pointer;
  rotate: -90deg;
  font-size: 20px;
  transition: background-color 0.3s ease;
}

.float-middle-links {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  background-color: rgba(192, 199, 192,0.75);
  gap: 20px;
  position: fixed;
  z-index: 99999;
  bottom: 220px;
  right: 12px;
  color: white;
  backdrop-filter: blur(4px);
  padding: 20px 12px;
}

.float-middle-links img {
  max-width: 30px;
  cursor: pointer;
}


    #closeFloat {
  text-align: center;
  font-size: 18px;
  cursor: pointer;
  color: white;
  text-decoration: none;
}


/* Hide the button smoothly */
.float-middle.hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* Default state (hidden) */
.float-middle-links {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Visible state */
.float-middle-links.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}


.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(23, 71, 23, 0.4); /* darkens video for readability */
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 2;
  padding: 20px;
}

/* For phones */
@media (max-width: 768px) {
  .hero-content {
    left: 20px;               /* push a bit from left */
    top: 60%;
    transform: translateY(-50%); /* remove X translate */
    text-align: left;          /* align text to left */
    width: 90%;                /* prevent overflow */
  }
}


.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 16px;
  margin-bottom: 25px;
}

.hero-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #124d24; /* your brand color */
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  transition: background 0.3s ease;
}

.hero-btn:hover {
  background: white; 
  color: #124d24;/* slightly lighter shade */
}




.slider-section {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  position: relative;
}

.slider-container {
  width: 300px;
  height: 400px;
  overflow: hidden;
}

.slider {
  display: flex;
width: calc(300px * 3); /* Adjust based on image count */
  height: 100%;
  transition: transform 0.6s ease-in-out;
}

.slider img {
  width: 300px;
  height: 400px;
  object-fit: cover;
}

/* Buttons OUTSIDE the slider */
button.prev, button.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 30px;
  color: #124d24;
  cursor: pointer;
  transition: transform 0.2s ease;
}

button.prev {
  left: calc(50% - 200px); /* Positioned outside left side */
}

button.next {
  right: calc(50% - 200px); /* Positioned outside right side */
}

button.prev:hover, button.next:hover {
  transform: translateY(-50%) scale(1.2);
}





.about-slider{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
    max-width: 1100px;
}

.about{
    display: flex;
    flex-direction: column;
    max-width: 600px;
    gap: 10px;
}

.logo-section img{
    max-width: 40px ;
}

.h2{
  font-size: 30px;
    font-family: 'Times New Roman', Times, serif;/* Start below */
  color: #355b40;
}




.p{
    line-height: 24px;
    color: rgb(41, 40, 40);
    font-weight: 300;
    font-size: 16px;
    font-family: "Roboto";
    transition-delay: 0s;
}

.p2{
  margin-top: 5px;
  line-height: 15px;
    color: rgb(41, 40, 40);
    font-weight: 300;
    font-size: 12px;
    font-family: "Roboto";
}



.button{
    padding-top: 10px;
}


.button a {
  display: inline-block;
  color: #124d24; /* Text color */
  padding-bottom: 5px;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  border-bottom: 1px solid #124d24;
}



.about-whole{
  display: flex; 
  justify-content: center; 
  align-items: center;
}

@media screen and (max-width:767px){
  .about-slider{
    display: flex;
    flex-direction: column;
    padding: 40px 30px;
    gap: 35px;
  }

  .slider-section{
    height: auto;
  }

  button.prev {
  left: calc(50% - 175px); /* Positioned outside left side */
}

button.next {
  right: calc(50% - 175px); /* Positioned outside right side */
}

.slider-container{
  width: 280px;
}


}





/* LIGHTBOX */

 .lightbox-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.6);
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 1000;
    }

    /* Lightbox container */
    .lightbox {
      background:  rgb(209, 214, 202);
      padding: 25px;
      width: 90%;
      max-width: 400px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.3);
      animation: fadeIn 0.3s ease;
    }

    /* Form styling */
    .lightbox h2 {
      margin-top: 0;
      text-align: left;
      color: #124d24;
      margin-bottom: 10px;
      font-size: 1.5rem;
      font-family: 'Times New Roman', Times, serif;
    }

    .lightbox h3{
      font-size: 1rem;
      font-family: "Roboto";
      font-weight: 300;

    }

    .lightbox form {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .lightbox input {
      padding: 12px;
      border: 1px solid #ccc;
      font-size: 1rem;
      background-color: #e4ebe6;
      width: 100%;
      box-sizing: border-box;
      border-bottom: 1px solid #124d24;
    }

    .lightbox button {
      margin-top: 10px;
      padding: 12px;
      background: #244b1b;
      color: white;
      border: none;
      font-size: 1rem;
      cursor: pointer;
      transition: 0.3s;
    }


    .lightbox button:hover {
      background: #0056b3;
    }

    /* Close button */
    .close-btn {
      position: absolute;
      top: 20px;
      right: 25px;
      font-size: 24px;
      cursor: pointer;
      color: white;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: scale(0.9); }
      to { opacity: 1; transform: scale(1); }
    }



    /* SECOND ABOUT 2 SECTION */




.about2{
  display: flex; 
  justify-content: center; 
  align-items: flex-start; 
  gap: 30px;
  padding-bottom: 70px;
  padding-top: 70px;
  background-color: rgba(94, 114 ,66, 0.1);
}

@media screen and (max-width:768px){
  .about2{
    padding-bottom: 0px !important;
  }
}


.right1{
  display: flex; 
  justify-content: flex-start; 
  align-items: flex-start; 
  gap: 30px;
}

.right2{
  max-width: 240px; 
  gap: 10px; 
  display: flex; 
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

@media screen and (max-width: 768px){
  .about2, .right, .right1, .highlights{
    display: flex;
    flex-direction: column;
  }

  .about2{
    justify-content: center;
    align-items: center;
  }

  .right1{
    flex-direction: column-reverse; 
    justify-content: center;
    align-items: center;
  }

  .highlights{
    gap: 20px;
  }

  .highlights1{
    width: 300px;
  }

  .right2{
    max-width: 310px;
  }

  .all-highlights{
    max-width: 350px;
    padding: 10px 30px;
  }

  .highlights-slide{
    flex-direction: column;
  }
}



.left {
  width: 100%;
  max-width: 450px;
  height: 600px;
  overflow: hidden;
  position: relative;
}

.justimage > div{
  width: 392px;
  height: 500px;
}

.justimage img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width:768px){
  .left{
    display: none;
  }
}

.justimage{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #eff1ec;
}


@media screen and (min-width:769px) {
  .justimage{
    display: none !important;
  }  
}

.image-slider {
  display: flex; 
  transition: transform 0.6s ease-in-out;
  width: 100%;
  height: 100%;
}

.image-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0; /* each image keeps full width */
}


.rightimage img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.rightimage img.active {
  display: block; /* only the active one shows */
}


/* Desktop/tablet carousel */
.highlights-slider {
  width: 100%;
  max-width: 500px;
  margin: auto;
  overflow: hidden;
  position: relative;
}

.highlights-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.highlights-slide {
  min-width: 100%; /* one slide at a time */
  box-sizing: border-box;
  display: flex; /* stack 2 items vertically */
  gap: 15px;
  align-items: center;
}

.highlights1 {
  width: 90%;
  box-sizing: border-box;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #eee;
  border-radius: 8px;
  background:rgba(94, 114 ,66, 0.1);;
}

/* Dots */
.dots {
  text-align: center;
  margin-top: 20px;
}
.dots span {
  height: 10px;
  width: 10px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}
.dots span.active {
  background-color: #124d24;
}


/* AMENITIES */


.amenities-container {
  overflow-x: auto; /* horizontal scroll */
  scroll-behavior: smooth; /* smooth scroll */
  padding: 20px 60px;
}

.amenities-headings{
  padding: 10px 140px 10px 60px; 
  display: flex; 
  gap: 10px; 
  flex-direction: column;
}


.amenities-headings p{
  font-style: italic;
}

/* Amenities Track */
.amenities-track {
  display: flex;
  gap: 20px;
}

/* Card styles */
.amenity {
  flex: 0 0 auto; /* prevents shrinking */
  width: 320px;   /* fixed width */
  height: 500px;  /* fixed height */
  border-radius: 10px;
  padding: 10px;
  box-sizing: border-box;
  text-align: center;
}

.amenity img {
  width: 100%;
  height: 360px; /* fixed height for image */
  object-fit: cover;
}

.amenity h3 {
  margin: 10px 0 2px;
  font-size: 1.2rem;
  text-align: left;
}

.amenity p {
  color: #555;
  text-align: left;
  line-height: 22px;
  color: rgb(41, 40, 40);
  font-weight: 300;
  font-size: 13px;
  font-family: "Roboto";
}

/* Hide scrollbar for Chrome, Safari, and Opera */
.amenities-container::-webkit-scrollbar {
  display: none;
}

/* Responsive: smaller cards on mobile */
@media (max-width: 768px) {
  .amenity {
    width: 300px;
    height: 450px;
  }
  .amenity img {
    height: 340px;
  }

  .amenities-headings{
    padding: 10px 30px 10px 30px;
  }

  .amenities-container{
    padding: 10px 20px;
  }
}



/* VILLAS */

.villas-grid {
  padding: 20px 60px;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

.villa img {
  width: 100%;
  height: 360px; /* fixed height for image */
  object-fit: cover;
}

.villa:hover{
  transform: scale(1.05);
  cursor: pointer;
}

.villa {
  flex: 0 0 auto; /* prevents shrinking */
  width: 320px;   /* fixed width */
  height: 450px;  /* fixed height */
  border-radius: 10px;
  padding: 10px;
  box-sizing: border-box;
  text-align: left;
    transition: all 0.3s ease-in-out;
}

.villa h3{
  margin-top: 10px;
}

.villas{
  padding: 50px 10px;
  background-color: white;

}

.villa p {
  color: #555;
  text-align: left;
  line-height: 22px;
  color: rgb(41, 40, 40);
  font-weight: 300;
  font-size: 13px;
  font-family: "Roboto";
}

@media screen and (max-width:768px){
  .villas-grid{
    padding: 10px;
    flex-direction: column;
  }

  .villa{
    height: 440px;
  }

}

/* address and brochure */

.location{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
.address-map {
  display: flex;              /* arrange children side by side */
  justify-content: space-between;
  align-items: stretch;       /* make them equal in height */
  width: 100%;
  padding: 10px 60px;
  gap: 20px;
}


.address{
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 20px;
  max-width: 500px;
  flex: 1;
}

.address h2{
  font-size: 40px;
  color: #124d24;
}

.address-writeup{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.address-p{
  display: flex;
  justify-content: space-between;
  max-width: 400px;
}

.address-images{
  display: flex;
}

.address-images img{
  max-width: 20px;
  object-fit: cover;
}

.map{
  display: flex;
  justify-content: center;
  max-width: 700px;
  max-height: 500px;
  padding: 10px;
  flex: 1;
}

.map img{
  object-fit: cover;
  width: 700px;
  height: 500px;
}

.address-buttons{
  margin-top: 20px;
  margin-bottom: 10px;
  display: flex;
  gap: 10px;
}
.address-buttons a{
  padding: 10px 15px;
  background-color: #124d24;
  border-radius: 30px;
  color: rgb(227, 227, 227);
  font-size: 15px;
  transition: all 0.3s ease-in-out;
}

.address-buttons a:hover{
  transform: translateY(-5px);

}

/* Responsive for tablets and below */
@media (max-width: 900px) {
  .address-map {
    flex-direction: column;     /* stack address and map */
    padding: 20px;              /* reduce side padding */
    gap: 30px;
  }

  .address {
    max-width: 100%;
    align-items: flex-start;
  }

  .map {
    max-width: 100%;
    padding: 0;
  }

  .map img {
    width: 100%;               /* make map scale */
    height: auto;              /* maintain aspect ratio */      /* optional: soften edges */
  }

  .address h2 {
    font-size: 28px;           /* slightly smaller heading */
  }

  .address-buttons {   /* buttons stacked */
    width: 100%;

  }

  .address-buttons a {
    width: 100%;
    text-align: center;
  }
}

/* Extra small devices (phones < 500px) */
@media (max-width: 500px) {
  .location {
    height: auto;              /* allow content to grow naturally */
    padding: 20px 10px;
  }

  .address h2 {
    font-size: 30px;
  }

  .address-p {    /* stack phone/email with icons */
    align-items: flex-start;
    gap: 5px;
  }

  .address-images img {
    max-width: 18px;
  }
}


.footer {
  background: rgba(94, 114 ,66, 0.1);;
  padding: 60px 80px;
  color: #124d24;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap; /* ensures wrapping on smaller screens */
}

.footer-logo img {
  max-width: 160px;
}

.footer-logo p {
  font-size: 14px;
  margin-top: 5px;
  color: #124d24;
}

.footer-links h3 {
  font-size: 16px;
  margin-bottom: 10px;
  font-family: 'Times New Roman', Times, serif;
  color: #124d24;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin: 6px 0;
}

.footer-links ul li a {
  text-decoration: none;
  color: #333;
  font-family: "Roboto";
  font-weight: 300;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #0a2f15;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-item p {
  margin: 0;
  font-size: 14px;
  color: #333;
}

.dot-icon {
  width: 30px;
  height: 30px;
  border-radius: 50px;
  object-fit: contain;
  flex-shrink: 0;
  background-color: #124d24;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
}

.dot-icon:hover{
  transform: scale(1.2);
}

.dot-icon img {
  width: 70%;
  height: auto;
  display: flex;
}


/* Responsive Design */
@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .footer-links ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
}

@media (max-width: 500px) {
  .footer {
    padding: 30px 20px;
  }

  .footer-logo img {
    max-width: 130px;
  }

  .footer-links ul {
    flex-direction: column;
    gap: 5px;
  }

  .footer-links h3{
    font-size: 17px;
  }

  .contact-item {
    align-items: center;
  }

  .contact-item p {
    font-size: 13px;
  }
}



/* fade in for every section  */


/* Initial state: hidden & slightly down */
.fade-in-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* When visible */
.fade-in-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}




.overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;                 /* keep in the layout */
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 1000;
  opacity: 0;                    /* hidden state */
  visibility: hidden;
  pointer-events: none;          /* don't block clicks when hidden */
}

.overlay.is-open{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}


  /* Modal */
  .modal {
     background: rgb(209, 214, 202);
  border-radius: 16px;
  max-width: 500px;
  width: 100%;
  padding: 24px;
  opacity: 0;
  position: relative;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  visibility: hidden;
  pointer-events: none;          /* don't block clicks when hidden */
  transition: opacity .45s ease; 
    animation: bringIn 0.5s ease;/* animate only opacity */
    z-index: 999 !important;
    
  }

  @keyframes bringIn {
      from { opacity: 0; transform: translateY(-30px); }
      to { opacity: 1; transform: translateY(0); }
    }

  .overlay.is-open .modal{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
  /* Close Button */
  .close-btn2 {
    position: absolute;
    top: 10px;
    right: 12px;
    font-size: 27px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #0a2f15;
  }

/* Image Grid */
.image-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: nowrap; /* keep them in one row */
}

.img-box {
  flex: 0 0 auto;
  width: 45%; /* smaller by default */
  max-width: 180px;
}

.img-box img {
  width: 100%;
  height: auto;
  object-fit: cover;

}

/* Mobile view */
@media screen and (max-width: 768px) {
  .image-grid {
    flex-wrap: nowrap;   /* keep side by side */
    gap: 1px;
  }
  .img-box {
    width: 80%;          /* make smaller on phone */
    max-width: 160px;    /* restrict even more */
  }
  .modal{
    padding: 40px 30px;
  }
}


  /* Text styles */
  .title {
    text-align: center;
    font-size: 1.8rem;
      color: #124d24;
      text-transform: capitalize;
      font-size: 1.5rem;
      font-family: 'Times New Roman', Times, serif;
  }
  .subtitle {
    text-align: center;
    font-size: 1rem;
    font-family: 'Roboto';
    font-weight: 300;
    color: rgb(41, 40, 40);
    font-size: 13px;
  }

 #openPop {
  display: none;
    position: fixed;
    bottom: 14px;
    right: 20px;
    z-index: 999;
    background: linear-gradient(
    195deg,
    #5f6a51 0%,   /* light greenish gray */
    #879680 40%,  /* muted sage green */
    #4c5c44 100%  /* darker moss tone */
  );
    color: #fff;
    font-weight: 600;
    border: none;
    font-size: 12px;
    border-radius: 8px;
    padding: 12px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(30, 63, 101, 0.3);
  }

  #openPop:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(30, 63, 101, 0.4);
  }



  /* must-have CSS */
.overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  display: none;             /* hidden by default */
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 1000;
}
.overlay.is-open{ display: flex; }


.visitusbutton{
  text-align: center;
  color: #e4ebe6;
  display: flex;
  justify-content: center;
  padding: 10px 15px;
  border-radius: 10px;
  background-color: #0a2f15;
  max-width: 100px;
  box-shadow: 0 4px 10px #0a7820;
  transition: all 0.3s ease-in-out;
}

.visitusbutton:hover{
  transform: translateY(-3px);
  box-shadow:0 4px 20px #0a7820 ;
}

.modal-text{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
}









