@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playball&display=swap');
@import url('https://fonts.cdnfonts.com/css/henderson');
/* @import url('https://fonts.cdnfonts.com/css/chronicle-display'); */
/* @import url('https://fonts.googleapis.com/css2?family=Bon+Vivant&display=swap'); */



@font-face {
  font-family: 'Henderson Sans';
  src: url('../font/Henderson-Sans/HendersonSansBasicLight.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}


@font-face {
  font-family: 'Henderson Sans';
  src: url('../font/Henderson-Sans/HendersonSansBasicRegular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}


@font-face {
  font-family: 'Henderson Sans';
  src: url('../font/Henderson-Sans/HendersonSansBasicSemiBold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}


body {
  font-family: 'Henderson Sans', sans-serif !important;
  scroll-behavior: auto !important;
}

section#overview {
  scroll-margin-top: 1000rem;
}

body::-webkit-scrollbar {
  display: none;
}

a {
  color: #FFFFFF;
  text-decoration: none;
}

a:hover {
  /* color: #FFFFFF; */
  /* font-weight: bold; */
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", sans-serif;
}

h1 {
  font-size: 64px;
}

/*----------------------
# Back to top button
-------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 100px;
  z-index: 9;
  background: #CEAB76;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
  text-align: center;
  /* border: 1px solid #CEAB76; */
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
}

.back-to-top:hover {
  background: #FFFFFF;
  border: 1px solid #CEAB76;
  color: #CEAB76;
}

.back-to-top i:hover {
  font-size: 28px;
  color: #CEAB76;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/* ############## whatsapp button############# */

.whatsapp-btn {
  position: fixed;
  left: 15px;
  /* visibility: hidden; */
  /* opacity: 0; */
  bottom: 100px;
  z-index: 99 !important;
  width: 50px;
  height: 50px;
  transition: all 0.4s;
  opacity: 0;
}

.whatsapp-btn.visible {
  visibility: visible;
  opacity: 1;
}



/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/* start of the new navbar */
/* Sliding Navbar */
.sliding-navbar {
  position: fixed;
  top: 0;
  right: -1000px;
  height: 100%;
  width: 100%;
  background-color: #FFFFFF;
  color: #000;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
  transition: right 0.3s ease;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  padding: 10px;
}

.nav-headers-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 10px;
  border-bottom: 1px solid #E99650;
}

.sliding-navbar.active {
  right: 0;
  /* Slides in when active */
}

.navbar-items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.navbar-items li {
  margin-bottom: 30px;
  text-align: center;
}

.nav-item-link {
  color: #000;
  text-decoration: none;
  font-family: 'Henderson Sans';
  font-size: 20px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-item-link:hover {
  color: #000;
}

.bi {
  font-size: 24px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.bi:hover {
  transform: scale(1.2);
}


.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.rounded {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: 'Henderson Sans';
  font-size: 18px;
  font-weight: 400;
  color: #2B2B2B;
  white-space: nowrap;
  text-transform: capitalize;
  transition: 0.3s;
}

.navbar a.active {
  color: #5E350A;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #dd872d !important;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-top: 2px solid #1bbd36;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #111;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #1bbd36;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

.cormorant-garamond-light {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-style: normal;
}

.cormorant-garamond-regular {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-style: normal;
}

.cormorant-garamond-medium {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-style: normal;
}

.cormorant-garamond-semibold {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-style: normal;
}

.cormorant-garamond-bold {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-style: normal;
}

.cormorant-garamond-light-italic {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-style: italic;
}

.cormorant-garamond-regular-italic {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-style: italic;
}

.cormorant-garamond-medium-italic {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-style: italic;
}

.cormorant-garamond-semibold-italic {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-style: italic;
}

.cormorant-garamond-bold-italic {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-style: italic;
}


.poppins-thin {
  font-family: "Poppins", serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", serif;
  font-weight: 900;
  font-style: normal;
}

.poppins-thin-italic {
  font-family: "Poppins", serif;
  font-weight: 100;
  font-style: italic;
}

.poppins-extralight-italic {
  font-family: "Poppins", serif;
  font-weight: 200;
  font-style: italic;
}

.poppins-light-italic {
  font-family: "Poppins", serif;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular-italic {
  font-family: "Poppins", serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", serif;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Poppins", serif;
  font-weight: 800;
  font-style: italic;
}

.poppins-black-italic {
  font-family: "Poppins", serif;
  font-weight: 900;
  font-style: italic;
}

/* Default (inactive) state */
.nav-pills .nav-link {
  color: #8D8D8D;
  background-color: transparent;
  border: none;
  transition: all 0.3s ease;
}

/* Hover state for inactive buttons */
.nav-pills .nav-link:not(.active):hover {
  color: #8D8D8D;
  background-color: transparent;
  text-decoration: none;
}

/* Active state */
.nav-pills .nav-link.active {
  color: #CE943C;
  background-color: transparent;
  font-weight: bold;
  border: none;
}

/* Remove any default focus ring (optional) */
.nav-pills .nav-link:focus {
  outline: none;
}




/**mobilenew image**/

.main-bg-img {
  background-image: url('../img/Cropped-main-bgimg.webp');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.main-bg-img_new {
  background-image: url('../img/Cropped-main-bgimg_new.webp');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

/* desktop image */
.main-bg-img-desktop {
  background-image: url('../img/main-bg-dkimg_new.webp');
  /* background-image: url('../img/main-bg-dkimg.avif'); */
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 730px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.years-excell-txt {
  color: #FFFFFF;
  font-family: 'Cormorant Infant';
  font-weight: 700;
  font-size: 64px;
  letter-spacing: 3.2px;
  text-shadow: 0px 0px 3.5px #C2C2C2;
  margin-bottom: 0px;
  line-height: 1;
  /* opacity: 0; */
  transform: scale(0.8);
  transition: all 0.5s ease;
}

/* Animations */
.zoom-in {
  opacity: 1;
  transform: scale(1);
}

.zoom-out {
  opacity: 0;
  transform: scale(0.8);
}



.inbackpremium {
  /* width: Hug (302px)px;
  height: Hug (61px)px; */
  top: 267px;
  left: 9px;
  padding: 12px 8px 12px 8px;
  gap: 13px;
  border-radius: 2px 0px 0px 0px;
  opacity: 0px;
  backdrop-filter: blur(2px);
  background: #FFFFFFE5;
  color: #E99650;
}

.inbacksize {
  height: 578px;
}

.fontCormorant {
  font-family: Cormorant Garamond;
}

.inhsize {
  font-size: 20px;
}

.inmobilemins {
  font-size: 16px;
}

.marquee-container {
  width: 100%;
  /* Full width of the container */
  overflow: hidden;
  /* Hide overflowing content */
  position: relative;
  /* For the scrolling effect */
  background-color: #f9f9f9;
  /* Optional background color */
}

.marquee {
  display: flex;
  /* Horizontal alignment */
  gap: 30px;
  /* Remove any gaps */
  width: max-content;
  /* Dynamic width for smooth flow */
  animation: marquee 20s linear infinite;
  /* Smooth, infinite scrolling */
}

.readytogo {
  white-space: nowrap;
  /* Prevent line breaks */
  padding-right: 20px;
  /* Space between items */
  font-size: 1.2em;
  /* Adjust size */
}

@keyframes marquee {
  from {
    transform: translateX(0);
    /* Start at the leftmost position */
  }

  to {
    transform: translateX(-50%);
    /* Move left by half of the total content width */
  }
}

.scrolling-item {
  text-transform: uppercase;
  font-family: 'Cormorant Garamond';
  font-size: 24px;
  font-weight: 700;
}



.highlightsback {
  background-color: #FFFFFF !important;
}

.highlightstext {
  font-size: 24px;
  color: #25262A;
  font-weight: 400;
  line-height: 30px;
  margin: 10px 0px;
  font-family: 'Henderson Sans';
  letter-spacing: -1px;
}

.highlights-numbers {
  font-size: 24px;
  color: #25262A;
  font-weight: 400;
  line-height: 30px;
  margin: 10px 0px;
  font-family: 'Henderson Sans';
}

.inmoboverview {
  font-size: 28px;
  font-weight: 600;
  color: #E99650;
}

.jostfont {
  font-family: "Jost";
}

.mobileexper {
  font-size: 12px;
  font-weight: 400;
  text-align: justify;
  line-height: 20px;
  color: #25262A;
  font-family: 'Henderson Sans';
}

.mobiledownload {
  background: #CEAB76;
  display: inline-block;
  padding: 4px 18px 4px 18px;
  border-radius: 50px;
  color: #fff;
  transition: none;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Henderson Sans';
}

/* for countryCode  */
.iti__selected-flag {
  pointer-events: none;
}

.iti__arrow {
  display: none;
}

.iti {
  width: 100%;
}

/* for countryCode  */



/* .youtubeback{
  background-color: #FFFBEC;
} */

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  /* background: #fff; */
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mobileconstrunumber {
  font-size: 40px;
  font-weight: 600;
  color: #975C02;
  font-family: 'Chronicle Display' !important;
}

.mobileconstruction {
  font-size: 16px;
  font-weight: 400;
  color: #46494F;
  font-family: 'Jost';
}

.sitara {
  font-size: 24px;
  font-weight: 500;
  text-align: left;
  color: #E99650;
}

.sitararoad {
  font-size: 12px;
  font-weight: 500;
  text-align: left;
  color: #4A2F16;
}

.sitaraunits {
  font-size: 10px;
  font-weight: 400;
  text-align: left;
  color: #666666;
}

.custom-button {
  background-color: #3B230D;
  /* padding: 10px 20px; */
  border: none;
  padding: 4px 7px;
  /* cursor: pointer; */
  /* transition: all 0.3s ease; */
}

.custom-buttom-inner {
  font-size: 18px;
  font-weight: 600;
  font-family: 'Henderson Sans';
  padding: 4px 10px;
  color: #E99650;
  border: 1px solid #E99650;
  letter-spacing: 1px;
}

.fake-button {
  border: none;
  background-color: #3B230D;
  color: #FFFFFF;
  padding: 3px;
  margin-bottom: 7px;
}

.fake-button-inner {
  padding: 4px 14px;
  font-size: 14px;
  font-weight: 400;
}

/* .custom-button:hover {
  background-color: #E99650;
  color: #000000;
} */

.buttonshadoss {
  /* margin-bottom: 10px; */
  /* border-radius: 5px !important; */
  /* padding: 8px; */
  /* font-size: 12px; */
  /* width: 93px; */
  border: none;
  border-radius: 3px !important;
}

.nav-linking {
  color: #46494F;
  font-weight: 500;
  /* border: 1.5px solid #ACD382 !important; */
  background-color: #FEEED5;
}

.nav-pilling .nav-linking.active {
  color: #975C02 !important;
  text-decoration: none;
  border: 0.8px solid #975C02 !important;
  background-color: #FFF9F0;
  font-weight: 600 !important;
}

.alltypesarea {
  color: #46494F;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.inbottomborder {
  border-bottom: 0.5px solid #8D8D8D;
}

.toptouchback {
  background-color: #ffffff;
  padding: 16px 26px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 400;
  text-align: left;
  color: #666666;
  box-shadow: 0px 8px 24px 0px #959DA533;
}






.touchback {
  background-color: #ffffff;
  padding: 14px;
  border-radius: 0.7rem;
  font-size: 16px;
  font-weight: 400;
  text-align: left;
  color: #46494F;
  border: 1px solid #E99650
}


.fa-solid {
  font-size: 16px;
  color: #E99650;
  font-weight: 900;
  /* line-height: 16px; */
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;

}


.location-size {
  font-size: 18px !important;
  font-weight: 400;
  font-family: 'Henderson Sans';
  color: #25262A;
}

.no-style-link {
  color: inherit;
  text-decoration: none;
}

.no-scroll {
  overflow: hidden;
}


.footer-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
}

.footer-txt {
  font-family: 'Henderson Sans';
  /* padding: 5px; */
  font-size: 10px;
  font-weight: 600;
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 0px;
  padding: 0px 0px;
  /* margin-bottom: 0px; */
  height: 50%;
}



.locationcolor {
  color: #25262A;
}

footer {
  background-color: #CEAB76;
  color: #fff;
}

.Vsnap {
  color: #fff;
  text-decoration: underline;
}

.form-container {
  /* max-width: 300px;
  padding: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); */
}

.form-container label {
  color: #8D8D8D;
  font-size: 12px;
  font-weight: 400;
  font-family: 'Henderson Sans';
  letter-spacing: 1px;
}

.form-container input {
  width: 100%;
  /* padding: 10px; */
  margin-bottom: 14px;
  border: none;
  border-radius: 0px;
  font-size: 14px;
  font-weight: 300;
  border-bottom: 1px solid #8D8D8D;
  outline: none;
  font-family: 'Henderson Sans';
  letter-spacing: -1px;
}

.form-container input::placeholder {
  color: #46494F4A;
  font-weight: 400;
}

.form-container input:focus {
  border-bottom: 1px solid #000000;
  color: #000;
  font-weight: 600;
}

.form-container input::placeholder {
  color: #aaa;
}

.form-container input[type="submit"] {
  background-color: #E99650;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 1em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.form-container input[type="submit"]:hover {
  background-color: #E99650;
}

.contsubmit {
  background-color: #E99650;
  border: none;
  color: #FFFFFF;
  width: 100%;
  padding: 6px;
  border-radius: 2px;
  font-size: 20px;
  font-weight: 600;
  font-family: 'Henderson Sans';
  margin-top: 10px;
  letter-spacing: 1px;
}

.nav-pills {
  --bs-nav-pills-border-radius: 0.375rem;
  --bs-nav-pills-link-active-color: #CE943C;
  --bs-nav-pills-link-active-bg: none
}

.nav-link {
  color: #8D8D8D;
}

/**mobilenew image**/


.overview-txt-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  height: 100%;
}


/**
* Mobile Navigation 
*/
/* Mobile Navigation */
.mobile-nav-toggle {
  color: #452403;
  font-size: 32px;
  cursor: pointer;
  display: none;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }

  .navbar.navbar-mobile ul {
    display: block;
  }

  .navbar ul li {
    margin: 10px 0;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
  height: 100vh;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
}

.navbar-mobile a {
  display: block;
  padding: 10px 20px;
  color: #111;
  text-decoration: none;
}

.navbar-mobile a:hover,
.navbar-mobile .active {
  color: #c43f42;
}

/* end of mobile navigation */

.readyin {
  width: 364.51px;
  height: 174px;
  top: 644px;
  left: 501px;
  gap: 0px;
  opacity: 0px;
  background-color: #fff;
  border-top-left-radius: 475px;
  border-top-right-radius: 475px;
  border: 2px dashed #C94346;
  margin-top: 10px;
  /* padding: 10px; */
  margin-inline: 7px;
}

.readyins {
  width: 384.51px;
  height: 185px;
  top: 644px;
  left: 501px;
  gap: 0px;
  opacity: 0px;
  background-color: #fff;
  border-top-left-radius: 470px;
  border-top-right-radius: 475px;
  /* margin-top: 22px; */
  padding-inline: 3px;
}

.moveincolo {
  font-size: 32px;
  font-weight: 400;
  line-height: 24px;
  color: #C94346;
}

.rowdownin {
  position: relative;
  bottom: -24px;
}

.logobuimg {
  width: 64px;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  /* height: 100vh; */
  /* background-color: rgba(0, 0, 0, 0.8); */
  overflow: hidden;
  position: unset;
  padding: 30px 0 0 0;
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  /* top: 0; */
  right: 0;
  left: 0;
  bottom: 0px;
}

#hero .carousel-container {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: absolute;
  bottom: 60px;
  top: 70px;
  left: 55px;
  right: 55px;
}

#hero .carousel-content {
  background: rgba(4, 4, 4, 0.7);
  padding: 20px;
  color: #fff;
  border-top: 5px solid #1bbd36;
}

#hero .carousel-content h2 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: 700;
}

#hero .btn-get-started {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: 2px solid #1bbd36;
}

#hero .btn-get-started:hover {
  background: #1bbd36;
  color: #fff;
  text-decoration: none;
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.6);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
  background: rgba(255, 255, 255, 0.6);
  color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}

#hero .carousel-indicators li.active {
  opacity: 1;
  background: #c43f42;
}

@media (min-width: 1024px) {
  #hero .carousel-content {
    width: 60%;
  }

  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%;
  }
}

