/* =====================================================
   VACAN HAUSS — FULLY RESPONSIVE CSS
   Body: #5d734b | Text: #fffdb5
   ===================================================== */

/* ---- Reset & Base ---- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-padding-top: 80px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    "Open Sans",
    "Helvetica Neue",
    sans-serif;
  /* background: #5d734b; */
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  color: #fffdb5;
}

/* Global text color override */

p,
li,
span,
div,
td,
th,
label,
strong,
b,
em,
i {
  color: #fffdb5;
  /* color: black; */
}

/* ---- Navbar ---- */
.navbar {
  transition: all 0.3s ease-in-out;
  background: transparent !important;
  position: fixed;
  width: 100%;
  z-index: 999;
}

.navbar.scrolled {
  background: #fff !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar .nav-link {
  font-weight: 500;
  color: #333 !important;
  transition: color 0.3s ease;
  position: relative;
}

.navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0%;
  height: 2px;
  background: #015626;
  transition: width 0.3s ease;
}

.navbar .nav-link:hover::after {
  width: 100%;
}

.navbar .nav-link:hover {
  color: #015626 !important;
}

.headerNavBar {
  align-items: center;
  gap: 8px;
}

.brand-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: #015626 !important;
  letter-spacing: 0.5px;
}

.contact-us {
  text-decoration: none;
  background: #c69658;
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
  white-space: nowrap;
  font-size: 0.9rem;
}

