@import url("https://fonts.googleapis.com/css2?family=Pacifico&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

h3 {
  font-family: "Pacifico", cursive;
  font-weight: 400;
}
h1 {
  font-family: "Lato", sans-serif;
}
p {
  font-family: "Montserrat", sans-serif;
}

.main-section{
  background-image: url(../images/Sriperumbudur-Plots-min.jpg);
  background-size: cover;
  /* background-position: center; */
  background-repeat: no-repeat;
  background-attachment: fixed;
  width: 100%;
  min-height: 100vh;
}

.main-section>a{
  position: absolute;
  top: 0;
  right: 0;
  text-decoration: none;
  margin: 20px 30px;
  padding: 10px 10px;
  background-color: #24ae70;
  border: none;
  color: white;
  font-weight: 500;
  border-radius: 5px;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  animation: bounce 1.8s ease-in-out infinite;
  
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
.main-section>a:hover{
  background-color: transparent;
  /* border: 1px solid #856446; */
  background-color: #856446;
}

.about-section {
  display: flex;
  justify-content: center;
  /* align-items: center; */
  gap: 50px;
  padding: 50px 100px;
}

.about-section > div > img {
  border-radius: 60px 0 60px 0;
  transition: all 0.5s ease-in-out;
}

.about-section-content > h3 {
  font-size: 1.2rem;
  color: #24ae70;
  display: inline-block;
  padding: 10px;
  border-radius: 5px;
}
.about-section-content > h1 {
  font-size: 2.7rem;
  margin-bottom: 20px;
  color: #856446;
  line-height: 1.3;
}

.about-section-content-text {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.about-section-content-text-left {
  margin-bottom: 20px;
  line-height: 1.3;
  max-width: 60%;
  display: inline-block;
}

.about-section-content-text-left > p {
  color: #626262;
  margin: 20px 0 30px 0;
  line-height: 1.5;
}

.about-section-content-text-left > h5 {
  color: #222222;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 1rem;
}
.about-section-content-text-left > a {
  text-decoration: none;
  border: 1px solid #24ae70;
  padding: 10px 25px;
  color: #24ae70;
  border-radius: 5px;
  font-family: "Lato", sans-serif;
}

.about-section-content-text-right > p {
  color: #626262;
  margin: 20px 0 30px 0;
  line-height: 1.6;
  font-weight: 500;
}

.about-section-content-text-right > ul {
  color: #626262;
  margin: 20px 0 30px 0;
  line-height: 1.5;
  font-weight: 600;
  padding-left: 0;
  list-style: none;
}

.about-section-content-text-right > ul > li {
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
  font-family: "Lato", sans-serif;
}

.about-section-content-text-right > ul > li::before {
  content: "";
  background-image: url("../images/icons8-tick.gif");
  background-size: contain;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 4px;
}

@media (max-width: 1024px) {
  .about-section {
    flex-direction: column;
    align-items: center;
    padding: 40px 40px;
    gap: 30px;
  }

  .about-section-content-text {
    flex-direction: column;
    gap: 20px;
  }

  .about-section-content-text-left {
    max-width: 100%;
    text-align: center;
  }

  .about-section-content-text-right {
    text-align: center;
  }

  .about-section-content > h1 {
    font-size: 2rem;
    text-align: center;
    display: inline-block;
    width: 100%;
  }

  .about-section-content > h3 {
    font-size: 1rem;
    text-align: center;
    display: inline-block;
    width: 100%;
  }

  .about-section > div > img {
    width: 100%;
    max-width: 300px;
    height: auto;
  }
}

@media (max-width: 600px) {
  .about-section {
    padding: 30px 20px;
    text-align: center;
  }

  .about-section-content > h1 {
    font-size: 1.8rem;
  }

  .about-section-content-text-left > a {
    padding: 8px 20px;
    font-size: 0.9rem;
  }

  .about-section-content-text-right > ul > li {
    font-size: 0.95rem;
    padding-left: 25px;
  }

  .about-section-content-text-right > ul > li::before {
    width: 16px;
    height: 16px;
    top: 2px;
  }
}

.features-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  padding: 30px 90px;
}
@media(max-width: 764px) {
  .features-section{
    padding: 30px 40px;
  }
}
.feature-card {
  background: #f3f0f0;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
  font-family: "Lato", sans-serif;
}
.feature-card:hover {
  transform: translateY(-5px);
  background-color: white;
}
#feature-card-2 {
  height: 220px;
}
.feature-number {
  font-size: 1.2rem;
  font-weight: 600;
  color: #c5a76f;
  margin-bottom: 10px;
  text-align: right;
}
.feature-title {
  font-weight: 700;
  margin-bottom: 8px;
}
.feature-desc {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}
.learn-more {
  margin-top: 20px;
  font-weight: 600;
  color: #424242;
  display: flex;
  align-items: center;
  text-decoration: none;
  font-size: 0.8rem;
}
.learn-more::after {
  content: " \2192";
  font-size: 16px;
  margin-left: 5px;
}
.feature-img {
  width: 100%;
  height: 220px;
  border-radius: 12px;
  object-fit: cover;
}

.feature-card-img {
  padding: unset;
}

.here-why-section {
  background-color: #f3eee9;
}

.here-why-section-content {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.here-why-section-content-text {
  text-align: right;
  display: inline-block;
}

.here-why-section-content-title > p {
  color: #24ae70;
  font-family: "Pacifico", cursive;
  font-weight: 100;
  font-size: 1.3rem;
  margin-top: 50px;
}
.here-why-section-content-title > h1 {
  color: #222222;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 2.7rem;
  margin: 10px 0;
  text-transform: uppercase;
  span {
    color: #856446;
  }
}
.here-why-section-content-text > p {
  color: #626262;
  margin: 20px 0 30px 0;
  line-height: 1.5;
  font-weight: 400;
}
.here-why-section-content-text > a {
  text-decoration: none;
  border: 1px solid #24ae70;
  padding: 10px 25px;
  color: #24ae70;
  border-radius: 5px;
  font-family: "Lato", sans-serif;
}

@media (max-width: 1024px) {
  .here-why-section-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
    padding: 40px 30px;
  }

  .here-why-section-content-text {
    text-align: center;
  }

  .here-why-section-content-title > h1 {
    font-size: 2rem;
  }

  .here-why-section-content-title > p {
    font-size: 1.1rem;
    margin-top: 30px;
  }
}

@media (max-width: 600px) {
  .here-why-section-content {
    padding: 30px 20px;
  }

  .here-why-section-content-title > h1 {
    font-size: 1.7rem;
  }

  .here-why-section-content-title > p {
    font-size: 1rem;
  }

  .here-why-section-content-text > a {
    padding: 8px 20px;
    font-size: 0.9rem;
  }

  .here-why-section-content-text > p {
    font-size: 0.95rem;
    line-height: 1.4;
  }
}


.secure-section {
  background-color: #545454;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  align-content: center;
  padding: 50px 100px;
}

@media (max-width:768px){
  .secure-section{
    flex-direction: column;
  }
}

.secure-section > div > h2 {
  color: #f3eee9;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  margin: 10px 0;
  text-transform: uppercase;
}

.secure-section > div > h2 > span {
  color: #24ae70;
}

.secure-section > div > a {
  text-decoration: none;
  border: 1px solid #24ae70;
  padding: 10px 25px;
  color: #24ae70;
  border-radius: 5px;
  font-weight: 200;
  font-family: "Lato", sans-serif;
}

.secure-section > div > p {
  color: #f3eee9;
  /* margin: 20px 0 30px 0; */
  padding-top: 20px;
  line-height: 1.5;
  font-weight: 400;
}

.highlight-section > h1 {
  text-align: center;
  color: #222222;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 2.7rem;
  margin: 10px 0;
  text-transform: uppercase;
  padding: 60px 0;
  /* span {
    text-decoration: underline;
    text-decoration-color: #c5a76f;
    text-decoration-thickness: 14px;
    text-underline-offset: -15px;
    text-decoration-skip-ink: none;
  } */
}

.location-info-section {
  display: flex;
  gap: 30px;
  padding: 60px 40px;
  flex-wrap: wrap;
  justify-content: space-around;
  position: relative;
  margin: 70px 0;
}

/* Base card styles */
.info-card {
  background: #fff;
  flex: 1 1 230px;
  padding: 25px 22px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  text-align: left;
  height: 450px;
}

.info-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #111;
  margin-bottom: 16px;
  font-family: "Lato", sans-serif;
}