@media (max-width: 992px) {
  #hero .carousel-container {
    top: 58px;
  }

  #hero .carousel-content h2 {
    margin-bottom: 15px;
    font-size: 22px;
  }

  #hero .carousel-content p {
    font-size: 15px;
  }
}

@media (max-height: 500px) {
  /* #hero {
    height: 120vh;
  } */
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  /* padding: 60px 0 10px 0; */
  overflow: hidden;
}

.section-bg {
  background-color: #f7f7f7;
}

.section-title {
  text-align: center;
  padding-bottom: 10px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #1bbd36;
  bottom: 0;
  left: calc(50% - 25px);
}

.align-center {
  text-align: center !important;
}

.section-title p {
  margin-bottom: 0;
}

/* swipre */
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  /* background: #fff; */
  display: flex !important;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
}

:root {
  --swiper-navigation-size: 44px;
}

/* swipre */
#fpsec.swiper-button-next {
  border: 2px dashed #000;
  width: 60px;
  height: 60px;
  background-color: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

#fpsec.swiper-button-prev {
  border: 2px dashed #000;
  width: 60px;
  height: 60px;
  background-color: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

.swiper-button-next,
.swiper-button-prev {
  color: #C94346;
  padding: 10px 20px;
  font-weight: bold;
  display: inline-block;
  top: 113px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
  font-size: 27px;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #1bbd36;
  min-height: 40px;
  margin-top: 72px;
}

.breadcrumbs h2 {
  font-size: 26px;
  font-weight: 300;
  color: #fff;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  color: #fff;
}

.breadcrumbs ol a {
  color: #fff;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #fff;
  content: "/";
}

.mainseccenter {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  /* height: 110vh; */
  flex-direction: column;
}

@media (max-width: 991px) {
  .breadcrumbs {
    margin-top: 58px;
  }

  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

.preloader {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 999999999999999999;
  background-color: #ffffff;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(../img/gr-samskruthi-loader.gif);
}

.preloader.style-two {
  background-image: url(../img/gr-samskruthi-loader.gif);
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgb(255 255 255);
  /* Semi-transparent background */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999999999999999;
  /* Higher than modal's z-index */
}

.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid rgba(0, 0, 0, 0.2);
  border-top-color: #333;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}


/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  padding: 70px 20px 80px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
}

.services .icon-box .icon i {
  font-size: 36px;
  transition: 0.5s;
  position: relative;
}

.services .icon-box .icon svg {
  position: absolute;
  top: 0;
  left: 0;
}

.services .icon-box .icon svg path {
  transition: 0.5s;
  fill: #f5f5f5;
}

.services .icon-box h4 {
  font-weight: 600;
  margin: 10px 0 15px 0;
  font-size: 22px;
}

.services .icon-box h4 a {
  color: #111;
  transition: ease-in-out 0.3s;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 35px 0 rgba(0, 0, 0, 0.08);
}

.services .iconbox-blue i {
  color: #47aeff;
}

.services .iconbox-blue:hover .icon i {
  color: #fff;
}

.services .iconbox-blue:hover .icon path {
  fill: #47aeff;
}

.services .iconbox-orange i {
  color: #ffa76e;
}

.services .iconbox-orange:hover .icon i {
  color: #fff;
}

.services .iconbox-orange:hover .icon path {
  fill: #ffa76e;
}

.services .iconbox-pink i {
  color: #e80368;
}

.services .iconbox-pink:hover .icon i {
  color: #fff;
}

.services .iconbox-pink:hover .icon path {
  fill: #e80368;
}

.services .iconbox-yellow i {
  color: #ffbb2c;
}

.services .iconbox-yellow:hover .icon i {
  color: #fff;
}

.services .iconbox-yellow:hover .icon path {
  fill: #ffbb2c;
}

.services .iconbox-red i {
  color: #ff5828;
}

.services .iconbox-red:hover .icon i {
  color: #fff;
}

.services .iconbox-red:hover .icon path {
  fill: #ff5828;
}

.services .iconbox-teal i {
  color: #11dbcf;
}

.services .iconbox-teal:hover .icon i {
  color: #fff;
}

.services .iconbox-teal:hover .icon path {
  fill: #11dbcf;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 50px auto;
  list-style: none;
  text-align: center;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  color: #4d4643;
  transition: all 0.3s;
  border-radius: 4px;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #fff;
  background: #1bbd36;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  color: #111;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #444444;
  font-size: 14px;
  margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: #2b2b2b;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #1bbd36;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 10px;
}

