.btn-booksite {
  background-color: #6ac46f;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
  margin-left: 10px;
}

.popup-form-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: 9999;
}

.popup-form {
  background: white;
  padding: 30px;
  border-radius: 8px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  position: relative;
}

.popup-form input,
.popup-form textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.popup-form button {
  width: 100%;
  padding: 10px;
  background: #28a745;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.close-btn {
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 24px;
  cursor: pointer;
}

.logo-img {
  height: 70px;
  width: auto;
}



.testimonial-text {
  position: relative;
  max-height: 4.5em;
  /* approx 3 lines */
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.testimonial-text.expanded {
  max-height: 1000px;
  /* expand fully */
}

.read-more-btn {
  background: none;
  border: none;
  color: #ee905b;
  cursor: pointer;
  font-weight: 600;
  margin-top: 0.5em;
  display: inline-block;
}


.service-item {
  padding: 0;
  margin: 0;
  overflow: hidden;
  height: 100%;
  /* ensure full height if parent allows */
}

.img-full {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  /* ensures width = height */
  object-fit: cover;
  margin: 0;
  padding: 0;
}


.description-wrapper {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  /* optional: for better readability */
  color: white;
  padding: 5px;
  text-align: center;
}


#ourFormDropdown:focus {
  background-color: #28a745 !important;
  /* Green background */
  color: white !important;
  /* Optional: change text color */
  outline: none;
  /* Optional: remove default blue outline */
}

.hover-item {
  background: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
}

.hover-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 20px rgb(0 0 0 / 0.5);
  background: #edfef2;
}

.hover-item img {
  transition: transform 0.3s ease;
}

.hover-item:hover img {
  transform: scale(1.1);
}

.hover-item h5 {
  color: #e3f5ec;
  /* color: #2d6134; */
}

.hover-item:hover h5 {
  color: #1c4422;
}




/* nandi-farms-phase-1 css */

.hover-item {
  background: #ffffff;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  border: none;

  width: 100%;
  height: 100%;
  padding: 20px;

  display: flex;
  flex-direction: column;
  align-items: center;

  justify-content: space-between;

  text-align: center;
}

.hover-item p {
  color: #555;
  transition: color 0.4s ease;

  margin-bottom: 0;
  flex-grow: 1;
}

.hover-item img {
  width: 100%;
  height: 160px;
  object-fit: contain;
  margin-bottom: 20px;

  transition: transform 0.4s ease;
}

.hover-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 20px rgb(0 0 0 / 0.5);
  background: #edfef2;
  background-color: #6ac46f;
}

.hover-item:hover p {
  color: #2d6134;
}

.hover-item:hover img {
  transform: scale(1.1);
}

/* ---------------------------------------- */

.hero-section {
  position: relative;
  padding: 100px 20px;
  color: #fff;
  background-image: url('/assets/img/nimbus/formhouse.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #6ac46f;
  background: linear-gradient(rgba(100, 163, 104, 0.7), #6ac46f);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-section .breadcrumb-item a {
  color: #fff;
  text-decoration: none;
}

.hero-section .breadcrumb-item.active {
  color: #fff;
  font-weight: bold;
}

.hero-section .hero-title {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #090909;
  transform: translateY(10px);
  transition: transform 0.5s ease, color 0.5s ease;
}

.hero-section .hero-title:hover {
  transform: translateY(0);
  color: #02580f;
}

/* -------------------------- */


.hover-wind {
  transform: translateZ(0);
  transition: transform 0.5s ease-in-out;
}

.hover-wind:hover {
  transform: translateX(5px) translateY(-5px) rotate(2deg);
}

/* Optional: adding a shake for additional flavor */
.hover-shake {
  transform: translateZ(0);
  transition: transform 0.5s ease-in-out;
}

.hover-shake:hover {
  animation: shake 0.5s ease-in-out infinite;
}

@keyframes shake {

  0%,
  100% {
    transform: translateX(0px)
  }

  25% {
    transform: translateX(-5px)
  }

  50% {
    transform: translateX(5px)
  }

  75% {
    transform: translateX(-5px)
  }
}


/* blog css-------------------------- */
#projectOfInterest option:hover {
  background-color: rgb(0, 100, 0);
  color: #fff;
}

@media (min-width: 992px) {
  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

.offcanvas a {
  text-decoration: none;
  color: #000;
}

.offcanvas a:hover {
  color: #ee905b;
}

.dropdown:hover>.dropdown-menu {
  display: block;
}


.popup-form-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.popup-form-container {
  width: 100%;
  max-width: 700px;
  padding: 20px;
  border-radius: 10px;
  position: relative;
}



.whatsappsticky {
  position: fixed;
  bottom: 10px;
  right: 10px;
  height: 40px;
  width: 40px;
  background-color: #25d366;
  color: white;
  font-size: 24px;
  border-radius: 30%;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  text-decoration: none;

  display: flex;
  align-items: center;
  justify-content: center;
}


.whatsappsticky:hover {
  background-color: #1ebea5;
  transform: scale(1.1);
}


@keyframes shake {
  0% {
    transform: translateY(-50%) rotate(-90deg) translateX(0);
  }

  25% {
    transform: translateY(-50%) rotate(-89deg) translateX(3px);
  }

  50% {
    transform: translateY(-50%) rotate(-88deg) translateX(-3px);
  }

  75% {
    transform: translateY(-50%) rotate(-87deg) translateX(3px);
  }

  100% {
    transform: translateY(-50%) rotate(-90deg) translateX(0);
  }
}

.leftsticky {
  position: fixed;
  bottom: 60%;
  right: 10px;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: right center;
  background-color: #25d366;
  color: white;
  padding: 3px 5px;
  /* border-radius: 10px; */
  text-decoration: none;
  font-weight: bold;
  box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transition: background-color 0.3s ease;
  /* animation: shake 3s infinite; */
}

.leftsticky:hover {
  background-color: #1ebe2b;
  color: black;
}


.paragraph-style {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
}

.bold-text-9 {
  font-weight: 700;
  color: #2d7c3e;
}






.bg-img {
  background-image: url('/assets/img/nimbus/phase2/nandi_form_2.jpg');
  /* Desktop Image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Mobile Responsive */
@media (max-width: 767.98px) {
  .bg-img {
    background-image: url('/assets/img/nimbus/phase2/mobile-view-phase-2.webp');
    /* Mobile Image */
  }
}



#hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

#hero video {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  /* Dark overlay */
  z-index: 2;
}



 .zoom-hover {
    transition: transform 0.3s ease;
    cursor: pointer;
  }

  .zoom-hover:hover {
    transform: scale(1.05);
  }

  /* Modal Styles */
  .img-modal {
    display: none;
    position: fixed;
    z-index: 1050;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
  }

  .img-modal img {
    max-width: 90%;
    max-height: 80vh;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
  }

  .img-modal .close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
  }


   .tab-content img {
    transition: transform 0.4s ease-in-out;
    cursor: zoom-in;
  }

  .tab-content img:hover {
    transform: scale(1.1);
    z-index: 2;
    position: relative;
  }