.info-card ul {
  list-style: none;
  padding-left: 0;
  margin: 0 0 16px 0;
}

.info-card ul li {
  padding: 6px 0;
  position: relative;
  padding-left: 20px;
  color: #444;
  font-size: 1rem;
  font-family: "Lato", sans-serif;
}

.info-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #c5a76f;
  font-weight: bold;
}

/* CTA + Visit */
.site-visit {
  font-size: 14px;
  color: #888;
  margin-bottom: 10px;
}

.cta-btn {
  background: #24ae70;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 100px;
  cursor: pointer;
  font-weight: bold;
  font-size: 14px;
  font-family: "Lato", sans-serif;
  text-decoration: none;
}

.cta-btn.outline {
  background: transparent;
  border: 2px solid #24ae70;
  color: #24ae70;
}

/* Pop-out active card */
.active-card {
  transform: translateY(-25px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  z-index: 2;
  background-color: #fffdf5;
}

/* Rotated label */
.rotated-label {
  position: absolute;
  top: -95px;
  left: 80%;
  transform: rotate(-18deg) translateX(-50%);
  font-size: 14px;
  font-weight: bold;
  color: #111;
  text-align: center;
  line-height: 1.2;
}

/* Arrow image */
.arrow-img {
  position: absolute;
  top: -35px;
  left: 60%;
  transform: rotate(-15deg);
  width: 40px;
}

/* Decorative color dots */
.location-info-section::before,
.location-info-section::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: #2e9fff;
  border-radius: 50%;
  z-index: 0;
}