.portfolio .portfolio-item .portfolio-links {
  opacity: 0;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-item .portfolio-links a {
  color: #fff;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-links a:hover {
  color: #57e76f;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 20px;
}




/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients .clients-wrap {
  border-top: 1px solid #ececec;
  border-left: 1px solid #ececec;
}

.clients .client-logo {
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
  overflow: hidden;
  background: #fff;
  height: 100px;
}

.clients .client-logo img {
  transition: all 0.3s ease-in-out;
  height: 36px;
  filter: grayscale(100%);
}

.clients .client-logo:hover img {
  filter: none;
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about-us {
  /* background: url("../img/body-bg.jpg") no-repeat; */
  /* background-position: top center; */
  /* background-size: cover; */
}

.about-us .content {
  text-align: center;
}

.about-us .content .mid-logo {
  padding-bottom: 22px;
}

.about-us .content h2 {
  font-weight: 300;
  font-size: 60px;
  color: #313131;
  line-height: 60px;
  margin-bottom: 45px;
  text-transform: uppercase;
  font-family: 'Oswald', sans-serif;
}

.about-us .content h3 {
  font-weight: 400;
  line-height: 32px;
  font-size: 30px;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #000;
}

.about-us .content h4 {
  font-weight: 400;
  line-height: 32px;
  font-size: 40px;
  color: #c43f42;
  font-family: 'Roboto', sans-serif;
  margin-bottom: 20px;
}

.about-us .content ul {
  list-style: none;
  padding: 0;
}

.about-us .content ul li {
  padding: 10px 0 0 28px;
  position: relative;
}

.about-us .content ul i {
  left: 0;
  top: 7px;
  position: absolute;
  font-size: 20px;
  color: #1bbd36;
}

.about-us .content p {
  font-weight: 400;
  line-height: 30px;
  font-size: 18px;
  color: #1e1e1e;
  font-family: 'Roboto', sans-serif;
  margin-bottom: 20px;
  max-width: 825px;
  margin: 0 auto;
  width: 100%;
}

.about-us .content p:last-child {
  margin-bottom: 0;
}

.about-us .content .more-btn {
  display: inline-block;
  background: #c94346;
  padding: 10px 120px 10px 120px;
  color: #fff;
  border-radius: 50px;
  transition: all ease-in-out 0.4s;
  font-size: 30px;
  text-transform: uppercase;
  letter-spacing: 5px;
  position: relative;
  border: 5px solid #fff;
}

.about-us .content .bkline {
  position: relative;
}

.about-us .content .bkline::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  bottom: 0;
  height: 1px;
  width: 100%;
  background: #c94346;
}


.about-us .content .more-btn i {
  font-size: 14px;
}

.about-us .content .more-btn:hover {
  color: #c94346;
  background: #fff;
  border: 5px solid #c94346;
}

.about-us .downloads {}

.about-us .downloads .btn-wrap {
  margin: 20px -20px -20px -20px;
  padding: 20px 15px;
  text-align: center;
}

.about-us .downloads .btn-buy {
  background: #ca4447;
  display: inline-block;
  padding: 6px 35px 8px 35px;
  border-radius: 50px;
  color: #fff;
  transition: none;
  font-size: 24px;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  box-shadow: 0 3px 7px rgba(255, 88, 33, 0.4);
  transition: 0.3s;
}

.about-us .downloads .btn-buy:hover {
  background: #111111;
}

.about-us .downloads .tabing-btn {
  border: 1px solid #ce484b;
  display: inline-block;
  padding: 6px 35px 8px 35px;
  border-radius: 50px;
  color: #ce484b;
  transition: none;
  font-size: 24px;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  box-shadow: 0 3px 7px rgb(153 153 153 / 40%);
  transition: 0.3s;
  width: 70%;
  background: #ffffff;
}

.about-us .downloads .tabing-btn:hover {
  background: #111111;
  color: #ffffff;
}

.buyers {
  background: #CEAB76;
  border: 1px solid #CEAB76;
  display: inline-block;
  padding: 6px 35px 8px 35px;
  border-radius: 50px;
  color: #ffffff;
  transition: none;
  font-size: 24px;
  font-weight: 600;
  font-family: 'Henderson Sans';
  /* box-shadow: 0 3px 7px rgba(255, 88, 33, 0.4); */
  transition: 0.3s;
}

.buyers:hover {
  background-color: #fff;
  color: #CEAB76;
  border: 1px solid #CEAB76;
}


.down-brochure {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  font-family: 'Henderson Sans';
}


.down-brochure i {
  padding-left: 10px;
}


/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery .gallery-item {
  overflow: hidden;
  border-right: 5px solid #fff;
  border-bottom: 5px solid #fff;
}

.gallery .gallery-item img {
  transition: all ease-in-out 0.4s;
}

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

.portfolio .bx1:first-child {
  opacity: 0.2;
}

.portfolio .bx1:last-child {
  opacity: 0.2;
}



/* General Styles for Navigation Buttons */
.swiper-button-prev-custom,
.swiper-button-next-custom {
  position: absolute;
  top: 50%;
  /* Vertically center */
  transform: translateY(-50%);
  width: 50px;
  /* Adjust width */
  height: 50px;
  /* Adjust height */
  /* background-color: rgba(0, 0, 0, 0.5); Semi-transparent background */
  color: #975C02;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  /* Icon/font size */
  font-weight: bold;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.swiper-button-prev-custom:hover,
.swiper-button-next-custom:hover {
  background-color: rgba(0, 0, 0, 1);
  /* Darker background on hover */
  /* transform: translateY(-50%) scale(1.1); Slight zoom effect */
}

/* Positioning the Buttons on Opposite Sides of the Section */
.swiper-button-prev-custom {
  left: 0px;
  /* Adjust distance from the left edge */
}

.swiper-button-next-custom {
  right: 0px;
  /* Adjust distance from the right edge */
}



.swiper-button-prev,
.swiper-button-next {
  top: 90% !important;
}

@media (min-width:769px) {

  .swiper-button-prev,
  .swiper-button-next {
    top: 50% !important;
  }

}

/*--------------------------------------------------------------
# Our Team
--------------------------------------------------------------*/
.team .member {
  margin-bottom: 20px;
  overflow: hidden;
  text-align: center;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.team .member .member-img {
  position: relative;
  overflow: hidden;
}

.team .member .social {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 40px;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
  background: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team .member .social a {
  transition: color 0.3s;
  color: #111;
  margin: 0 10px;
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.team .member .social a i {
  line-height: 0;
}

.team .member .social a:hover {
  color: #1bbd36;
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.team .member .member-info {
  padding: 25px 15px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #111;
}

.team .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #b4aca8;
}

.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #847872;
}

.team .member:hover .social {
  opacity: 1;
}

/*--------------------------------------------------------------
# Our Skills
--------------------------------------------------------------*/
.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill {
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #111;
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: #e7e7e7;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: #1bbd36;
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .icon-box {
  display: flex;
  align-items: center;
  padding: 20px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: ease-in-out 0.3s;
}

.features .icon-box i {
  font-size: 32px;
  padding-right: 10px;
  line-height: 1;
}

.features .icon-box h3 {
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 16px;
}

.features .icon-box h3 a {
  color: #111;
  transition: ease-in-out 0.3s;
}

.features .icon-box h3 a:hover {
  color: #1bbd36;
}

.headss {
  font-size: 42px;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 20px;
  background: #fff;
  text-align: center;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.12);
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.pricing h3 {
  font-weight: 400;
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  color: #847872;
  background: #f8f8f8;
}

.pricing h4 {
  font-size: 36px;
  color: #1bbd36;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}

.pricing h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: #4d4643;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing ul li {
  padding-bottom: 16px;
}

.pricing ul i {
  color: #1bbd36;
  font-size: 18px;
  padding-right: 4px;
}

.pricing ul .na {
  color: #ccc;
  text-decoration: line-through;
}

.pricing .btn-wrap {
  margin: 20px -20px -20px -20px;
  padding: 20px 15px;
  background: #f8f8f8;
  text-align: center;
}

.pricing .btn-buy {
  background: #1bbd36;
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 4px;
  color: #fff;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  transition: 0.3s;
}

.pricing .btn-buy:hover {
  background: #2ae149;
}

.pricing .featured h3 {
  color: #fff;
  background: #1bbd36;
}

.pricing .advanced {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: #1bbd36;
  color: #fff;
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0 100px;
}

.faq .faq-list ul {
  padding: 0;
  list-style: none;
}

.faq .faq-list li+li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: lightgray;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #343a40;
  transition: 0.3s;
}

.faq .faq-list a.collapsed:hover {
  color: #1bbd36;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

/*--------------------------------------------------------------
# Highlights
--------------------------------------------------------------*/
.highlights {
  padding: 80px 0;
  background: url("../img/banner-bghighlight.webp") no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  border-top-left-radius: 180px;
}

.highlights::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(11, 41, 55, 0.9);
}

/* .highlights-numbers {
  font-family: 'Cormorant Infant';
} */

.highlights .highlights-item h3 {
  font-size: 40px;
  font-weight: bold;
  margin: 0px 0 30px 0;
  color: #fff;
}

.highlights .highlights-item h3 span {
  font-weight: 300;
}

.highlights .highlights-item ul {
  margin: 15px 0 0 0;
  padding: 0;
}

.highlights .highlights-item ul li {
  color: #fff;
  list-style: none;
  padding-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.highlights .highlights-item ul li:before {
  position: absolute;
  content: "";
  width: 10px;
  height: 9px;
  top: 8px;
  left: 0px;
  background: url("../img/dot.png") center center;
  z-index: -1;
}

.c_living {
  text-align: center;
}

.c_living h3 {
  font-weight: 400;
  line-height: 45px;
  font-size: 45px;
  color: #c43f42;
  font-family: 'Roboto', sans-serif;
  margin-bottom: 10px;
}

.c_living h3 span {
  font-weight: 300;
  color: #000;
}

.c_living p {
  font-weight: 400;
  line-height: 30px;
  font-size: 18px;
  color: #1e1e1e;
  font-family: 'Roboto', sans-serif;
  width: 100%;
  margin-bottom: 20px;
}

.c_living p strong {
  color: #c43f42;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-wrap {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.contact h2 {
  font-weight: 500;
  line-height: 32px;
  font-size: 40px;
  color: #4d4643;
  font-family: 'Roboto', sans-serif;
  margin-bottom: 40px;
}

.contact .info {
  background: #fff;
}

.contact .info i {
  font-size: 20px;
  color: #1bbd36;
  float: left;
  width: 44px;
  height: 44px;
  border: 1px solid #1bbd36;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #111;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #444444;
}

.contact .info:hover i {
  background: #1bbd36;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
  padding: 20px 25px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid #E99650;
}

.contact .php-email-form h2 {
  font-weight: 400;
  line-height: 32px;
  font-size: 40px;
  color: #a42e30;
  font-family: 'Roboto', sans-serif;
  margin-bottom: 40px;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 50px;
  border: 1px solid #E99650;
}

.contact .php-email-form textarea {
  border-radius: 20px;
}

.contact .php-email-form .col-form-label {
  font-size: 14px;
  color: #333;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #975C02;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background-color: #E99650;
  border: 1px solid #E99650;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
  margin-top: 10px;
  width: 100%;
}

.contact .php-email-form button[type=submit]:hover {
  background: #FFFFFF;
  color: #E99650;
  border: 1px solid #E99650;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog {
  padding: 40px 0 20px 0;
}

.blog .entry {
  padding: 30px;
  margin-bottom: 60px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .entry .entry-img {
  max-height: 440px;
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog .entry .entry-title {
  font-size: 28px;
  font-weight: bold;
  padding: 0;
  margin: 0 0 20px 0;
}

.blog .entry .entry-title a {
  color: #111;
  transition: 0.3s;
}

.blog .entry .entry-title a:hover {
  color: #1bbd36;
}

.blog .entry .entry-meta {
  margin-bottom: 15px;
  color: #777777;
}

.blog .entry .entry-meta ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog .entry .entry-meta ul li+li {
  padding-left: 20px;
}

.blog .entry .entry-meta i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
}

.blog .entry .entry-meta a {
  color: #847872;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog .entry .entry-content p {
  line-height: 24px;
}

.blog .entry .entry-content .read-more {
  -moz-text-align-last: right;
  text-align-last: right;
}

.blog .entry .entry-content .read-more a {
  display: inline-block;
  background: #1bbd36;
  color: #fff;
  padding: 6px 20px;
  transition: 0.3s;
  font-size: 14px;
  border-radius: 4px;
}

.blog .entry .entry-content .read-more a:hover {
  background: #1ed33c;
}

.blog .entry .entry-content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog .entry .entry-content blockquote {
  overflow: hidden;
  background-color: #fafafa;
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog .entry .entry-content blockquote p {
  color: #4d4643;
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog .entry .entry-content blockquote::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: #111;
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog .entry .entry-footer {
  padding-top: 10px;
  border-top: 1px solid #e6e6e6;
}

.blog .entry .entry-footer i {
  color: #5e5e5e;
  display: inline;
}

.blog .entry .entry-footer a {
  color: #1e1e1e;
  transition: 0.3s;
}

.blog .entry .entry-footer a:hover {
  color: #1bbd36;
}

.blog .entry .entry-footer .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog .entry .entry-footer .cats li {
  display: inline-block;
}

.blog .entry .entry-footer .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog .entry .entry-footer .tags li {
  display: inline-block;
}

.blog .entry .entry-footer .tags li+li::before {
  padding-right: 6px;
  color: #6c757d;
  content: ",";
}

.blog .entry .entry-footer .share {
  font-size: 16px;
}

.blog .entry .entry-footer .share i {
  padding-left: 5px;
}

.blog .entry-single {
  margin-bottom: 30px;
}

.blog .blog-author {
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .blog-author img {
  width: 120px;
  margin-right: 20px;
}

.blog .blog-author h4 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 0px;
  padding: 0;
  color: #111;
}

.blog .blog-author .social-links {
  margin: 0 10px 10px 0;
}

.blog .blog-author .social-links a {
  color: rgba(17, 17, 17, 0.5);
  margin-right: 5px;
}

.blog .blog-author p {
  font-style: italic;
  color: #bfb9b6;
}

.blog .blog-comments {
  margin-bottom: 30px;
}

.blog .blog-comments .comments-count {
  font-weight: bold;
}

.blog .blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog .blog-comments .comment .comment-img {
  margin-right: 14px;
}

.blog .blog-comments .comment .comment-img img {
  width: 60px;
}

.blog .blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog .blog-comments .comment h5 a {
  font-weight: bold;
  color: #4d4643;
  transition: 0.3s;
}

.blog .blog-comments .comment h5 a:hover {
  color: #1bbd36;
}

.blog .blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: #111;
}

.blog .blog-comments .comment h5 .reply i {
  font-size: 20px;
}

.blog .blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: #2b2b2b;
  margin-bottom: 5px;
}

.blog .blog-comments .comment.comment-reply {
  padding-left: 40px;
}

.blog .blog-comments .reply-form {
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .blog-comments .reply-form h4 {
  font-weight: bold;
  font-size: 22px;
}

.blog .blog-comments .reply-form p {
  font-size: 14px;
}

.blog .blog-comments .reply-form input {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .blog-comments .reply-form input:focus {
  box-shadow: none;
  border-color: #57e76f;
}

.blog .blog-comments .reply-form textarea {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .blog-comments .reply-form textarea:focus {
  box-shadow: none;
  border-color: #57e76f;
}

.blog .blog-comments .reply-form .form-group {
  margin-bottom: 25px;
}

.blog .blog-comments .reply-form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: #111;
}

.blog .blog-comments .reply-form .btn-primary:hover {
  background-color: #1e1e1e;
}

.blog .blog-pagination {
  color: #444444;
}

.blog .blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog .blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog .blog-pagination li a {
  color: #111;
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog .blog-pagination li.active,
.blog .blog-pagination li:hover {
  background: #1bbd36;
}

.blog .blog-pagination li.active a,
.blog .blog-pagination li:hover a {
  color: #fff;
}

.blog .sidebar {
  padding: 30px;
  margin: 0 0 60px 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .sidebar .sidebar-title {
  font-size: 20px;
  font-weight: 700;
  padding: 0 0 0 0;
  margin: 0 0 15px 0;
  color: #111;
  position: relative;
}

.blog .sidebar .sidebar-item {
  margin-bottom: 30px;
}

.blog .sidebar .search-form form {
  background: #fff;
  border: 1px solid #ddd;
  padding: 3px 10px;
  position: relative;
}

.blog .sidebar .search-form form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
}

.blog .sidebar .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  background: #1bbd36;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.blog .sidebar .search-form form button i {
  line-height: 0;
}

.blog .sidebar .search-form form button:hover {
  background: #1ecf3b;
}

.blog .sidebar .categories ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .categories ul li+li {
  padding-top: 10px;
}

.blog .sidebar .categories ul a {
  color: #111;
  transition: 0.3s;
}

.blog .sidebar .categories ul a:hover {
  color: #1bbd36;
}

.blog .sidebar .categories ul a span {
  padding-left: 5px;
  color: #b4aca8;
  font-size: 14px;
}

.blog .sidebar .recent-posts .post-item+.post-item {
  margin-top: 15px;
}

.blog .sidebar .recent-posts img {
  width: 80px;
  float: left;
}

.blog .sidebar .recent-posts h4 {
  font-size: 15px;
  margin-left: 95px;
  font-weight: bold;
}

.blog .sidebar .recent-posts h4 a {
  color: #111;
  transition: 0.3s;
}

.blog .sidebar .recent-posts h4 a:hover {
  color: #1bbd36;
}

.blog .sidebar .recent-posts time {
  display: block;
  margin-left: 95px;
  font-style: italic;
  font-size: 14px;
  color: #b4aca8;
}

.blog .sidebar .tags {
  margin-bottom: -10px;
}

.blog .sidebar .tags ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .tags ul li {
  display: inline-block;
}

.blog .sidebar .tags ul a {
  color: #515151;
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid #c4c4c4;
  display: inline-block;
  transition: 0.3s;
}

.blog .sidebar .tags ul a:hover {
  color: #fff;
  border: 1px solid #1bbd36;
  background: #1bbd36;
}

.blog .sidebar .tags ul a span {
  padding-left: 5px;
  color: #aaaaaa;
  font-size: 14px;
}

.goverlay {
  background: rgb(0 0 0 / 98%);
}

.samskruthimap {
  height: 440px;
  width: 100%;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #111;
  font-size: 14px;
  background: #fff;
}

#footer .footer-top {
  padding: 5px;
  background: #CEAB76;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 22px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Roboto", sans-serif;
  color: rgba(255, 255, 255, 0.7);
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #1ed33c;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: rgba(255, 255, 255, 0.6);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #fff;
}

#footer .footer-newsletter {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
}

#footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px 0 0 4px;
  text-align: left;
}

#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -4px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #1bbd36;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type=submit]:hover {
  background: #2ae149;
}

#footer .credits {
  padding-top: 0px;
  font-size: 16px;
  color: #212529;
}

#footer .credits a {
  color: #000;
  font-size: 16px;
}

#footer .credits a:hover {
  color: #ca4447;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #1bbd36;
  color: #fff;
  text-decoration: none;
}


/*---------------- Modals
---------------------------*/


.data-ml-modal {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 999;
  width: 0;
  height: 0;
  opacity: 0;
}

.data-ml-modal:target {
  width: auto;
  height: auto;
  opacity: 1;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
}

.data-ml-modal:target .modal-overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  cursor: pointer;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.data-ml-modal .modal-dialog {
  border-radius: 6px;
  box-shadow: 0 11px 15px -7px rgba(0, 0, 0, 0.2), 0 24px 38px 3px rgba(0, 0, 0, 0.14), 0 9px 46px 8px rgba(0, 0, 0, 0.12);
  position: relative;
  width: 90%;
  max-width: 660px;
  max-height: 70%;
  margin: 10% auto;
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 2;
}

.brochure-header h3 {
  /*background-color:#eee;
	border-bottom:1px solid #b3b3b3;*/
  font-size: 30px;
  /* margin-left: 5px; */
  font-weight: 400;
  font-family: 'Jost';
  margin: 0;
  /* padding:0.8em 56px .8em 27px;  */
  color: #E99650;
}

.brochure-header i {
  margin-right: 10px;
}

.brochure-header span {
  font-size: 20px;
  font-weight: 400;
  font-family: 'Jost';
  color: #000000;
  display: block;
  /* padding-top:5px; */
}

.data-ml-modal .modal-content {
  background: #fff;
  padding: 23px 27px;
}

.data-ml-modal .modal-close {
  position: absolute;
  top: 13px;
  right: 13px;
  color: #c43f42;
  background-color: #fff;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  font-size: 30px;
  line-height: 37px;
  text-align: center;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.data-ml-modal .modal-close:hover {
  background-color: #0085a6;
  color: #fff;
  cursor: pointer;
}

.data-ml-modal p:first-child,
.data-ml-modal p:last-child {
  margin: 0;
}

@media (max-width:767px) {
  .data-ml-modal .modal-dialog {
    margin: 20% auto;
  }
}

/*--------------------- End Modals ---------*/


/* otp css  */
.otp-field {
  flex-direction: row;
  column-gap: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.otp-field input {
  height: 45px;
  width: 42px;
  border-radius: 6px;
  outline: none;
  font-size: 1.125rem;
  text-align: center;
  border: 1px solid #ddd;
}

.otp-field input:focus {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}

.otp-field input::-webkit-inner-spin-button,
.otp-field input::-webkit-outer-spin-button {
  display: none;
}

.contact-form .form-field {
  position: relative;
  margin: 32px 0;
}

.contact-form .input-text {
  display: block;
  width: 100%;
  height: 36px;
  border-width: 0 0 2px 0;
  border-color: #29484033;

  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
}

.contact-form .input-text:focus {
  outline: none;
}

.contact-form .input-text:focus+.label,
.contact-form .input-text.not-empty+.label {
  transform: translateY(-24px);
}

.contact-form .label {
  position: absolute;
  left: 20px;
  bottom: 11px;
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  color: #888;
  cursor: text;
  transition: transform 0.2s ease-in-out;
}

.contact-form .submit-btn {
  display: inline-block;
  background-color: #294840;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 16px;
  line-height: 24px;
  padding: 8px 16px;
  border: none;
  cursor: pointer;
}

/* otp css  */

.grmobileview {
  display: none;
}

/* enquery style start  */
.enquery-section p {
  font-size: 1.75rem;
  color: #e99650;
  font-family: "Jost";
  font-weight: 600;
}

.nav-tabs .enquire-links,
.nav-tabs .enquire-links.active {
  border-bottom: #892116 2px solid;
  font-weight: 400;
  font-size: 20px;
  line-height: 25px;
  color: #892116;
  opacity: 1;
  padding: 0;
}

.nav-tabs .enquire-links {
  background: none;
  border: 0px solid transparent;
  font-weight: 300;
  font-size: 19px;
  line-height: 24px;
  /* text-align: right; */
  color: #892116;
  opacity: 0.6;
  cursor: pointer;
  margin: 0px 10px;
}

.sidebar-contact {
  position: fixed;
  top: 60%;
  right: -400px;
  transform: translateY(-50%);
  width: 400px;
  height: auto;
  padding: 25px;
  background: #fff;
  box-shadow: 0 20px 50px rgb(0 0 0 / 50%);
  box-sizing: border-box;
  transition: 0.5s;
  z-index: 1;
  border-radius: 0px 0px 0px 20px;
}

.sidebar-contact.active {
  right: 0;
}

.sidebar-contact input,
.sidebar-contact textarea {
  width: 100%;
  height: 36px;
  margin-bottom: 10px;
  box-sizing: border-box;
  border: 1px solid rgba(0, 0, 0, 0.5);
  outline: none;
  border-radius: 20px;
}

.sidebar-contact h2 {
  margin: 0 0 20px;
  padding: 0;
}

.sidebar-contact textarea {
  height: 60px;
  resize: none;
}

.sidebar-contact .enqueryBtn {
  background-color: #975c02;
  color: #fff;
  font-weight: 500;
  border: 1px solid #975c02;
  cursor: pointer;
  /* border: none; */
  font-size: 20px;
  padding: 5px 30px;
  border-radius: 20px;
}

.sidebar-contact .enqueryBtn:hover {
  background: #fff;
  color: #975c02;
  border: 1px solid #975c02;
}

.toggle {
  position: absolute;
  width: 130px;
  text-align: center;
  cursor: pointer;
  background: #ceab76;
  top: 0;
  left: 0px;
  line-height: 36px;
  transform-origin: 0 0;
  transform: rotate(90deg);
  border-radius: 0px 0px 20px 20px;
  /* box-shadow: 1px 2px 9px #353232; */
  font-family: 'Jost';
}

.toggle:before {
  content: "\F5C1  Enquire Now";
  font-family: bootstrap-icons;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}

.toggle.active:before {
  content: "\f622";
  font-family: bootstrap-icons;
}

.mobile_enquireForm {
  display: none;
}

.mobile_enquireForm_detailspage {
  display: none;
}

/* enquery style end  */

/* popup */
.popup-btn {
  /* position: absolute!important;
	top: 55%;
	left: 50%;
	transform: translate(-50%,-50%); */
}

.main-btn-rect,
.main-btn-circle {
  position: relative;
  margin: 0;
  font-family: 'Roboto', sans-serif;
  color: #FFFFF0;
  background-color: #E99650;
  text-transform: uppercase;
  font-size: 25px;
  letter-spacing: 1px;
  outline: none;
  cursor: pointer;
  z-index: 100;
}

.main-btn-rect {
  padding: 10px 80px;
  line-height: 30px;
}

.main-btn-rect:before,
.main-btn-rect:after {
  position: absolute;
  content: '';
  top: 0;
  width: 0%;
  height: 100%;
  background-color: rgba(255, 255, 240, 0.2);
  -webkit-transition: width 0.3s;
  -o-transition: width 0.3s;
  transition: width 0.3s;
}

.main-btn-rect:before {
  left: 0;
}

.main-btn-rect:after {
  right: 0;
}

.main-btn-rect:hover:before,
.main-btn-rect:hover:after {
  width: 50%;
}

.main-btn-circle {
  height: 40px;
  width: 40px;
  -webkit-border-radius: 50%;
  border-radius: 100%;
  line-height: 40px;
  -webkit-transition: box-shadow 0.3s;
  -o-transition: box-shadow 0.3s;
  transition: box-shadow 0.3s;
}

.main-btn-circle:hover {
  -webkit-box-shadow: inset 2px 1px 0px 20px rgba(255, 255, 240, 0.2);
  -moz-box-shadow: inset 2px 1px 0px 20px rgba(255, 255, 240, 0.2);
  box-shadow: inset 2px 1px 0px 20px rgba(255, 255, 240, 0.2);
}

#popup-reg {
  position: fixed;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 999;
  display: none;
  background-color: rgb(0 0 0 / 79%);
  transition: background-color .6s, opacity .6s;
}

.popup.active {
  top: 0;
  background-color: rgba(3, 3, 3, 0.98);
  transition: background-color .6s, opacity .6s;
}

.popup .main-btn-rect {
  padding: 10px 100px;
}

.popup .popup-content {
  position: absolute;
  top: 50%;
  left: 50%;
  max-height: 568px;
  min-width: 320px;
  padding: 25px;
  background-color: #FFFFFF;
  color: #070000;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2), 0 1px 2px rgba(0, 0, 0, 0.1) !important;
  transform: translate(-50%, -50%);
  transition: margin 0.6s;
}

.popup.active .popup-content {
  margin-top: 0px;
}

.popup-content h6 {
  /* display: table; */
  font-size: 22px;
  text-align: center;
  margin-bottom: 15px;
  font-family: 'Jost';
  text-transform: uppercase;
  font-weight: 100;
}

#formid.form-group {
  position: relative;
  width: 90%;
  margin: 0px auto;
}

form.send input,
form.send textarea {
  position: relative;
  margin-bottom: 25px;
  width: 100%;
  height: 29px;
  font-family: 'RobotoLight', sans-serif;
  /* text-indent: 20px; */
  background-color: transparent;
  outline: 0;
  border: none;
  border-bottom: 1px solid #070000;
  -webkit-transition: border 0.6s;
  -o-transition: border 0.6s;
  transition: border 0.6s;
}

form.send input:focus,
form.send textarea:focus {
  border-bottom: 1px solid #000;
}

form.send label {
  position: absolute;
  top: 0;
  line-height: 28px;
  -webkit-transition: color .5s;
  -o-transition: color .5s;
  transition: color .5s;
}

form.send input:focus+label,
form.send textarea:focus+label {
  color: #000;
}

form.send .txt {
  line-height: 22px;
  left: 2px;
}

form.send .main-btn-rect {
  position: static;
  /* display: block;   */
  /* padding: 12px 80px; */
  /* margin: 0px auto; */
  text-align: center;
  font-size: 18px;
}

form.send .main-btn-rect i {
  margin-right: 5px;
}

.popup .fade-out {
  position: absolute;
  top: -20px;
  right: -20px;
  text-align: center;
  font-size: 15px;
}

.popup .fade-outing {
  position: absolute;
  top: 0px;
  right: 0px;
  text-align: center;
  font-size: 15px;
}

.share-wrap {
  position: absolute;
  display: inline-table;
  top: 67%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 15px;
  text-align: center;
}

.share-btn {
  color: #FFFFF0;
  padding: 7px 25px;
  text-decoration: none;
  cursor: pointer;
  font-weight: 100;
  font-size: 14px;
  font-family: 'Lobster', sans-serif;
  background-color: rgba(63, 173, 168, .8);
  text-transform: uppercase;
  border-radius: 5px;
  transition: background-color .5s;
  -webkit-transition: background-color .5s;
  -moz-transition: background-color .5s;
  -o-transition: background-color .5s;
}

.share-btn:hover {
  color: #FFFFF0;
  text-decoration: none;
  background-color: rgba(63, 173, 168, 1.0);
}

.resp-sharing-button__link,
.resp-sharing-button__icon {
  display: inline-block
}

.resp-sharing-button__link {
  text-decoration: none;
  color: #fff;
  margin: 2px;
}

.resp-sharing-button {
  border-radius: 5px;
  transition: 25ms ease-out;
  padding: 6px 9px;
  transition: background-color .5s;
  -webkit-transition: background-color .5s;
  -moz-transition: background-color .5s;
  -o-transition: background-color .5s;
}

.resp-sharing-button__icon svg {
  width: 1em;
  height: 1em;
  margin-right: 0.4em;
  vertical-align: top
}

.resp-sharing-button--small svg {
  margin: 0;
  vertical-align: middle
}

.resp-sharing-button__icon,
.resp-sharing-button__icon--solid,
.resp-sharing-button__icon--solidcircle {
  fill: #fff;
  stroke: none
}

.resp-sharing-button--facebook {
  background-color: #3b5998;
  border-color: #3b5998;
}

.resp-sharing-button--facebook:hover,
.resp-sharing-button--facebook:active {
  background-color: #2d4373;
  border-color: #2d4373;
}

.resp-sharing-button--twitter {
  background-color: #55acee;
  border-color: #55acee;
}

.resp-sharing-button--twitter:hover,
.resp-sharing-button--twitter:active {
  background-color: #2795e9;
  border-color: #2795e9;
}

.resp-sharing-button--linkedin {
  background-color: #0077b5;
  border-color: #0077b5;
}

.resp-sharing-button--linkedin:hover,
.resp-sharing-button--linkedin:active {
  background-color: #046293;
  border-color: #046293;
}



/* adding the new CSS */
.sec-features {
  width: 100%;
  padding: 0px 0px !important;

}

.features-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 11px 30px;
}