.contact-us:hover {
  background: linear-gradient(135deg, #f06060, #015626);
  color: #fff !important;
}

.phone-icon {
  margin-right: 3px;
  color: white !important;
  animation: ring 1s infinite ease-in-out;
}

.regentaheaderLogo {
  height: 4rem;
  width: 10rem;
}

@keyframes ring {
  0% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(15deg);
  }
  20% {
    transform: rotate(-15deg);
  }
  30% {
    transform: rotate(10deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  50% {
    transform: rotate(5deg);
  }
  60% {
    transform: rotate(-5deg);
  }
  70%,
  100% {
    transform: rotate(0deg);
  }
}

@media (max-width: 991px) {
  .contact-us {
    font-size: 0.78rem;
    padding: 6px 12px;
  }

  .navbar-collapse {
    border-top: 1px solid #eee;
    margin-top: 8px;
    padding-top: 8px;
    background: #fff;
  }
}

@media (max-width: 480px) {
  .contact-us {
    font-size: 0.72rem;
    padding: 5px 9px;
  }
}

/* ---- Banner ---- */

.banner {
  background-image: url("../images/bannerImg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  /* height: 800px; */
  /* height: 40rem; */
  height: 88vh;
}

.bannerTxtBox {
  color: black;
  text-align: center;
  position: absolute;
  top: 45%;
  transform: translateY(-55%) translateX(-50%);
  left: 50%;
}

.bannerTxtBox h1 {
  color: #294025;
  font-weight: 700;
  font-size: 3.8rem;
}

.bannerTxtBox p {
  color: #454444;
  font-family: auto;
  font-weight: 500;
  font-size: 1.25rem;
}

.bannerOffersBox {
  display: inline-flex;
  justify-content: center;
  gap: 10px;
}

.circleOffers {
  background: #dfebb0;
  border-radius: 100%;
  width: 0;
  width: 32%;
  padding: 2rem;
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.22);
  background: linear-gradient(
    135deg,
    rgba(247, 250, 231, 0.92),
    rgba(224, 236, 171, 0.88)
  );
  backdrop-filter: blur(10px);
  box-shadow:
    rgb(36 73 14 / 25%) 0px 30px 60px -12px inset,
    rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
}

.circleOffers p,
.circleOffers svg,
.circleOffers p span {
  color: #455e0f;
}

.circleOffers p {
  margin-bottom: 0;
}

.circleOffers svg {
  height: 28px;
  width: 28px;
}

.circleOffers p span {
  font-size: 22px;
  font-weight: 800;
}

.custom-shape-divider-bottom-1781326840 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.custom-shape-divider-bottom-1781326840 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 88px;
}

.custom-shape-divider-bottom-1781326840 .shape-fill {
  fill: #ffffff;
}

@media (max-width: 768px) {
  .banner {
    background-image: url("../images/bannerImgMobileSize.webp");
    background-position: bottom center;
    min-height: 72vh;
  }

  .bannerTxtBox {
    top: 50%;
    transform: translateY(-50%) translateX(-50%);
    display: flex;
    flex-direction: column;
    gap: 3rem;
  }

  .bannerTxtBox h1 {
    font-size: 2rem;
  }

  .bannerTxtBox p {
    font-size: 1rem;
  }

  .circleOffers p span {
    font-size: 1rem;
  }

  .circleOffers {
    width: 100%;
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .banner {
    background-position: bottom center;
    /* height: 350px; */
    /* height: 420px; */
  }
}

/* ==== About Section Start Here ==== */
.aboutUsSection {
  padding: 0;
  padding-bottom: 2rem;
}

.aboutUsSection .row {
  align-items: center;
  justify-content: space-between;
}

.aboutUsSection .card,
.productCartCrosel .card {
  border-color: #80808024 !important;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  transition: all 0.2s ease-in-out;
}

.imgBox {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  overflow: hidden;
}

.imgBox img {
  height: 176px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  transition: all 0.3s ease-in-out;
  transform: scale(1.04);
}

.aboutUsSection .card:hover .imgBox img {
  transform: scale(1.06);
}

.aboutusCardTitle,
.aboutUsTxtBox h3,
.aboutUsSection h2 {
  font-size: 14px;
  color: #0a0909d6;
  margin-bottom: 0;
}

.aboutUsSection h2 {
  margin-bottom: 1.2rem;
}

.aboutUsTxtBox {
  position: relative;
  /* padding-left: 7rem; */
}

.redefineTxt {
  color: #264c13d6;
}

.circleDesignImg {
  position: absolute;
  /* top: -40%; */
  top: -82%;
  bottom: 0;
  right: 0;
  left: -10px;
  height: 80%;
  /* animation: rotateCircleDesignImg 10s linear infinite;
  opacity: 0.2; */
}

/* @keyframes rotateCircleDesignImg {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
} */

.aboutUsTxtBox h3,
.aboutUsSection h2 {
  font-size: 20px;
}

.aboutUsSection h2 svg,
.ourProductSection h2 svg {
  color: #6a8d56;
}

.aboutUsCardTxt,
.aboutUsTxtBox p {
  color: #2e2d2d;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.aboutSectionCtaBtn {
  position: relative;
  display: inline-block;
  overflow: hidden;

  font-size: 14px;
  text-decoration: none;
  color: #c69658;
  border: 1px solid #c69658;
  padding: 6px 20px;
  border-radius: 20px;
  /* font-weight: 500; */

  transition: color 0.3s ease;
  z-index: 1;
}

.aboutSectionCtaBtn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: #c69658;
  transition: width 0.4s ease;
  z-index: -1;
}

.aboutSectionCtaBtn:hover::before {
  width: 100%;
}

.aboutSectionCtaBtn:hover {
  color: #fff;
}

.aboutUsCrousel .owl-stage {
  transition-timing-function: linear !important;
}

.aboutUsCrousel {
  position: relative !important;
}

.aboutUsCrousel .owl-nav {
  display: block !important;
}

.aboutUsCrousel .owl-nav .owl-prev {
  display: none !important;
}

.aboutUsCrousel .owl-nav .owl-next span {
  font-size: 22px;
  padding: 0px 15px 6px 15px;
  border: 1px solid #c69658;
  border-radius: 100%;
  background: #c69658;
  color: white;
  position: absolute;
  right: -17px;
  bottom: 20px;
  transition: all 0.2s ease-in-out;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 6px;
}

.aboutUsCrousel .owl-nav .owl-next span:hover {
  background: white;
  border: 1px solid #c69658;
  color: #c69658;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 15px;
}

.aboutUsCrousel .owl-theme .owl-nav [class*="owl-"]:hover {
  background: transparent !important;
}

/* ==== About Section End Here ==== */

/* ==== Why Choose us Section Start Here ==== */
.whyChooseusSection {
  background-image: url(../images/amentiesBgImg.webp);
  padding: 2rem 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  /* filter: brightness(0.8); */
}

.amentiesContainer {
  padding-top: 1.5rem;
}

.whyChooseusSection h2 {
  color: #ffffffd9 !important;
}

.iconDiv {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #efed9a82;
}

.iconBox {
  border: 1px solid #727662b5;
  border-radius: 100%;
  padding: 10px;
}

.iconBox svg {
  height: 35px;
  width: 35px;
  font-weight: lighter;
  color: #fffdb5d1;
}

.textBox {
  margin-top: 8px;
}

.textBox p,
.textBox span {
  font-size: 12px;
  color: #d1d1d1;
}

.textBox p {
  margin-bottom: -5px;
}

.margentaLogo {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  margin-top: 1.2rem;
  border: 1px solid #adb17930;
}

/* ==== Why Choose us Section End Here ==== */

/* ==== Our Product Section Start Here ==== */

.ourProductSection {
  padding: 2rem 0;
  padding-top: 0;
}

.ourProductSection .container-fluid {
  background: #00000005;
}

.dateTxt {
  color: #5a5a5a;
  font-size: 0.8rem;
}

.regentaLogoSection {
  height: 13rem;
}

.ourProductSection h2,
.whyChooseusSection h2,
.investmetninJimCorbet h2 {
  font-size: 20px;
  color: #0a0909d6;
  /* margin-bottom: 1.2rem; */
  margin-bottom: 1rem;
  text-align: center;
}

.investmetninJimCorbet h2 {
  margin-bottom: 25px;
}

.productCard p {
  font-size: 0.8rem;
  color: #5a5a5a;
  margin-bottom: 3px;
  margin-top: 6px;
}

.card-text-content {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.card-text-content.show {
  display: block;
}

.read-more-btn {
  color: #2c4e18;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  display: block;
  font-size: 12px;
  text-align: right;
}

.productCardCtaBtn {
  font-size: 10px;
  padding: 5px 20px;
  border-radius: 10px;
}

.productCardTxt {
  font-size: 0.8rem;
  margin-bottom: 0;
}

.productCard .card-body {
  padding-bottom: 5px;
}

.ourProductSection .imgBox img {
  height: 10rem;
  object-fit: cover;
}
/* ==== Our Product Section End Here ==== */

/* ======== Investment section start here ===  */
.investmetninJimCorbet {
  padding: 2rem 0;
  padding-bottom: 0;
}

.investmetninJimCorbet .container {
  background: #3f5235;
  padding: 1rem;
  border-radius: 12px;
}

.investmetninJimCorbet h2 {
  color: #fffdb5;
}

/* === investment section end here */

/* ---- About Section ---- */

.about-content h2 {
  font-weight: 300;
  /* color: #fffdb5 !important; */
  color: black;
}

.about-content p {
  line-height: 1.6;
  /* color: #fffdb5 !important; */
  color: black;
}

.icon-text {
  background-color: #4a5e3a;
}

.icon-text h5 {
  color: #fffdb5 !important;
}

.icon-color {
  color: #fffdb5 !important;
}

/* Carousel */

.carousel-img {
  height: 400px;
  object-fit: cover;
  transition: transform 0.5s ease-in-out;
}

@media (max-width: 576px) {
  .carousel-img {
    height: 230px;
  }
}

@media (max-width: 767px) and (min-width: 577px) {
  .carousel-img {
    height: 280px;
  }
}

/* ---- Video Section ---- */

.video-section {
  position: relative;
  z-index: 1;
  background: #4a5e3a !important;
}

@media (max-width: 768px) {
  .video-section {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-bottom: 40px !important;
  }
  .video-section .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .video-section .col-12 {
    padding: 0 !important;
  }
}

/* ---- Location Section ---- */

.location-section {
  background-color: #4a5e3a;
  position: relative;
  z-index: 2;
}

.location-text {
  background: #2c3a22;
  color: #fffdb5;
  border-radius: 1rem 0 0 1rem;
}

.location-text h2 {
  color: #fffdb5 !important;
}

.location-text ul li {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.location-text ul li:hover {
  transform: translateX(5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.location-icons {
  color: #015626 !important;
}

/* location list items keep white bg for readability */

.location-text .bg-light {
  background: #fff !important;
}

.location-text .bg-light span {
  color: #015626 !important;
}

.location-map-img {
  height: 400px;
  width: 100%;
  object-fit: cover;
  display: block;
}

.locationhighligtsbox {
  flex-direction: column;
  align-items: start !important;
}

.locationhighligtsbox p {
  font-size: 14px;
  margin-bottom: 0;
  color: #302f2f !important;
}

.locationPara {
  position: relative;
  font-size: 12px !important;
}

.locationPara svg {
  position: absolute;
  height: 40px;
  width: 40px;
  left: -12px;
  right: 0;
  color: #a3a1a173;
  top: -11px;
}

.location-section .row {
  align-items: center;
}

@media (max-width: 767px) {
  .location-text {
    border-radius: 1rem 1rem 0 0;
  }
  .location-map-img {
    height: 250px;
  }
  .location-section {
    margin-top: 0 !important;
  }
}

@media (max-width: 480px) {
  .location-map-img {
    height: 200px;
  }
  .location-text h2 {
    font-size: 1.1rem !important;
  }
}

/* ---- Contact / Form Section ---- */

.contact-section {
  /* background-image: url("../images/floor-plan-background-img.png"); */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 2rem 0;
  padding-bottom: 0;
}

.download-card {
  position: relative;
  width: 100%;
  height: 540px;
  overflow: hidden;
  border-radius: 20px;
}

.download-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(5px);
  transform: scale(1.05);
}

.download-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.download-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.contact-card {
  width: 100%;
  background: #3f5235;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.contact-card h2 {
  color: #fffdb5 !important;
}

.contact-card p {
  color: #fffdb5 !important;
}

.contact-card strong {
  color: #fffdb5 !important;
}

.form-control {
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 12px;
  box-shadow: none;
  width: 100%;
  background: #fff;
  color: #333;
}

.form-control::placeholder {
  color: #888;
}

.form-control:focus {
  border-color: #015626;
  box-shadow: 0 0 5px rgba(1, 86, 38, 0.4);
  outline: none;
}

@media (max-width: 576px) {
  .download-card {
    height: 260px;
  }
  .contact-card {
    padding: 18px;
  }
  .form-control {
    padding: 9px;
    font-size: 14px;
  }
}

/* ---- Floor Plan / Site Map ---- */

.floor-plan {
  background: #5d734b;
}

.floor-plan .icon-color {
  color: #fffdb5 !important;
}

.heading-hr {
  flex: 1;
  border-top: 2px solid #fffdb5;
  opacity: 1;
  margin: 0;
}

.floor-card {
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}

.floor-card img {
  width: 100%;
  height: 800px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.white-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(255, 255, 255, 0.8); */
  border-radius: 10px;
}

.overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  background-color: #015626;
  border-radius: 20px;
}

.overlay-text a {
  text-decoration: none;
}

.overlay-text:hover {
  background-color: #000;
}

.overlay-text h5 {
  color: #fff !important;
}

.bhk-floor {
  background-color: #015626;
  color: #fffdb5 !important;
}

@media (max-width: 768px) {
  .floor-card img {
    height: 300px;
  }
}

@media (max-width: 576px) {
  .floor-card img {
    height: 220px;
  }
}

/* ---- Gallery ---- */

.gallery-section {
  background-color: #4a5e3a;
}

.gallery-section h2 {
  color: #fffdb5 !important;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(224, 5, 5, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  color: #fff !important;
  font-size: 1.2rem;
  font-weight: 600;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

@media (max-width: 576px) {
  .gallery-item img {
    height: 140px;
  }
}

@media (max-width: 380px) {
  .gallery-item img {
    height: 110px;
  }
}

/* ---- Footer ---- */

.footerBg {
  background: url(../images/footerbg-img.webp) !important;

  background-position: center;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.custom-shape-divider-top-1781331951 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.custom-shape-divider-top-1781331951 svg {
  position: relative;
  display: block;
  width: calc(140% + 1.3px);
  height: 112px;
}

.custom-shape-divider-top-1781331951 .shape-fill {
  fill: #ffffff;
}

.custom-shape-divider-top-1781348049 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.custom-shape-divider-top-1781348049 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 150px;
}

.custom-shape-divider-top-1781348049 .shape-fill {
  fill: #ffffff;
}

/** For mobile devices **/
@media (max-width: 767px) {
  .custom-shape-divider-top-1781348049 svg {
    width: calc(100% + 1.3px);
    height: 41px;
  }
}

.footerContent {
  padding-top: 9rem;
  padding-bottom: 4rem;
}

.footer-section {
  background: #2c3a22;
  padding: 40px 0 20px;
  color: #fffdb5;
  font-size: 14px;
  padding-bottom: 0;
}

.footer-brand-text {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fffdb5 !important;
  letter-spacing: 1px;
}

.footer-section h5 {
  color: #fffdb5 !important;
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-section a {
  color: #e7e0e0 !important;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #fffdb5 !important;
}

.footer-section li {
  color: #e7e0e0 !important;
}

.footer-section p {
  color: #e7e0e0 !important;
}

.footer-line {
  border-top: 1px solid rgba(255, 253, 181, 0.4);
  margin: 20px auto;
  width: 90%;
}

.footer-contact li {
  margin-bottom: 8px;
}

.footerCtaBtn {
  border: none;
  padding: 8px 30px;
  border-radius: 21px;
  background: #ad7836;
  color: #ffffff;
}

.footerCtaBtn:hover {
  background: #ab732e;
}

.footerHeading {
  font-size: 22px;
  /* color: #e7e0e0; */
  margin-bottom: 0;
}

.footerSpan {
  font-size: 15px;
  /* color: #e7e0e0; */
}

.footerTxt {
  font-size: 12px;
  color: #e7e0e0;
  margin-top: 10px;
}

.footerBottomSection {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background-color: #f1f1f1 !important;
}

.footerbtlogo {
  width: 50px;
}

.footerbtbox h4,
.footerbtbox p {
  color: #2e2e2e !important;
}

.footerbtbox p {
  font-size: 12px;
}

.footerbtbox p {
  margin-bottom: 0;
}

.firstfooterBox {
  display: flex;
  align-items: center;
}

.firstfooterBox h4 {
  margin-bottom: 0;
  color: #262323 !important;
  font-size: 16px;
}

/* ---- Modal ---- */

.modal-content {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  animation: popupFade 0.4s ease-in-out;
}

.modal-header {
  background: linear-gradient(135deg, #ff5722, #015626);
  border-radius: 20px 20px 0 0;
}

.modal-title {
  color: #fff !important;
}

.modal-body p,
.modal-body label {
  color: #333 !important;
}

.popup-button-color {
  background: linear-gradient(135deg, #ff5722, #015626);
  color: #fff !important;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  border: none;
}

.popup-button-color:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(224, 5, 5, 0.5);
}

@keyframes popupFade {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width: 480px) {
  .modal-dialog {
    margin: 10px;
  }
  .modal-body {
    padding: 16px;
  }
  .form-control-lg {
    font-size: 15px;
    padding: 10px;
  }
}

/* ---- Mobile CTA Bar ---- */

.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.mobile-btn {
  text-decoration: none;
  padding: 12px 15px;
  font-size: 15px;
  font-weight: 600;
  color: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: background 0.3s;
  flex: 1;
  border-radius: 0;
}

.call-btn {
  background: #28a745;
}

.call-btn:hover {
  background: #218838;
  color: #fff !important;
}

.enquire-btn {
  background: #015626;
}

.enquire-btn:hover {
  background: #013d1c;
  color: #fff !important;
}

@media (max-width: 767px) {
  body {
    padding-bottom: 56px;
  }
}

/* ---- Utility ---- */

iframe {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: none;
  display: block;
}

/* ---- Section backgrounds override inline styles ---- */

section[style*="f1f3f5"],
div[style*="f1f3f5"] {
  background: #4a5e3a !important;
}

/*******************************************/

.floor-card {
  width: 100%;
  max-width: 770px;
  aspect-ratio: 770 / 609;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.floor-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* पूरी image दिखेगी */
  display: block;
}

.googleMapSection {
  background: #5d734b;
  padding: 1rem 0;
}

/* .googleMapSection iframe {
  border-radius: 20px;
} */

.youtubeVid iframe {
  border-radius: 20px;
}

/* ======= Media Queries Applies here ===== */

@media (min-width: 1200px) {
  /* == Hero Section Media Queries == */
  .banner {
    min-height: 100vh;
    padding: 5rem 0;
    
  }

  .bannerTxtBox {
    margin-top: 1rem;
  }

}

@media (max-width: 768px) {
  .navbar {
    background: #ffffff !important;
  }

  .aboutUsCardTxt,
  .aboutUsTxtBox p {
    font-size: 16px;
  }

  .aboutusCardTitle,
  .aboutUsTxtBox h3,
  .aboutUsSection h2 {
    font-size: 18px;
  }

  .aboutUsCrousel .owl-nav {
    display: none;
  }

  .aboutSectionCtaBtn {
    font-size: 16px;
  }

  .textBox p,
  .textBox span {
    font-size: 14px;
  }

  .productCard p {
    font-size: 16px;
    text-align: justify;
    hyphens: auto;
  }

  .locationPara {
    font-size: 14px;
  }

  .read-more-btn {
    text-align: center;
  }

  .banner {
    margin-top: 4.8rem;
  }
  .contact-us {
    margin-left: 0 !important;
  }

  .aboutUsTxtBox {
    text-align: center;
  }

  .aboutUsSection {
    padding-top: 2rem;
  }

  .aboutUsSection .imgBox img {
    object-fit: cover;
  }

  .aboutUsCrousel .owl-nav .owl-next span {
    right: 1px;
    display: none;
  }

  .whyChooseusSection .resort-amen-card {
    border: none;
  }

  .iconDiv {
    margin-bottom: 20px;
  }

  .mobileiconDiv {
    border: none;
  }

  .youtubeVid {
    margin-top: 10px;
  }

  .mapImg {
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
  }

  .contact-section,
  .mobileInvestSec {
    width: 95%;
  }

  .locationhighligtsbox p {
    font-size: 14px !important;
  }

  .footerContent {
    padding: 1rem 0;
  }

  .footer-section {
    margin-top: 1.5rem;
  }

  .modal-title {
    justify-content: center;
    text-align: center;
  }

  .margentaLogo {
    height: 5rem;
  }

  .headerNavBar {
    align-items: start;
    gap: 0;
  }

  .navbar .nav-link {
    padding: 5px;
  }

  .regentaLogoSection {
    height: 10rem;
  }
}