.location-info-section::before {
  top: 20px;
  left: 10%;
}

.location-info-section::after {
  bottom: 25px;
  right: 15%;
}

/* Extra dot on card */
/* .info-card::after {
  content: "";
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 8px;
  height: 8px;
  background: #ff00aa;
  border-radius: 50%;
} */

.community-section {
  padding: 60px 80px;
  background: #f5f5f5;
  text-align: center;
}

@media (max-width: 768px) {
  .community-section {
    padding: 60px 20px;
  }
}

.community-text h2 {
  font-size: 28px;
  font-weight: 500;
  color: #24ae70;
  margin-bottom: 15px;
  font-family: "Pacifico", cursive;
}

.community-text p {
  font-size: 16px;
  color: #444;
  max-width: 950px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

.community-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  justify-content: center;
}

.community-gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.community-gallery img:hover {
  transform: scale(1.03);
}

/* Lightbox Container */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 40px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
}

/* Lightbox Image */
.lightbox-content {
  max-width: 80%;
  max-height: 80%;
  margin: auto;
  display: block;
  border-radius: 8px;
}

/* Close Button */
.lightbox-close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  z-index: 10001;
}

/* Arrows */
.lightbox-arrow {
  position: absolute;
  top: 50%;
  font-size: 40px;
  color: white;
  padding: 10px;
  cursor: pointer;
  user-select: none;
  z-index: 10001;
}

.lightbox-arrow.left {
  left: 30px;
}
.lightbox-arrow.right {
  right: 30px;
}

.lightbox-arrow:hover,
.lightbox-close:hover {
  color: #f2f2f2;
}

/* .height-img{
    min-height: 300px;
} */