.feature {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.feature-img {
  height: 20px;
  width: 20px;
}

.feature-txt {
  margin-top: 3px;
  font-family: 'Jost';
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.6px;
  color: #713400;
  margin-bottom: 0px;
}



.enquiry-section {
  display: none;
  padding: 0px 0px !important;
  position: fixed;
  bottom: 0;
  z-index: 9;
  width: 100%;
}

.contact-section {
  background-color: #E99650;
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  padding: 10px 0px;
  width: 100%;
}

.contact-txt {
  font-weight: 400;
  color: #FFFFFF;
  font-size: 14px;
  margin-bottom: 0px;
  margin-left: 8px;
  /* font-family: 'Gilroy-Medium'; */
}

.contact-div {
  display: flex;
  justify-content: center;
  align-items: center;
  width: -webkit-fill-available;
}

.contact-div a {
  display: flex;
  justify-content: center;
  align-items: center;

}


.align-this {
  display: flex;
  justify-content: center;
}


.main-header-container_new {
  /* background: #FFFFFFE5; */
  /* border-radius: 2px; */
  /* backdrop-filter: blur(2px); */
  padding: 4px 0px;
  height: 95px;
  width: 100%;
  text-align: center;
}

.main-header-container {
  /* margin-top: 15px; */
  background: #FFFFFFE5;
  border-radius: 2px;
  backdrop-filter: blur(2px);
  padding: 4px 8px;
  height: 95px;
  width: 302px;
  /* width: 95%; */
  /* height: 95px; */
  text-align: center;
  /* display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; */
}


.gallery img {
  width: 100%;
  max-width: 150px;
  /* Thumbnail size */
  cursor: pointer;
  margin: 5px;
  border: 2px solid #ddd;
  border-radius: 5px;
}

.gallery img:hover {
  border-color: #007bff;
}




.main-header-container p {
  margin-bottom: 0px !important;
}

.main-header-container_new .main-header_new {
  font-family: "Chronicle Display";
  font-weight: 600;
  font-style: Black;
  font-size: 26px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  text-transform: capitalize;
  color: rgba(217, 125, 47, 1);
  margin-bottom: 0px;
}

.main-header-container .main-header {
  color: #E99650;
  font-size: 26px;
  letter-spacing: -0.6px;
  font-weight: 500;
  margin-bottom: 2px;
  font-family: 'Cormorant';
}

.disc-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 5px;
}

.main-header-container_new .sub-header_new {
  font-family: "Jost";
  font-weight: 400;
  font-style: Regular;
  font-size: 11px;
  /* line-height: 32px; */
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
  color: rgba(76, 76, 76, 1);
  margin-bottom: 4px;


  /* font-family: 'Jost';
  font-weight: 500;
  font-size: 12px;
  color: #E99650;
  text-transform: uppercase; */
}

.main-header-container .sub-header {
  font-family: 'Jost';
  font-weight: 500;
  font-size: 12px;
  color: #E99650;
  text-transform: uppercase;
}

.sub-heading_new {
  font-family: 'Cormorant Infant';
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.96px;
  color: #975C02;
  padding: 0px 8px;
}

.sub-heading {
  font-family: 'Cormorant Infant';
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.96px;
  color: #975C02;
  padding: 0px 8px;
}

.bhk_bg {
  background-image: url(../img/2_3bhk_bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.sub-heading_bhk_new {
  font-family: "Jost";
  font-weight: 700;
  font-style: Bold;
  font-size: 22px;
  line-height: 19px;
  text-align: center;
  vertical-align: middle;
  color: rgba(255, 255, 255, 1);
  margin-bottom: 6px;
  margin-top: 6px;
}

.sub-heading_new {
  font-family: "Jost";
  font-weight: 200;
  font-style: SemiBold;
  font-size: 18px;
  line-height: 19px;
  text-align: center;
  vertical-align: middle;
  color: rgba(255, 255, 255, 1);
  /* margin-bottom: 7px;
  margin-top: 7px; */
}

.openPopup-style {
  border: none;
  height: 100%;
  width: 100%;
  background-color: #E99650;
  display: flex;
  justify-content: center;
  align-items: center;
}



/* popup form CSS */
.popup-form {
  position: fixed;
  bottom: -100%;
  /* Initially off-screen */
  left: 0;
  right: 0;
  background-color: #fff;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
  /* padding: 20px; */
  margin-bottom: 40px;
  padding: 15px 10px 10px 10px;
  transition: bottom 0.5s ease-in-out;
  /* Smooth slide-in effect */
  z-index: 1000;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.popup-form.active {
  bottom: 0;
  /* Move into view */
}

.close_popup {
  position: absolute;
  top: 0px;
  right: 0px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

.enqueryBtn {
  display: block;
  width: 50%;
  padding: 8px 10px;
  background-color: #E99650;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}


.popup-container {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  gap: 18px;
}





.rera-id {
  font-size: 10px;

}

.popup-container input {
  width: 100%;
  border: none;
  background-color: #e9e8e8;
  color: #000000;
  border-radius: 4px;
  padding: 6px;
  font-family: 'Jost';
  font-size: 16px;
}


/* desktop CSS */
.align-this-dk_new {
  background-image: url(../img/main_bg_new.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  /* background: #FFFFFFE5; */
  backdrop-filter: blur(2px);
  text-align: center;
  height: 300px;
  width: 700px;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.align-this-dk {
  background: #FFFFFFE5;
  backdrop-filter: blur(2px);
  text-align: center;
  height: 215px;
  width: 833px;
  border-radius: 2px;
}

.main-header-dk_new {
  font-family: "Chronicle Display";
  font-weight: 600;
  font-size: 52px;
  text-align: center;
  vertical-align: middle;
  text-transform: capitalize;
  color: rgba(217, 125, 47, 1);
  margin-bottom: 0px;
  margin-top: 0px;

  /* font-size: 68px;
  font-weight: 600;
  font-family: 'Cormorant';
  color: #E99650;
  margin-bottom: 0px; */
}

.main-header-dk {
  font-size: 68px;
  font-weight: 600;
  font-family: 'Cormorant';
  color: #E99650;
  margin-bottom: 0px;
}

.sub-header-dk_new {
  font-family: "Jost";
  font-weight: 400;
  font-size: 26px;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
  color: rgba(76, 76, 76, 1);
  margin-bottom: 12px;

  /* font-size: 32px ;
  font-weight: 400 !important;
  font-family: 'Jost' !important;
  color: #E99650 !important;
  text-transform: uppercase;
  margin-bottom: 0px;  */
}

.sub-header-dk {
  font-size: 32px;
  font-weight: 400 !important;
  font-family: 'Jost' !important;
  color: #E99650 !important;
  text-transform: uppercase;
  margin-bottom: 0px;
}

.disc-container-dk_new {
  display: flex;
  justify-content: center;
  align-items: center;

  background-image: url(../img/2_3bhk_dp_bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 64px;
  margin: 20px 0px 10px;
}

.disc-container-dk {
  display: flex;
  justify-content: center;
  align-items: center;
}

.disc-container-dk_new p {
  font-family: "Jost";
  font-weight: 700;
  font-size: 48px;
  line-height: 19px;
  text-align: center;
  vertical-align: middle;
  color: rgba(255, 255, 255, 1);
  margin-bottom: 0px;
}

.disc-container-dk p {
  margin-bottom: 0px;
  font-family: 'Cormorant Infant';
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #975C02;
  padding: 0px 12px;
}

.sub-heading_dk_new {
  font-family: "Jost";
  font-weight: 300;
  font-size: 22px;
  line-height: 19px;
  text-align: center;
  vertical-align: middle;
}


.walkthrough-video {
  display: contents;
  text-align: center;
}

.about-sec-bg {
  background-image: url('../img/about-gr-bg-img.webp');
  background-position: center;
  background-size: contain;
}

.explore-img {}

.explore-title {
  font-size: 24px;
  font-weight: 600;
  font-family: 'Henderson Sans';
  margin-bottom: 0px;
  color: #E99650;
  letter-spacing: -1px;
}

.explore-subtitle {
  font-size: 16px;
  font-weight: 600;
  font-family: 'Henderson Sans';
  color: #4A2F16;
  margin-bottom: 0px;
  letter-spacing: 0px;
}

.explore-disc {
  font-size: 14px;
  font-weight: 400;
  font-family: 'Henderson Sans';
  color: #666666;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.explore-border {
  border: 1px solid #975C02;
  padding: 12px;
  border-radius: 2px;
  background: #FFFFFF;
}

.two-line-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  /* Limits to 2 lines */
  max-height: 3em;
  /* Optional: control the height */
}

.three-line-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  /* Limits to 3 lines */
  max-height: 4.5em;
  /* Adjust height to fit 3 lines (line-height * 3) */
}


.one-line-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  /* Limits to 1 line */
  /* max-height: 1.5em; */
  /* Adjust height based on font size */
}



.desktop-swiper-container {
  position: relative;
  width: 100%;
  /* max-width: 1000px; */
  overflow: hidden;
  /* background-color: #fff; */
  /* border-radius: 8px; */
  /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
}

.desktop-swiper-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.desktop-swiper-slide {
  flex: 0 0 100%;
  box-sizing: border-box;

  width: 100%;
  height: fit-content;
}

/* Navigation Buttons */
.desktop-swiper-nav {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  gap: 30px;
}

.desktop-swiper-btn {
  background-color: #E99650;
  color: black;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  height: 48px;
  width: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.desktop-swiper-btn:hover {}


.footer-top p {
  color: #FFFFFF;
  font-size: 18px;
  text-align: center;
  font-family: 'Henderson Sans';
  margin-bottom: 0px;

}




.touch-container {
  border-radius: 6px;
  box-shadow: 0px 8px 24px 0px #959DA533;
  background-color: #FFFFFF;
  padding: 30px 20px;
}

.contact-container {
  background-color: #FFFFFF;
  padding: 20px 20px;
  border-radius: 6px;
  border: 1px solid #E99650;
}


.footer-company {
  text-decoration: underline;
  color: #FFF;
}

.footer-company:hover {
  /* color: #713400 !important; */
  text-decoration: underline;
}





.desktop-floorplan-swiper-container {
  display: flex;
  justify-content: center;
  height: 440px;
  width: 80%;
}

.send-form {
  display: flex;
  flex-direction: column;
  align-items: center;
}




















@media only screen and (max-width: 768px) {
  h1 {
    font-size: 25px;
  }

  h2 {
    font-size: 32px;
  }

  form.send .main-btn-rect {
    padding: 7px 50px;
    font-size: 14px;
    border: none;
    border-radius: 2px;
  }

  .popup-btn {
    padding: 7px 50px;
    font-size: 14px;
  }
}

/* popup */
.overp {
  font-size: 20px;
  text-align: center;
}

@media (max-width: 768px) {
  h1 {
    font-size: 37px;
  }

  .header-social-links {
    padding: 0 15px 0 0;
    border-left: 0;
  }

  .highlights-item {
    padding: 0px 60px;
  }

  .sidebar-contact {
    width: 90%;
    right: -91%;
    box-shadow: none;
  }

  .sidebar-contact.active {
    right: 0;
    box-shadow: 0 20px 50px rgb(0 0 0 / 50%);
  }

  .samskruthimap {
    height: auto;
    width: 100%;
  }

  .grmobileview {
    display: flex;
    justify-content: center;
  }

  .grdestopview {
    display: none;
  }

  .contact h2 {
    font-weight: 500;
    line-height: 32px;
    font-size: 40px;
    color: #4d4643;
    font-family: 'Roboto', sans-serif;
    margin-bottom: 40px;
    text-align: center;
  }

  .c_living h3 {
    font-weight: 400;
    line-height: 45px;
    font-size: 32px;
    color: #c43f42;
    font-family: 'Roboto', sans-serif;
    margin-bottom: 10px;
  }

  /* ***for ready to move**** */
  .rowdownin {
    position: relative;
    bottom: -44px;
  }

  .readyins {
    width: 250px;
    height: 161px;
  }

  .readyin {
    width: 228px;
    height: 156px;
  }

  .logobuimg {
    width: 44px;
  }

  .moveincolo {
    font-size: 18px;
  }

  /* ***for ready to move**** */
  section {
    /* padding: 26px 0 10px 0; */
    padding-bottom: 30px;
    /* padding-top: 12px; */
    overflow: hidden;
  }

  /* .container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl{
    padding-right: calc(var(--bs-gutter-x)* 1) !important;
    padding-left: calc(var(--bs-gutter-x)* 1) !important;
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  } */

  .youtubeback-container {
    padding-right: calc(var(--bs-gutter-x)* 0.5) !important;
    padding-left: calc(var(--bs-gutter-x)* 0.5) !important;
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    margin-right: auto;
    margin-left: auto;

  }


  .floor-hr {
    border: none;
    height: 3px;
    border-radius: 15px;
    background-color: #E5D3B7;
    margin: 0;
    opacity: 1;
    transition: background-color 0.3s ease;
  }

  /* Golden color when active */
  .nav-item .nav-link.active+.floor-hr {
    background-color: #CE943C;
    /* Golden color */
  }







  .modal-header>h3 {
    /*background-color:#eee;
    border-bottom:1px solid #b3b3b3;*/
    font-size: 20px;
    font-weight: 400;
    margin: 0;
    padding: 1px 54px 1px 1px;
    color: #E99650;
  }

  .contact .php-email-form {
    width: 100%;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
    z-index: 99999 !important;
    padding: 14px;
    background: #fff;
    border-radius: 5px;
    border: 1px solid #E99650;
  }

  .contact .php-email-form input,
  .contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #E99650;
    /* padding: 0 10px; */
  }

  .contact .php-email-form button[type=submit] {
    background: #E99650;
    border: 0;
    padding: 10px 24px;
    color: #fff;
    transition: 0.4s;
    border-radius: 50px;
    width: 80%;
  }
}

@media (max-width: 576px) {
  .highlights {
    border-top-left-radius: 0px;
  }

  .highlights-item {
    padding: 0px 0px;
  }

  .about-us .content .more-btn {
    padding: 10px 30px 10px 30px;
    font-size: 25px;
  }

  .about-us .content h2 {
    font-size: 50px;
  }

  .contact .php-email-form .form-group {
    padding-bottom: 0px;
  }

  #footer .credits {
    padding: 5px 0px;
  }

  /* #hero{
		height: 45vh;
	} */
  .about-us .content .mid-logo {
    padding-bottom: 45px;
  }

  .about-us .content .mid-logo img {
    max-width: 275px;
    width: 100%;
  }

  .about-us .content h3 {
    font-size: 18px;
  }

  .overp {
    font-size: 14px;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 30px;
  }
}

@media (max-width: 414px) {
  /* .buttonshadoss {
    width: 84px;
  } */
}

@media (max-width: 393px) {
  /* .buttonshadoss {
    width: 84px;
  } */
}

@media (max-width: 375px) {
  /* .buttonshadoss {
    width: 80px;
  } */
}

@media (max-width: 360px) {
  /* .buttonshadoss {
    width: 76px;
  } */
}

@media (max-width: 320px) {
  h1 {
    font-size: 27px;
  }

  /* .buttonshadoss {
    width: 64px;
  } */
  .buttonshadoss {
    /* margin-bottom: 10px; */
    border-radius: 3px !important;
    padding: 5px 4px;
    /* font-size: 11px; */
    /* width: 67px; */
  }
}

span.text-danger.error-msg {
  font-size: 13px;
  color: #c43f42 !important;
  margin-left: 20px;
}

.submit-form.disabled {
  opacity: 0.6;
  pointer-events: none;
}

#hero-carousel-indicators {
  display: none;
}



.years-excell-txt {
  color: #FFFFFF;
  font-family: 'Cormorant Infant';
  font-weight: 700;
  font-size: 50px;
  letter-spacing: 3.2px;
  text-shadow: 0px 0px 3.5px #C2C2C2;
  margin-bottom: 0px;
  line-height: 1;
}

.year-excell-icon-dk-size {
  height: 50px;
}

.years-excell-each {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;

  background-image: url('../logos/year-excell-background-img.avif');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

  width: 600px;

  border: 1px solid #C67C00;
  border-bottom: none;
  background-color: #CD7E0080;
  backdrop-filter: blur(60px);
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  padding: 3px 0px;

}

.years-excell-container {
  position: absolute;
  bottom: 0px;
  text-align: center;
  width: 100%;

  display: flex;
  justify-content: center;
  align-items: center;
}

.buttonshadoss {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.combain-all {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.combain-all-gap {
  gap: 16px;
}

.imgflr {
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-popContainer_new {
  font-size: 32px;
}

.gr-list {
  padding-left: 0 !important;
  margin-bottom: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gr-list li {
  list-style: none;
  gap: 10px;
}

.gr-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.ytp-endscreen-content,
.ytp-pause-overlay {
  display: none !important;
}


/* new changes */
.banner-section {
  padding-top: 3rem;
}

.two-divisions {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.banner-content {
  /* background: linear-gradient(180deg, #8F5F2C -15.1%, #703D09 95.96%);
  height: -webkit-fill-available;
  padding: 3rem 1rem; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* width: 60%; */
  /* width: 60%;
  gap: 10%; */
}

.img-slide img {
  width: 100%;
}

.img-slide {
  width: 50%;
  height: -webkit-fill-available;
}

.exclusive-lake {
  font-family: 'Henderson Sans';
  font-weight: 600;
  font-size: 40px;
  letter-spacing: 1px;
  text-align: center;
  text-transform: capitalize;
  color: #FFFFFF;
  margin-bottom: 2rem;
}

.premium {
  border: 1px solid #E6BF84;
  border-radius: 4px;
  padding: 23px 190px;
  height: 88px;
  width: 580px;
}

.bhk-premium {
  font-family: 'Henderson Sans';
  /* Ensure this font is loaded */
  font-weight: 600;
  font-size: 40px;
  letter-spacing: 0.96px;
  background: linear-gradient(180deg, #B86F00 0%, #D27B2A 100%);
  color: #FFFFFF;
  margin-bottom: 0;
  border: 1px solid #FAA14E;
  border-radius: 4px;
  padding: 10px 50px;
  /* Added vertical padding for better centering */
  display: inline-block;
  /* Ensures the box wraps the text correctly */

  /* The Fix for Z-Index */
  position: relative;
  transform-style: preserve-3d;
}

.bhk-premium span {
  font-size: 30px;
  font-weight: 400;
}

.bhk-premium::before {
  content: "";
  position: absolute;
  top: -12px;
  /* Adjusted for visual balance */
  left: 12px;
  /* Adjusted for visual balance */
  right: 12px;
  bottom: -12px;
  border: 1px solid #E6BF84;
  border-radius: 4px;
  pointer-events: none;

  /* Move this behind the parent text/background */
  transform: translateZ(-1px);
}

.ready-to-move-in {
  font-family: 'Henderson Sans';
  font-weight: 600;
  font-size: 28px;
  letter-spacing: 0.56px;
  color: #5B330A;
  border-radius: 60px;
  border-width: 1px 0px 1px 0px;
  border-style: solid;
  border-color: #E6BF84;
  text-align: center;
  width: 50%;
  position: relative;
  display: inline-block;
  background: #FFFFFF;
}

/* .ready-to-move-in::before{
  content: "";
  position: absolute;
  top: 50%;
  left: -160px;
  width: 160px;
  height: 1px;
  background: rgba(255,255,255,0.6);
  transform: translateY(-50%);
} */

/* .ready-to-move-in::after{
  content: "";
  position: absolute;
  top: 50%;
  right: -160px;
  width: 160px;
  height: 1px;
  background: linear-gradient(90deg, #75430F 0%, #E6BF84 100%);
  transform: translateY(-50%);
} */


.banner-firsthalf-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.banner-img-with-content {
  display: flex;
  border-radius: 4px;
  gap: 8px;
  background: linear-gradient(180deg, #985B24 0%, #B97334 100%);
  border: 1.5px solid #B36115;
  padding: 7px 12px;
}

.banner-secondhalf-content {
  display: flex;
  gap: 24px;
}

.acers-homes-amenities {
  font-family: 'Henderson Sans';
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0px;
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 0;
}

.acers-homes-amenities span {
  font-weight: 400;
  font-size: 22px;
}

.banner-address {
  font-family: 'Henderson Sans';
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0px;
  text-align: center;
  color: #FFDEAC;
  margin-bottom: 0;
}

.banner-location-address {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  gap: 10px;
}

.years-of-excellence {
  font-family: 'Playball';
  font-weight: 400;
  font-size: 56px;
  letter-spacing: 1.08px;
  color: #372300;
  text-align: center;
  margin-bottom: 0;
}

.excellence {
  background: linear-gradient(180deg, #B58639 -22.44%, #E5C779 100%);
  border: 1px solid #FBE18C;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.overview-img {
  border-radius: 6px;
}

/* .thumbnail-video{
  height: 480px;
  object-fit: contain;
  border-radius: 6px;
  border-width: 8px;
  border: 8px solid #57381C;
  background: #00000080;
} */
/* .walkthrough-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: auto;
} */

.video-thumbnail {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.video-thumbnail img {
  /* width: 100%;
  height: 100%; */
  object-fit: contain;
  border-radius: 6px;
}

/* Modal */
.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.video-modal.active {
  display: flex;
}

.video-modal-content {
  height: 500px;
  width: 900px;
  position: relative;
}

#videoModal iframe {
  width: 900px;
  height: 500px;
}

#storyVideoModal iframe {
  width: 900px;
  height: 500px;
}

#storyVideoModal1 iframe {
  width: 900px;
  height: 500px;
}

.about-sarjapur {
  display: flex;
  justify-content: center;
  align-items: center !important;
}

/* Close button */
.close-modal {
  position: absolute;
  top: -20px;
  right: -30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

.Section-heads {
  color: #8E4E17;
}

.why-gr-samskruthi-special {
  line-height: 39px;
}

.highlightsback1 {
  background: #FFFBEC;
}

.explore-subtitle span {
  font-weight: 600;
}

.contact-us-bg {
  background-image: url('../img/contact-us.webp');
  background-repeat: no-repeat;
  background-size: cover;
}

.masterplan-img {
  border: 2px solid #E0C472;
  border-radius: 6px;
}

.plans-tabs .nav-link {
  padding: 6px 32px;
  border-bottom: 1px solid #666666 !important;
  position: relative;
  font-family: 'Henderson Sans';
  font-weight: 400;
  font-size: 28px;
  letter-spacing: 0px;
  text-align: center;
  color: #25262A;
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
}

.plans-tabs .nav-link.active {
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  background-color: #FFF4E9 !important;
  border-bottom: 2px solid #975C02 !important;
  font-family: 'Henderson Sans';
  font-weight: 400;
  font-size: 28px;
  letter-spacing: 0px;
  text-align: center;
  color: #975C02 !important;
}

.floor-inner-tabs .nav-link {
  padding: 10px 50px;
  border-radius: 0;
  color: #666;
}

.floor-inner-tabs .nav-link.active {
  color: #000;
  border-bottom: 2px solid #000;
  background: transparent;
}

.plan-img {
  border: 0px solid #E0C472;
  border-radius: 6px;
}

.plans-tabs {
  border: none;
}

.floor-plan-imgs {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.each-floor-plan-img {
  border-width: 1px;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.floor-plan-imgs img {
  border: 1px solid #E99E2D;
}

.floorplan-bhk {
  font-family: 'Henderson Sans';
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0px;
  text-align: center;
  color: #E99E2D;
  margin-bottom: 0;
}

.floorplan-sqft {
  font-family: 'Henderson Sans';
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0px;
  text-align: center;
  color: #E99E2D;
  margin-bottom: 0;
}

.bhk-with-sqft {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  padding: 15px;
}

.bhk-with-sqft {
  border-left: 1px solid #E99E2D;
  border-right: 1px solid #E99E2D;
}

.floor-plan-imgs1 img {
  border: 1px solid #975C02;
}

.floors-colors {
  color: #975C02;
}

.floor-sqft-color {
  color: #975C02;
}

.bhk-clr {
  border-left: 1px solid #975C02;
  border-right: 1px solid #975C02;
}

.swiper-slide img {
  /* border-radius: 6px; */
  position: relative;
}

.img-context {
  font-family: 'Henderson Sans';
  font-weight: 600;
  font-size: 22px;
  line-height: 31px;
  letter-spacing: 0px;
  text-align: center;
  text-transform: capitalize;
  color: #FFFFFF;
  background: #4A2F16E5;
  position: absolute;
  bottom: 0;
  margin-bottom: 0;
  padding: 0px 10px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  width: 100%;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fixed-enquiry-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.fixed-enquiry-bar.hide-bar {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}


/* Background only inside container */
.enquiry-bar-inner {
  padding: 7px 30px;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.25);
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  background: #57381C;
  border: 1px solid #FFFFFF;
}

.enquiry-form {
  display: flex;
  align-items: center;
  gap: 45px;
}

.form-group {
  flex: 1;
}

.form-group label {
  margin-bottom: 4px;
  display: block;
  font-family: 'Jost';
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0px;
  color: #F6D8AB;
}

.form-group input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #FFFFFF;
  color: #fff;
  padding: 6px 10px;
  outline: none;
  font-family: 'Jost';
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0px;
  color: #000;
}

.form-group input::placeholder {
  color: #000;
  font-size: 16px;
  font-weight: 300;
}

.enquire-btn {
  border: none;
  padding: 8px 28px;
  white-space: nowrap;
  cursor: pointer;
  border-radius: 4px;
  background: #FFFFFF;
  font-family: 'Jost';
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 0px;
  color: #57381C;
  border: 1px solid #57381C;
  margin-left: 4px;
}

a {
  text-decoration: none !important;
}

/* .banner-grsamskruthi-vedio {
  height: 520px !important;
} */

.navbar:active a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* padding: 10px 0 10px 30px; */
  font-family: 'Henderson Sans';
  font-size: 18px;
  font-weight: 400;
  color: #2B2B2B;
  white-space: nowrap;
  text-transform: capitalize;
  transition: 0.3s;
}

.plans-tabs {
  border: none !important;
}

.nav-link:focus,
.nav-link:hover {
  color: #666666 !important;
}

/* .banner-content{
  position: relative;
}
.banner-content::before,
.banner-content::after {
    content: "";
    position: absolute;
    top: 65px;
    bottom: 250px;
    width: 700px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    pointer-events: none;
    border-bottom: none;
    border: 2px solid;
    border-image: linear-gradient(to bottom, #971b47 0%, transparent 40%) 1;
    height: 840px;
} */






.banner-content {
  position: relative;
}

/* .banner-content::before {
  content: "";
  position: absolute;
  top: 90px;
  left: 50%;
  transform: translateX(-50%);

  width: 720px;
  height: 700px;
  border-radius: 4px;

  background: linear-gradient(to bottom, #E6BF84 0%, transparent 40%);
  padding: 2px;

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
} */

.banner-border-wrap {
  position: relative;
}

/* GRADIENT BORDER */
.banner-border-wrap::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 50%;
  transform: translateX(-50%);
  width: 720px;
  height: 75px;
  border-radius: 4px;
  background: linear-gradient(to bottom, #f5c680 0%, rgb(195 159 105) 100%);
  padding: 1.5px;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  clip-path: polygon(0% 0%, 4% 0%, 10% 100%, 0% 100%,
      /* Left Side */
      0% 0%, 100% 0%, 100% 100%, 90% 100%, 96% 0%
      /* Right Side */
    );
  pointer-events: none;
}

.nav-link.active {
  color: #5E350A;
}

.nav-item-link.active {
  color: #dd872d !important;
}

.nav-pilling .nav-linking {
  font-weight: 400 !important;
  color: #4E2E11;
}

.nav-pilling .nav-linking.active {
  font-weight: 500 !important;
  color: #975C02;
}

/* .galz-itm{
  width: 100% !important;
} */

@media (min-width:1900px) {
  .img-slide {
    height: -webkit-fill-available !important;
    background: linear-gradient(0deg, #855320, #855320), linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
  }

  .ready-to-move-in {
    font-size: 36px;
    width: 50%;
  }

  .exclusive-lake {
    font-size: 52px;
  }

  .bhk-premium {
    font-size: 58px;
  }

  .bhk-premium span {
    font-size: 48px;
  }

  .acers-homes-amenities {
    font-size: 36px;
  }

  .acers-homes-amenities span {
    font-size: 32px;
  }

  .banner-address {
    font-size: 36px;
  }

  .banner-border-wrap::before {
    width: 990px;
    height: 105px;
    clip-path: polygon(0% 0%, 5% 0%, 5% 100%, 0% 100%,
        /* Left Side */
        0% 0%, 100% 0%, 100% 100%, 95% 100%, 95% 0%
        /* Right Side */
      );
  }

  /* .banner-content::before {
    top: 140px;
    width: 988px;
    height: 880px;
  } */
  .banner-border-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .banner-grsamskruthi-vedio {
    height: auto !important;
  }

  /* .rounded {
    font-size: 40px;
  } */
  .swiper-wrapper {
    margin-bottom: 0;
  }

  .thankyou-page-content p {
    font-size: 44px !important;
    line-height: 54px !important;
  }
}

@media (min-width:2560px) {
  /* .banner-content::before {
    top: 195px;
    width: 950px;
    height: 1000px;
  } */

  /* .img-slide {
    height: 900px !important;
  } */
}

.banner-content {
  height: auto !important;
}

.from-ingroup input {
  color: #FFFFFF;
  /* text inside input */
}

.from-ingroup input::placeholder {
  color: #FFFFFF;
  /* placeholder text inside input */
  opacity: 1;
  /* optional: makes placeholder fully visible */
}

.popup-overlay {
  display: none;
}

.popup-overlay.show {
  display: flex;
}

/* ===============================
   POPUP OVERLAY
================================ */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-overlay.show {
  display: flex;
}

/* ===============================
   POPUP CONTAINER
================================ */
.popup-box-container {
  width: 100%;
  max-width: 660px;
  padding: 15px;
}

/* ===============================
   POPUP BOX
================================ */
.popup-box {
  background: url('../img/popup-form-bgimg.png');
  padding: 28px 45px;
  /* border-radius: 16px; */
  position: relative;
  text-align: center;
  box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.25);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

/* ===============================
   CLOSE BUTTON
================================ */
.popup-box .close-btn {
  position: absolute;
  top: -28px;
  right: -30px;
  cursor: pointer;
}


/* ===============================
   HEADING & TEXT
================================ */
.popup-box h2 {
  text-transform: capitalize;
  font-family: 'Henderson Sans';
  font-weight: 600;
  font-size: 34px;
  letter-spacing: -2.72px;
  text-align: center;
  color: #FFFFFF;
}

.welcome-to-grswara {
  font-family: 'Playfair Display';
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0px;
  text-align: center;
  text-transform: capitalize;
  color: #4A2F16;
}

/* ===============================
   FORM INPUTS
================================ */
.popup-box input {
  padding: 17px 0px;
  margin-bottom: 18px;
  border: none;
  width: 100%;
  outline: none;
  background: transparent;
  border-bottom: 0.5px solid #FFFFFF;
  font-family: 'Henderson Sans';
  font-weight: 300;
  font-size: 18px;
  /* letter-spacing: -1.28px; */
  color: #FFFFFF;
}

.popup-box input::placeholder {
  color: #b9b9b9 !important;
}

/* ===============================
   SUBMIT BUTTON
================================ */
.popup-box button[type="submit"] {
  background: #FFFFFF;
  width: 100%;
  padding: 7px 0px;
  border: none;
  text-align: center;
  margin: 20px 0;
  border: 1px solid #FFFFFF;
  font-family: 'Henderson Sans';
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -8%;
  text-align: center;
  color: #2B0E00;
}



/* ===============================
   MOBILE FIX
================================ */
@media (max-width: 480px) {
  .popup-box {
    padding: 22px 18px;
  }
}

.popup-box:focus-visible input {
  outline: none;
  border: none;
}

#bookotp1 .bg-content {
  width: 788px;
  height: 400px;
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 1) !important;
}

#bookotp1 .modal-header {
  border-bottom: none !important;
  padding: 0 !important;
}

.close-btn {
  position: absolute;
  top: -25px;
  right: -24px;
  background: #290D01;
  color: white;
  padding: 7px 12px;
  font-size: 22px;
  line-height: 30px;
  text-align: center;
  border-radius: 0%;
  z-index: 999;
  cursor: pointer;
  border: none;
  border: 1px solid #722800;
}

.canclelogo {
  border: none;
  padding-left: 0;
  padding-right: 0;
}

#bookotp1 .verify-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#bookotp1 .VerifyNumber {
  color: rgba(87, 56, 28, 1);
  font-family: 'DM Serif Display';
  font-weight: 400;
  font-size: 46px;
  letter-spacing: 0px;
  text-align: center;
  text-transform: capitalize;
}

#bookotp1 .digitotp {
  color: rgba(87, 56, 28, 1);
  font-family: 'Jost';
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0px;
  text-align: center;
}

#bookotp1 .allotp {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

#bookotp1 .otp-field input {
  border: 1.4px solid rgba(87, 56, 28, 1);
  background: rgba(255, 255, 255, 1);
  width: 80px;
  height: 80px;
  border-radius: 4px;
  border-width: 1.4px;
  color: rgba(0, 0, 0, 1);
  font-family: 'Plus Jakarta Sans';
  font-weight: 500;
  font-size: 40px;
  letter-spacing: 0.3px;
  text-align: center;
}

#bookotp1 .buttonstyle {
  background: #975C02;
  width: 268px;
  padding: 6px 0px;
  gap: 10px;
  border-radius: 4px;
  color: rgba(255, 255, 255, 1);
  font-family: 'Plus Jakarta Sans';
  font-weight: 500;
  font-size: 34px;
  letter-spacing: 0.17px;
  text-align: center;
  border: 1px solid rgba(87, 56, 28, 1);
}

#bookotp1 .bg-content::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 12px;
  right: 14px;
  bottom: 12px;
  border: 2.5px solid #A88944;
  border-radius: 12px;
  pointer-events: none;
  z-index: 2;
}

.popup-box::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 12px;
  right: 14px;
  bottom: 12px;
  border: 1px solid #732A01;
  /* border-radius: 12px; */
  pointer-events: none;
  z-index: 2;
}

.isspecial {
  align-items: flex-start;
}

#lazyContent {
  opacity: 0;
  pointer-events: none;
}

.shot-at-site {
  position: absolute;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding: 3px 14px;
  border-top-right-radius: 4px;
  border-bottom-left-radius: 4px;
  background: #000000B2;
}

.shot-at-site p {
  font-family: 'Poppins';
  font-weight: 400;
  font-size: 18px;
  letter-spacing: -0.36px;
  color: #FFFFFF;
  margin-bottom: 0;
}

.shot-at-site img {
  width: fit-content !important;
  height: fit-content !important;
}

.galz-itm img {
  border-radius: 6px;
}

.thankyou-page-container {
  background-image: url(../img/thankyou-page-container.png);
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
}

.thankyou-page-content h1 {
  font-family: 'Erstoria';
  font-weight: 400;
  font-size: 160px;
  letter-spacing: 0px;
  text-align: left;
  text-transform: capitalize;
  color: #4A2F16;
  margin-bottom: 0;
}

.thankyou-page-content p {
  font-family: 'Henderson Sans';
  font-weight: 400;
  font-size: 22px;
  line-height: 34px;
  letter-spacing: 1.54px;
  text-transform: capitalize;
  color: #4A2F16;
}

/* animation */

.animate-on-scroll-left {
  opacity: 0;
  transform: translateX(-200px);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-120px);
  transition: opacity 1.10s ease-out, transform 1.10s ease-out;
}