/* Tablet - 2 columns */
@media (max-width: 991px) {
  .community-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile - 1 column */
@media (max-width: 576px) {
  .community-gallery {
    grid-template-columns: 1fr;
  }
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 20px;
}

.gallery-item img {
  width: 100%;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s;
}

.gallery-item img:hover {
  transform: scale(1.03);
}

/* Responsive */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Lightbox modal */
#lightboxModal {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#lightboxModal img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: white;
  cursor: pointer;
  user-select: none;
}

#lightboxPrev {
  left: 20px;
}

#lightboxNext {
  right: 20px;
}

#lightboxClose {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 30px;
  color: white;
  cursor: pointer;
}

.amenities-section {
  padding: 50px 90px;
  text-align: center;
}

@media (max-width: 768px) {
  .amenities-section {
    padding: 50px 20px;
  }
}

.amenities-section > h3 {
  font-size: 2rem;
  font-weight: 500;
  color: #24ae70;
  margin-bottom: 20px;
}

.carousel-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 40px auto;
  overflow: hidden;
}

.carousel-container {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}

.carousel-container img {
  width: 100%;
  max-width: 300px;
  cursor: pointer;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.carousel-arrow {
  display: none;
  position: absolute;
  top: 50%;
  font-size: 40px;
  color: white;
  background: rgba(0, 0, 0, 0.6);
  padding: 10px 15px;
  cursor: pointer;
  user-select: none;
  transform: translateY(-50%);
  z-index: 1;
}

.carousel-wrapper:hover .carousel-arrow {
  display: block;
}

.carousel-arrow.left {
  left: 10px;
}

.carousel-arrow.right {
  right: 10px;
}

/* Modal View */
#zoomModal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
}

#zoomModal img {
  max-width: 90%;
  max-height: 85%;
  border-radius: 10px;
}

#closeModal {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 35px;
  color: white;
  cursor: pointer;
}

.modal-arrow {
  position: absolute;
  top: 50%;
  font-size: 40px;
  color: white;
  cursor: pointer;
  transform: translateY(-50%);
  padding: 10px;
  user-select: none;
}

#modalPrev {
  left: 30px;
}
#modalNext {
  right: 30px;
}

.custom-slider-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: auto;
}

.custom-slider {
  position: relative;
  overflow: hidden;
}

.custom-slider-image {
  display: none;
  width: 100%;
  cursor: pointer;
}

.custom-slider-image.active {
  display: block;
}

.custom-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  display: none;
  z-index: 10;
}

.custom-slider:hover .custom-slider-arrow {
  display: block;
}

.custom-slider-arrow.prev {
  left: 10px;
}
.custom-slider-arrow.next {
  right: 10px;
}

/* Modal Zoom */
.custom-slider-modal {
  display: none;
  position: fixed;
  z-index: 99;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
}

.custom-modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 90%;
}

.custom-modal-close {
  position: absolute;
  top: 30px;
  right: 35px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

.floor-plans {
  padding: 50px 90px;
  text-align: center;
  background-color: #f3eee9;
}
.floor-plans > h3 {
  font-size: 2rem;
  font-weight: 500;
  color: #24ae70;
  margin-bottom: 20px;
}

.image-gallery-image {
  display: none;
  width: 100%;
  cursor: zoom-in;
}

.image-gallery > h3 {
  font-size: 2rem;
  font-weight: 500;
  color: #24ae70;
  margin: 50px 0px;
  text-align: center;
}

.image-gallery-image.active {
  display: block;
}

.image-gallery-slider-container {
  position: relative;
  max-width: 800px;
  margin: auto;
  height: 500px; /* ✅ Fixed height */
  overflow: hidden;
}

.image-gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
  display: none;
}

.image-gallery-slider:hover .image-gallery-arrow {
  display: block;
}

.image-gallery-arrow.prev {
  left: 10px;
  /* cursor: w-resize; */
}
.image-gallery-arrow.next {
  right: 10px;
  /* cursor: e-resize; */
}