.slide-in-left.animate-active {
  opacity: 1;
  transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}


.animate-on-scroll-right {
  opacity: 0;
  transform: translateX(200px);
}

/* Initial state */
.animate-on-scroll-top {
  opacity: 0;
  transform: translateY(-50px);
  transition: opacity 1.4s ease-out, transform 1.4s ease-out;
}



.animate-on-scroll-bottom {
  opacity: 0;
  transform: translateY(80px);
}

.animate-active {
  opacity: 1;
  transform: translate(0, 0);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1.2s ease-out, transform 1.2s ease-out;
  transition-delay: var(--delay, 0s);
}

.fade-up {
  /* marker class only */
}

.animate-on-scroll.animate-active.fade-up {
  opacity: 1;
  transform: translateY(0);
}

.where-your-story-txt {
  font-family: 'Henderson Sans';
  font-weight: 400;
  font-style: Basic Regular;
  font-size: 22px;
  line-height: 40px;
  letter-spacing: 0px;
  color: #25262A;
}

.about-const-info {
  justify-content: space-between !important;
  align-items: center !important;
}

.info-const {
  width: auto !important;
}

.about-sarjapur p {
  font-size: 20px;
  font-weight: 400;
  line-height: 37px;
  font-family: 'Henderson Sans';
  text-align: start;
  color: #25262A;
  letter-spacing: 0px;
}

.rear-id {
  font-family: 'Henderson Sans';
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0px;
}

.rera-prm {
  font-family: 'Henderson Sans';
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0px;
}

.mobileconstrunumber {
  /* font-family: 'Plus Jakarta Sans' !important; */
  font-size: 80px !important;
  color: #975C02;
}

.mobileconstruction {
  font-size: 32px !important;
  font-family: 'Henderson Sans' !important;
  color: #25262A;
  letter-spacing: -2px;

}

.banner-content img {
  width: 100%;
  height: 100%;
}

.Section-heads {
  font-weight: 600;
}

.limited-units {
  font-family: 'Henderson Sans';
  font-weight: 600;
  font-size: 28px;
  letter-spacing: -8%;
  text-align: center;
  text-transform: capitalize;
  color: #262626;
  margin-bottom: 0;
}

.ready-immediate {
  font-family: 'Henderson Sans';
  font-weight: 400;
  font-size: 28px;
  letter-spacing: -8%;
  text-align: center;
  text-transform: capitalize;
  color: #262626;
  margin-bottom: 0;
}

.thumbnail-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.floor-img {
  border: 1px solid #E99E2D;
  padding: 10px;
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.floor-img1 {
  border: 1px solid #975C02;
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.iso-toggle-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  border-radius: 6px;
  border-width: 1px;
  background: #FEDDAC;
  border: 1px solid #F3C092;
  width: fit-content;
  padding: 0px 10px;
  height: 40px;
}

.btn-iso {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.iso-label {
  font-family: 'Jost';
  font-weight: 500;
  font-size: 28px;
  letter-spacing: 0px;
  text-align: center;
  color: #4A3722;
}

/* .iso-switch input{
  border: 1px solid #4A3722;
  width: 30px;
    height: 20px;
} */
.iso-switch input[type="checkbox"] {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 1px solid #4A3722;
  border-radius: 4px;
  background-color: #FFFFFF;
  cursor: pointer;
  position: relative;
  transition: 0.2s;
}

/* ✅ TICK ON INPUT */
.iso-switch input[type="checkbox"]::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/tick-isometricView.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px 25px;
  opacity: 0;
  transition: 0.2s;
  background-color: #4A2F16;
  border: 0.5px solid #4A3722;
}

/* SHOW TICK */
.iso-switch input[type="checkbox"]:checked::after {
  opacity: 1;
}


.iso-switch input:checked+.slider::after {
  opacity: 1;
}

.iso-switch {
  display: flex !important;
}

#plans-end-trigger {
  height: 2px;
}