/* Modal styles */
.image-gallery-modal {
  display: none;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
}

.image-gallery-modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 90%;
  cursor: zoom-out;
}

.image-gallery-close {
  position: absolute;
  top: 30px;
  right: 35px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

/* Modal arrows */
.modal-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  font-size: 40px;
  padding: 10px;
  cursor: pointer;
  z-index: 100;
}

.modal-arrow.prev {
  left: 20px;
}
.modal-arrow.next {
  right: 20px;
}

.project-live-photos > h3 {
  font-size: 2rem;
  font-weight: 500;
  color: #24ae70;
  margin: 50px 0px;
  text-align: center;
}

.project-live-slider-container {
  position: relative;
  max-width: 800px;
  margin: auto;
  height: 500px; /* Or use aspect-ratio: 16 / 9; */
  overflow: hidden;
}

.project-live-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.project-live-image {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
}

.project-live-image.active {
  display: block;
}

.project-live-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
  display: none;
}

.project-live-slider:hover .project-live-arrow {
  display: block;
}

.project-live-arrow.prev {
  left: 10px;
  cursor: w-resize;
}

.project-live-arrow.next {
  right: 10px;
  cursor: e-resize;
}

/* Modal Styles */
.project-live-modal {
  display: none;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
}

.project-live-modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 90%;
  cursor: zoom-out;
}

.project-live-close {
  position: absolute;
  top: 30px;
  right: 35px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

/* Modal arrows */
.modal-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  font-size: 40px;
  padding: 10px;
  cursor: pointer;
  z-index: 100;
}

.modal-arrow.prev {
  left: 20px;
}

.modal-arrow.next {
  right: 20px;
}

.bg-img{
  margin: 50px 0;
}

.bg-img>img{
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}

footer>div{
  display: flex;
  justify-content: space-around;
  align-items: center;
  /* padding: 20px 0; */
  padding-bottom: 30px;
  
}

footer>div>div>a{
  text-decoration: none;
  color: #24ae70;
  font-weight: 400;
  font-size: 1.2rem;
  border: 1px solid #24ae70;
  padding: 10px 15px;
  border-radius: 5px;
  font-family: "Lato", sans-serif;
}

footer>div>div>a:hover{
  background-color: #24ae70;
  color: white;
}

footer>p{
  text-align: center;
  color: gray;
  font-size: 0.7rem;
  padding: 10px 0;
}

.fixed-icon {
  position: fixed;
  bottom: 20px;
  width: 50px;
  height: 50px;
  background-color: #ffffff; /* Or brand color */
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.fixed-icon img {
  width: 24px;
  height: 24px;
  /* filter: invert(1); */
}

.fixed-icon:hover {
  transform: scale(1.1);
}

.phone-icon {
  left: 20px;
}

.chat-icon {
  right: 20px;
}



/* Trigger Button Style (optional) */


/* Modal Overlay */
.modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Modal Box */
.modal-content {
  background-color: #c5a07d;
  padding: 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  position: relative;
  text-align: center;
}

.modal-content>h2{
  text-align: center;
  color: #222222;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 2rem;
  margin: 10px 0;
  text-transform: uppercase;
}

.modal-content>img{
  height: 70px;
  object-fit: cover;
}

/* Close Button */
.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  color: #000000;
  cursor: pointer;
}

/* Form Style */
#enquiryForm input,
#enquiryForm textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-family: "Montserrat", sans-serif;
}

#enquiryForm input,
#enquiryForm textarea:focus {
  outline: none;
  /* border-color: #24ae70; */
}

#enquiryForm button {
  background-color: #24ae70;
  color: #fff;
  border: none;
  padding: 12px;
  width: 100%;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
}

.error-message {
  color: rgb(255, 0, 0);
  font-size: 14px;
  margin: 5px;
 font-family: "Montserrat", sans-serif;
}