.btn-with-iso {
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery-item img {
  border-radius: 6px;
}

.why-should-you-buy-at-sam {
  font-family: 'Henderson Sans';
  font-weight: 600;
  font-size: 32px;
  line-height: 42px;
  letter-spacing: -1.92px;
  color: #FFFFFF;
  margin-bottom: 0;
}

.limited-things {
  background-image: url('../img/walkthrough-img.svg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  padding: 20px 65px;
}

.buy-samskruthi {
  display: flex;
  justify-content: center;
  align-items: center;
}

.real-stories-vedio {
  background-image: url('../img/real-stories-vedio-d.svg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  padding: 17px 39px;
}

.happy-homeowner {
  display: flex;
  justify-content: flex-end;
  align-items: baseline;
}

.dont-hear-from-us {
  font-family: 'Henderson Sans';
  font-weight: 400;
  font-size: 32px;
  line-height: 42px;
  letter-spacing: -1.92px;
  text-align: right;
  color: #FFFFFF;
  margin-bottom: 0px;
}

.dont-hear-from-us span {
  font-weight: 600;
}

.about-gr-txt {
  font-family: 'Henderson Sans';
  font-weight: 400;
  font-size: 22px;
  line-height: 39px;
  letter-spacing: 0px;
  text-align: center;
  color: #25262A;
}