/* Header area starts */

.navbar {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  padding: 0.5rem 1rem;
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 20px;
}

@media only screen and (max-width: 992px) {
  .navbar {
    padding: 10px;
  }
}

.navbar-brand img {
  width: 112px;
  height: auto;
}

.nav-link {
  color: #ffffff !important;
  font-size: 14px !important;
  font-weight: 500;
  padding: 1rem 1.2rem !important;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
}

@media only screen and (max-width: 1200px) {
  .nav-link {
    font-size: 14px;
    padding: 1rem 0.6rem !important;
  }
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(to right, #257e60, #42e8af);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 70%;
}

@media only screen and (max-width: 1200px) {
  .nav-link:hover::after {
    width: 20%;
  }
}

.call-button-wrapper {
  margin-left: 1rem;
}

.call-button {
  display: inline-flex;
  font-weight: 500;
  transition: all 0.3s ease;
  background: linear-gradient(to right, #257e60, #42e8af);
  color: #fff;
  border: none;
  padding: 12px 12px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
  min-width: 180px;
  justify-content: center;
}

.call-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px #12e9a1;
}

.call-button i {
  margin-right: 8px;
  font-size: 21px;
  animation: ring 1.5s infinite;
}

@keyframes ring {
  0% {
    transform: rotate(0deg);
  }

  10% {
    transform: rotate(15deg);
  }

  20% {
    transform: rotate(-10deg);
  }

  30% {
    transform: rotate(5deg);
  }

  40% {
    transform: rotate(-5deg);
  }

  50% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

/* Mobile Responsive Styles */
@media (max-width: 991px) {
  .navbar-collapse {
    background: rgba(0, 0, 0, 0.95);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 0.5rem;
  }

  .nav-link {
    padding: 0.8rem 1rem !important;
    text-align: center;
  }

  .nav-link::after {
    bottom: 5px;
  }

  .call-button-wrapper {
    margin: 1rem auto;
    text-align: center;
  }

  .call-button {
    display: inline-flex;
    min-width: 200px;
    max-width: 250px;
  }
}

/* Navbar Toggler Styles */
.navbar-toggler {
  border: none;
  padding: 0.5rem;
  background-color: transparent;
  transition: all 0.3s ease;
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Animation for navbar on scroll */
@media only screen and (min-width: 992px) {
  .navbar.scrolled {
    padding: 0.3rem 1rem;
  }

  .navbar-nav {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    /* white-space: nowrap; */
  }

  .nav-link {
    white-space: nowrap;
    padding: 1rem 1.5rem;
  }

  .call-button-wrapper {
    margin-left: auto;
  }

  .call-button {
    font-size: 14px;
  }
}

/* Adjust navbar and call button for larger screens */
@media (min-width: 1200px) {
  .nav-link {
    font-size: 16px;
    /* Increase font size if needed */
    padding: 1rem 2rem;
    /* Adjust spacing to prevent wrapping */
  }

  .call-button {
    min-width: 160px;
    /* Adjust button width */
  }
}

/* Header area ends */

/* Banner Styles */
.banner-container {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
}

.desktop-banner,
.mobile-banner {
  width: 100%;
  height: 100%;
  display: block;
}

.mobile-banner {
  display: none;
}

@media screen and (max-width: 768px) {
  .desktop-banner {
    display: none;
  }

  .mobile-banner {
    display: block;
    height: 100%;
  }
}

/* Video Starts */
.video-container {
  width: 100%;
  position: relative;
  overflow: hidden;
}

video {
  width: 100%;
  height: auto;
  display: none;
  /* Hide both videos by default */
}

.desktop-video {
  display: block;
  /* Show desktop video by default */
}

/* Video Ends */

.form-label1 {
  color: #ffffffff;
  display: flex;
}

@media only screen and (max-width: 992px) {
  .form-label1 {
    color: #000000 !important;
  }
}

.brochure-btn button {
  display: inline-flex;
  font-weight: 500;
  transition: all 0.3s ease;
  background: linear-gradient(to right, #257e60, #42e8af);
  color: #fff;
  border: none;
  padding: 12px 12px;
  border-radius: 12px;
  text-decoration: none;
  cursor: pointer;
}

.brochure-btn button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px #12e9a1;
  color: #ffff !important;
}

.brochure-btn button:active {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px #12e9a1;
  color: #ffff !important;
}

.banner-section {
  position: relative;
  padding-top: 0px;
  background-color: #ffffff;
}

.banner-text-div {
  position: relative;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.banner-div {
  /* height: calc(100vh - 84px);
            overflow: hidden; */
  position: relative;
}

.banner-div::before {
  content: "";
  position: absolute;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(4, 4, 4, 0.4));
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.banner-txt {
  position: absolute;
  width: 100%;
  top: 20%;
  bottom: 50px;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

@media only screen and (max-width: 1280px) {
  .banner-txt {
    top: 14%;
  }
}

@media only screen and (max-width: 1080px) {
  .banner-txt {
    top: 6%;
  }
}

.banner-text-div h1 {
  color: #fff;
  margin-top: 0;
  font-size: 32px;
  margin-bottom: 20px;
  text-transform: uppercase;
  line-height: 50px;
  font-family: "Jost", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

@media only screen and (max-width: 1199px) {
  .banner-text-div h1 {
    font-size: 26px;
    margin-bottom: 10px;
    line-height: 40px;
  }
}

@media only screen and (max-width: 991px) {
  .banner-text-div h1 {
    font-size: 24px;
    margin-bottom: 10px;
    line-height: 35px;
    color: #000;
  }
}

@media only screen and (max-width: 575px) {
  .banner-text-div h1 {
    font-size: 24px;
    line-height: 30px;
  }
}

.starting-price {
  display: flex;
  justify-content: center;
  justify-content: flex-start;
  color: #fff;
  background-color: #000;
  align-items: center;
  font-size: 21px;
  margin-bottom: 20px;
  padding: 5px 21px;
  border-radius: 12px;
  width: 500px;
}

@media only screen and (max-width: 992px) {
  .starting-price {
    width: 100%;
    font-size: 18px;
  }
}

@media only screen and (max-width: 575px) {
  .starting-price {
    font-size: 18px;
  }
}

.starting-price img {
  max-width: 30px;
  margin-right: 8px;
}

.left-content {
  width: 55%;
  text-align: left;
}

.right-form {
  width: 45%;
  max-width: 400px;
}

.starting-price {
  justify-content: flex-start;
}

.enquiry-form {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 15px;
  backdrop-filter: blur(5px);
}

.form-group {
  margin-bottom: 20px;
}

.form-group input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  font-size: 16px;
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.submit-btn {
  width: 100%;
  padding: 12px;
  background: linear-gradient(to right, #257e60, #42e8af);
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px #12e9a1;
}

@media only screen and (max-width: 991px) {
  .banner-text-div {
    flex-direction: column;
  }

  .left-content,
  .right-form {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
  }

  .right-form {
    margin-top: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .enquiry-form {
    padding: 0px;
  }

  .form-group input {
    font-size: 14px;
  }
}

/* Add these media queries */
@media only screen and (max-width: 991px) {
  .banner-section {
    display: flex;
    flex-direction: column;
  }

  .banner-div {
    height: 100%;
    order: 1;
  }

  .banner-txt {
    position: static;
    transform: none;
    order: 2;
    padding: 40px 0;
  }

  .banner-div::before {
    display: none;
  }

  .banner-text-div {
    padding-top: 0;
  }

  .desktop-banner {
    display: none;
  }

  .mobile-banner {
    display: block;
    width: 100%;
    height: auto;
  }
}

@media only screen and (min-width: 992px) {
  .mobile-banner {
    display: none;
  }
}

.img-fluid {
  max-width: 100%;
  height: 100%;
}

.tabs-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px;
  /* font-family: "GT Walsheim Pro"; */
}

/* Desktop Styles */
.vertical-tabs {
  display: flex;
  gap: 24px;
}

.tab-buttons {
  width: 33.333%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tab-buttons button {
  color: #000;
  border: 1px solid #d1d1d1;
}

.tab-button {
  padding: 16px;
  background: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease-in;
}

.tab-button:hover {
  background: #f7f9fa;
}

.tab-button span {
  transition: color 0.3s ease-in-out;
}

.tab-button span:hover {
  color: #424242;
}

.tab-button.active {
  background: #ffe9ba;
  border-left: 4px solid #257e60;
}

.tab-button.active .tab-description {
  color: #424242;
}

.tab-icon {
  font-size: 24px;
}

.tab-title {
  /* font-family: "GT Walsheim Pro"; */
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
}

.tab-description {
  color: #666;
  font-size: 16px;
}

.tab-content {
  width: 66.666%;
  background: #f9fafb;
  padding: 24px;
  border-radius: 8px;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tab-panel img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
}

/* Mobile Carousel Styles */
.custom-carousel {
  display: none;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: white;
}

.custom-carousel-inner {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.custom-carousel-slide {
  min-width: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.custom-carousel-slide img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
}

.custom-carousel-nav {
  position: absolute;
  top: 30%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.custom-carousel-nav:hover {
  color: #000000;
}

.custom-carousel-prev {
  left: 0px;
}

.custom-carousel-next {
  right: 0px;
}

.custom-carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.custom-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e5e7eb;
  transition: all 0.3s ease;
}

.custom-carousel-dot.active {
  width: 32px;
  background: #f2b81d;
  border-radius: 4px;
}

.brand-video-container {
  width: 100%;
  position: relative;
  overflow: hidden;
}

video {
  width: 100%;
  height: auto;
  display: none;
}

.main-video {
  display: block;
}

/* Responsive Breakpoint */
@media (max-width: 768px) {
  .vertical-tabs {
    display: none;
  }

  .custom-carousel {
    display: block;
  }
}

/* hero area starts */
.custom-carousel-container {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.custom-carousel {
  display: flex;
  transition: transform 1s ease-in-out;
}

.custom-slide {
  min-width: 100%;
  height: auto;
  position: relative;
  padding-top: 56.25%;
  /* 16:9 Aspect Ratio */
  overflow: hidden;
}

.custom-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center center;
}

/* Refined zoom animation for active slide */
.custom-slide.active img {
  animation: zoomInOut 7s ease-in-out infinite;
}

@keyframes zoomInOut {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: background-color 0.3s;
  z-index: 10;
}

.carousel-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

.custom-prev {
  left: 20px;
}

.custom-next {
  right: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .carousel-btn {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }

  .custom-prev {
    left: 10px;
  }

  .custom-next {
    right: 10px;
  }
}

@media (max-width: 480px) {
  .carousel-btn {
    width: 25px;
    height: 25px;
    font-size: 14px;
  }
}

/* hero area ends */

/* Overview Starts */

#overview {
  padding: 60px 0;
  color: #fff;
  margin-top: -4px;
}

@media only screen and (max-width: 991px) {
  #overview {
    margin-top: -66px;
  }
}

.overview {
  background-attachment: fixed;
}

.overview-text-div {
  margin-top: 20px;
  margin-bottom: 40px;
}

.overview h2 {
  font-family: "Orelo Standard";
  font-size: 42px;
  color: #000;
}

.overview h3 {
  font-family: "Orelo Standard";
  font-size: 30px;
  color: #000000;
}

@media only screen and (max-width: 368px) {
  .overview h2 {
    font-size: 36px;
  }

  .overview h3 {
    font-size: 26px;
  }
}

.overview-text {
  font-size: 18px;
  /* font-family: "GT Walsheim Pro"; */
  color: #000;
}

.overview-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.overview-image img {
  margin-top: 20px;
  height: 520px;
  width: 100%;
  border-radius: 10px;
}

@media only screen and (max-width: 468px) {
  .overview-image img {
    height: 450px;
  }
}

.overview button {
  font-size: 18px;
  border-radius: 26px;
  padding: 12px 16px;
  border: none;
  outline: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  fill: #257e60;
  color: #000000;
  background-color: #ffffff;
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-color: #000000;
  border-radius: 4px;
}

.overview button:hover {
  color: #ffffff;
  background-color: #257e60;
  border-color: #ffffff;
}

.brochure-button button .svg {
  vertical-align: middle;
  fill: #000000;
  transition: all 0.3s ease-in-out;
}

.brochure-button button:hover .svg {
  fill: #ffffff;
}

.headings h2 {
  font-family: "Orelo Standard";
  font-size: 42px;
  text-align: center;
  font-weight: 600;
  margin-bottom: 20px;
}

@media only screen and (max-width: 368px) {
  .headings h2 {
    font-size: 36px;
  }
}

/* .headings {
            display: inline-block;
            border-bottom: 1px solid #000;
            position: relative;
            padding: 0 26px;
            margin-bottom: 40px;
        }

        .skills {
            text-align: center;
        }

        .headings::after {
            height: 12px;
            width: 12px;
            right: 0;
            bottom: -7px;
            position: absolute;
            content: "";
            border-radius: 50%;
            background: #000;
        }

        .headings::before {
            height: 12px;
            width: 12px;
            left: 0;
            bottom: -7px;
            position: absolute;
            content: "";
            border-radius: 50%;
            background: #000;
        } */

/* Overview Ends */

/* Price List Section Starts */

/* .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 1rem;
    } */

.pricing-section {
  display: flex;
  gap: clamp(1rem, 2vw, 2rem);
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 60px;
}

.pricing-table {
  /* font-family: "GT Walsheim Pro"; */
  background-color: white;
  padding: clamp(1rem, 2vw, 2rem);
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  flex: 1 1 60%;
  min-width: 280px;
}

.pricing-table h2 {
  /* font-size: clamp(1.25rem, 2vw, 1.5rem); */
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 1rem;
  display: inline-block;
  border: 2px solid #000000;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  color: #000000;
}

.pricing-table-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.pricing-table-bordered {
  min-width: 100%;
}

.pricing-table-bordered table {
  width: 100%;
  border-collapse: collapse;
}

.pricing-table-bordered th,
.pricing-table-bordered td {
  padding: clamp(0.5rem, 1.5vw, 0.75rem);
  text-align: left;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  border: 1px solid #ddd;
}

.row-content tr:nth-child(odd) {
  background-color: #f8f8f8;
}

.price-btn {
  background-color: #0b5a7e;
  color: white;
  border: none;
  padding: 0.75rem 0.75rem;
  border-radius: 12px;
  cursor: pointer;
  font-size: 14px;
  /* font-size: clamp(0.75rem, 1.2vw, 0.875rem); */
  white-space: nowrap;
  transition: background-color 0.3s;
  width: 100%;
  max-width: 200px;
  /* background: linear-gradient(#58be07, #58be07 50%, #0b5a7e 50%, #0b5a7e); */
  background-size: 100% 200%;
  background-position: 0 0;
  transition: background-position 0.3s ease, color 0.3s ease;
  color: #fff;
  /* font-size: 18px;
      border-radius: 26px;
      padding: 12px 16px; */
  border: none;
}

.price-btn:hover {
  background-position: 0 100%;
  color: #fff;
}

.costing-details {
  text-align: center;
  flex: 1 1 35%;
  min-width: 280px;
  background-color: white;
  padding: clamp(1rem, 2vw, 2rem);
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.image-container {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  margin: 0 auto 1rem;
  overflow: hidden;
  border-radius: 8px;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.enquire-btn {
  padding: 15px;
  background-color: transparent;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  font-size: 20px;
  border-radius: 8px;
}

.cost-btn {
  /* font-family: "GT Walsheim Pro"; */
  background-color: #0b5a7e;
  color: white;
  border: none;
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  cursor: pointer;
  font-size: 18px;
  /* font-size: clamp(0.875rem, 1.5vw, 1rem); */
  width: 100%;
  transition: background-color 0.3s;
  /* background: linear-gradient(#58be07, #58be07 50%, #0b5a7e 50%, #0b5a7e); */
  background-size: 100% 200%;
  background-position: 0 0;
  transition: background-position 0.3s ease, color 0.3s ease;
  color: #fff;
  /* font-size: 18px;
            border-radius: 26px;
            padding: 12px 16px; */
  border: none;
}

.cost-btn:hover {
  background-position: 0 100%;
  color: #fff;
}

/* Hover Effects */
/* .image-container:hover .overlay {
            opacity: 1;
        } */

.image-container:hover img {
  transform: scale(1.05);
}

/* Touch Device Optimizations */
/* @media (hover: none) {
            .overlay {
                opacity: 1;
                background: rgba(0, 0, 0, 0.4);
            }
        } */

/* Print Styles */
@media print {
  .price-btn,
  .cost-btn,
  .overlay {
    display: none;
  }
}

/* Price List Section Ends */

/* Floor Plan Area Starts */
.fp-main-container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  border: 2px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}

.fp-main-container h2 {
  /* font-family: "GT Walsheim Pro"; */
  color: #000000;
}

.fp-page-header {
  display: inline-block;
  padding: 10px 20px;
  border: 2px solid #000000;
  border-radius: 25px;
  margin-bottom: 30px;
  font-size: 22px;
  font-weight: 400;
}

.fp-section-heading {
  font-family: "Orelo Standard";
  /* font-family: 'GT Walsheim Pro'; */
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #333;
  text-align: center;
}

@media only screen and (max-width: 368px) {
  .fp-section-heading {
    font-size: 36px;
  }
}

.fp-grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.fp-card-wrapper,
.fp-master-wrapper {
  position: relative;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
  background-color: #fff;
}

.fp-card-wrapper:hover,
.fp-master-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.fp-image-heading {
  /* font-family: "GT Walsheim Pro"; */
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #000000;
}

.fp-plan-img,
.fp-master-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  filter: blur(3px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  background-color: rgba(0, 0, 0, 0.76);
  height: 300px;
}

.fp-master-img:hover,
.fp-plan-img.zoomed {
  transform: scale(1.05);
}

.fp-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
  opacity: 0;
  cursor: pointer;
}

.fp-card-wrapper:hover .fp-overlay,
.fp-master-wrapper:hover .fp-overlay {
  opacity: 1;
}

.fp-overlay-content {
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  font-size: 20px;
  padding: 15px;
  border-radius: 8px;
}

.fp-plan-type {
  /* font-family: "GT Walsheim Pro"; */
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #0b5a7e;
  color: white;
  padding: 15px;
  text-align: center;
  font-size: 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.fp-cta-button {
  /* font-family: "GT Walsheim Pro"; */
  display: block;
  width: fit-content;
  margin: 30px auto;
  padding: 12px 24px;
  border: none;
  border-radius: 18px;
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: #0b5a7e;
  /* background: linear-gradient(#58be07, #58be07 50%, #0b5a7e 50%, #0b5a7e); */
  background-size: 100% 200%;
  background-position: 0 0;
  transition: background-position 0.3s ease, color 0.3s ease;
}

.fp-cta-button:hover {
  transform: translateY(-2px);
  transition: all 0.3s ease-in;

  background-position: 0 100%;
  color: #fff;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .fp-page-header {
    font-size: 20px;
  }

  .fp-grid-layout {
    gap: 15px;
  }

  .fp-plan-img,
  .fp-master-img {
    height: 250px;
  }

  .fp-image-heading {
    font-size: 18px;
  }

  .fp-overlay-content {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .fp-main-container {
    padding: 10px;
  }

  .fp-page-header {
    font-size: 18px;
  }

  .fp-plan-img,
  .fp-master-img {
    height: 200px;
  }

  .fp-image-heading {
    font-size: 16px;
  }

  .fp-overlay-content {
    font-size: 16px;
  }
}

/* Floor Plan Area Ends */

/* Location Map Starts */
.location-container {
  max-width: 1240px;
  margin: auto;
  padding: 20px;
  text-align: center;
  margin-bottom: 20px;
}

.location-header {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 20px;
}

.map-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.map-card {
  flex: 1 1 45%;
  position: relative;
  background-color: #f9f9f9;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 100%;
  min-width: 300px;
}

.map-card iframe,
.map-card img {
  width: 100%;
  height: 300px;
  /* Fixed height to prevent shrinking */
  border: 0;
  display: block;
}

.map-title {
  /* font-family: "GT Walsheim Pro"; */
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0;
}

.map-button {
  /* font-family: "GT Walsheim Pro"; */
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #0E9F6E;
  color: white;
  text-align: center;
  padding: 12px;
  cursor: pointer;
  transition: background-color 0.3s;
  font-size: 18px;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
  .map-section {
    flex-direction: column;
    gap: 20px;
  }

  .map-card {
    flex: 1 1 100%;
    min-width: 100%;
  }

  .location-header {
    font-size: 20px;
  }

  .map-title {
    font-size: 16px;
  }

  .map-button {
    font-size: 14px;
  }
}

@media screen and (max-width: 480px) {
  .location-header {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .map-title {
    font-size: 14px;
  }

  .map-button {
    font-size: 13px;
    padding: 10px;
  }
}

/* Location Map Ends */

/* Location Grid Section Starts */
.wrap {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 15px;
  padding: 1em;
  margin-bottom: 40px;
}

/* Medium screens: 2 columns */
@media screen and (min-width: 600px) and (max-width: 1200px) {
  .wrap {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
  }
}

/* Large screens: 3 columns */
@media screen and (min-width: 1200px) {
  .wrap {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 25px;
    /* max-width: 1500px; */
    /* Optional: prevents cards from getting too wide */
    /* margin: 0 auto; */
  }
}

@media screen and (min-width: 1000px) {
  .wrap {
    grid-template-columns: repeat(3, 1fr);
    /* Changed from 4 to 3 */
    grid-gap: 20px;
    padding: 1em;
  }
}

.article {
  display: flex;
  flex-direction: column;
  height: 260px;
  position: relative;
  border-radius: 7px;
  overflow: hidden;
  padding: 0;
  transform: rotateX(0deg) rotateY(0deg);
  transition: all 0.2s linear;
  will-change: transform;
}

.article img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.9);
}

.overlay {
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
    circle at 50% 50%,
    rgba(0, 0, 0, 0.3) 20%,
    rgba(0, 0, 0, 0.4) 50%
  );
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  /* background: #3c3c3c63; */
  /* background: rgba(60, 60, 60, 0.7); */
  background: rgb(35 35 35 / 56%);
  backdrop-filter: blur(2px);
  transition: all 0.3s ease;
  left: 0;
  top: 0;
  z-index: 1;
}

.article h3 {
  /* font-family: "GT Walsheim Pro"; */
  font-size: 1.1em;
  /* font-family: 'Oswald', sans-serif; */
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: 0 1em;
  pointer-events: none;
  /* transform: translateY(-20px); */
  transition: all 0.3s;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.article h3:before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 2em;
  margin-right: 0.5em;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  background: linear-gradient(to right, #cb992f, #dfbc53);
}

.article h3 span:first-child {
  color: #ffffff;
}

.article h3 span.distance {
  font-size: 0.8em;
  color: #f7ca4b;
}

.wrap-cat {
  position: relative;
  z-index: 2;
  padding: 1em;
}

.article span.cat {
  letter-spacing: 2px;
  font-weight: bold;
  /* font-family: 'Lato', sans-serif; */
  position: relative;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
  color: #fff;
}

@media screen and (min-width: 1000px) {
  .wrap {
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
    padding: 1em;
  }

  .article:hover h3 {
    transform: translateY(-20px);
  }

  .article span.cat {
    color: transparent;
  }

  .article span.cat::before,
  .article span.cat::after {
    content: attr(data-hover);
    position: absolute;
    display: inline-block;
    left: 0;
    top: 0;
    white-space: nowrap;
    overflow: hidden;
    max-width: 0%;
    transition: max-width 300ms ease-out;
  }

  .article span.cat::before {
    color: yellow;
    transition-delay: 100ms;
  }

  .article span.cat::after {
    color: white;
  }

  .article:hover span.cat:after,
  .article:hover span.cat:before {
    max-width: 100%;
  }

  .article:hover span.cat:after {
    transition-delay: 300ms;
  }
}

.loc-grid-section {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Location Grid Section Ends */

/* Gallery Section Starts */

.gallery-section {
  display: flex;
  align-items: center;
  width: 100%;
  /* Let it adapt to screen size */
  max-width: 1226px;
  /* Constrain width on larger screens */
  margin: 0 auto;
  margin-bottom: 40px;
}

.gallery {
  text-align: center;
  box-shadow: 0px 0px 50px 0px rgba(157, 157, 157, 0.3);
  margin: 0 auto;
  padding: 30px;
  border-radius: 12px;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 0 auto;
  /* padding: 20px; */
  max-width: 100%;
  margin-top: 50px;
}

/* Between 600px and 1200px (3 images) */
@media (max-width: 1200px) and (min-width: 600px) {
  .image-grid {
    grid-template-columns: repeat(3, 1fr);
    /* 3 images */
  }
}

/* Below 600px (1 image) */
@media (max-width: 600px) {
  .image-grid {
    grid-template-columns: repeat(1, 1fr);
    /* 1 image */
  }
}

.image-item {
  position: relative;
  overflow: hidden;
  box-shadow: 9px -11px 20px 0px #b5b2b2;
  border-radius: 8px;
}

.image-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  opacity: 1;
  transition: opacity 0.3s ease;
  border: 10px solid #ffffff;
  border-radius: 8px;
  /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
  box-shadow: 9px -3px -1px 0px #b5b2b2;
  padding: 12px;
  transition: transform 0.3s ease;
  background-color: #ffffff;
}

.image-item img:hover {
  transform: translateY(-3px);
}

/* Modified loading animation */
.image-item.loading::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #f0f0f0 0%, #f8f8f8 50%, #f0f0f0 100%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
  z-index: 1;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

/* Remove loading state once image is loaded */
.image-item.loaded::before {
  display: none;
}

/* Gallery Section Ends */

/* Sidebar button starts */
.enquiry-sidebar-btn {
  position: fixed;
  right: 18px;
  top: 64%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: right;
  background: linear-gradient(to right, #257e60, #42e8af);
  color: white;
  padding: 10px 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  z-index: 1000;
}

.enquiry-sidebar-btn:hover {
  box-shadow: 0 4px 15px #12e9a1;
  transform: translateY(-50%) rotate(-90deg) translateX(-4px);
}

/* Sidebar button ends */

/* Whatsapp Icon Starts */
/*Whatsapp*/

button.wh-ap-btn {
  position: relative;
  outline: none;
  width: 60px;
  height: 60px;
  border: 0;
  background-color: #2ecc71;
  color: #fff;
  padding: 0;
  border-radius: 100%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  cursor: pointer;
  transition: opacity 0.3s, background-color 0.3s, box-shadow 0.3s;
}

button.wh-ap-btn:hover {
  opacity: 1;
  background-color: #20bf6b;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.wh-api {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 1000;
}

.wh-fixed {
  margin-right: 15px;
  margin-bottom: 15px;
}

.wh-fixed > a {
  display: block;
  text-decoration: none;
}

/* button.wh-ap-btn::before {
            content: "Chat with me";
            display: block;
            position: absolute;
            margin-left: -130px;
            margin-top: 16px;
            height: 26px;
            background-color: #2ecc71;
            color: #ffffff;
            font-weight: 400;
            font-size: 18px;
            border-radius: 3px;
            width: 0;
            opacity: 0;
            padding: 0;
            transition: opacity 0.4s, width 0.4s, padding 0.5s;
            padding-top: 7px;
            border-radius: 30px;
            box-shadow: 0 1px 15px rgba(32, 33, 36, 0.28);
        } */

.wh-fixed > a:hover button.wh-ap-btn::before {
  opacity: 1;
  width: auto;
  padding-top: 7px;
  padding-left: 10px;
  padding-right: 10px;
  width: 100px;
}

/* animacion pulse */
.fa-brands,
.fab {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
  font-size: 32px;
  vertical-align: sub;
}

.whatsapp-pulse {
  width: 60px;
  height: 60px;
  right: 10px;
  bottom: 10px;
  background: #10b418;
  position: fixed;
  text-align: center;
  color: #ffffff;
  cursor: pointer;
  border-radius: 50%;
  z-index: 99;
  display: inline-block;
  line-height: 65px;
}

.whatsapp-pulse:before {
  position: absolute;
  content: " ";
  z-index: -1;
  bottom: -15px;
  right: -15px;
  background-color: #10b418;
  width: 90px;
  height: 90px;
  border-radius: 100%;
  animation-fill-mode: both;
  -webkit-animation-fill-mode: both;
  opacity: 0.6;
  -webkit-animation: pulse 1s ease-out;
  animation: pulse 1.8s ease-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0);
    opacity: 0;
  }

  25% {
    -webkit-transform: scale(0.3);
    opacity: 1;
  }

  50% {
    -webkit-transform: scale(0.6);
    opacity: 0.6;
  }

  75% {
    -webkit-transform: scale(0.9);
    opacity: 0.3;
  }

  100% {
    -webkit-transform: scale(1);
    opacity: 0;
  }
}

@keyframes pulse {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  25% {
    transform: scale(0.3);
    opacity: 1;
  }

  50% {
    transform: scale(0.6);
    opacity: 0.6;
  }

  75% {
    transform: scale(0.9);
    opacity: 0.3;
  }

  100% {
    transform: scale(1);
    opacity: 0;
  }
}

/* Whatsapp Icon Ends */

/* Contact Section Starts */

.contact-form {
  margin-top: 40px;
}

.contact-num {
  width: 200px;
  font-size: 14px;
  background: linear-gradient(to right, #257e60, #42e8af);
  padding: 14px 10px;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.contact-num:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px #12e9a1;
  color: #000;
}

.contact-num i {
  margin-right: 8px;
  margin-left: 0;
  font-size: 18px;
  animation: ring 1.5s infinite;
  vertical-align: middle;
}

@keyframes ring {
  0% {
    transform: rotate(0deg);
  }

  10% {
    transform: rotate(15deg);
  }

  20% {
    transform: rotate(-10deg);
  }

  30% {
    transform: rotate(5deg);
  }

  40% {
    transform: rotate(-5deg);
  }

  50% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

.contact-num a {
  color: white;
  text-decoration: none;
  font-size: 1.2em;
}

.form-logo {
  margin-top: 20px;
}

.get-in-touch {
  /* font-family: "GT Walsheim Pro"; */
  padding: 20px;
}

.get-in-touch img {
  width: 206px;
}

.get-in-touch-form {
  /* font-family: "GT Walsheim Pro"; */
  padding: 20px;
}

.get-in-touch-form .star {
  color: #ff0000;
}

.get-in-touch-button {
  text-align: left;
  margin-top: 20px;
}

.get-in-touch-button button {
  background-color: #0E9F6E;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 12px;
  cursor: pointer;
  width: 30%;
  /* background: linear-gradient(#58be07, #58be07 50%, #0b5a7e 50%, #0b5a7e); */
  background-size: 100% 200%;
  background-position: 0 0;
  transition: background-position 0.3s ease, color 0.3s ease;
  color: #fff;
  border: none;
}

.get-in-touch-button button:hover {
  background-position: 0 100%;
  color: #fff;
}

/* Contact Section Ends */

/* Popup form starts */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.popup-overlay.active {
  display: flex;
  /* animation: fadeIn 0.3s ease-out; */
  animation: fadeIn 0.3s;
}

.popup-content {
  /* font-family: "GT Walsheim Pro"; */
  background-color: white;
  padding: 26px;
  border-radius: 18px;
  width: 440px;
  margin: 20px;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  /* animation: fadeInDown 0.5s ease-out forwards; */
  animation: fadeInDown 0.5s forwards;
}

/* @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        } */

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(0px);
  }

  to {
    opacity: 1;
    transform: translateY(30px);
  }
}

.popup-content .star {
  color: #ff0000;
}

/* Rest of your existing styles */
.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 30px;
  cursor: pointer;
  height: 40px;
  width: 40px;
  color: #181818;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.close-btn:hover {
  background-color: #d1d1d1;
}

.popup-content form {
  display: flex;
  flex-direction: column;
}

.popup-content label {
  margin-bottom: 10px;
  border-radius: 5px;
  padding: 3px;
  font-size: 18px;
  color: #000000;
}

.popup-content input {
  margin-bottom: 10px;
  border-radius: 5px;
  padding: 8px 18px;
  outline: none;
}

.popup-content button {
  margin-top: 10px;
  margin-bottom: 10px;
  background-color: #0b5a7e;
  /* background: linear-gradient(#58be07, #58be07 50%, #0b5a7e 50%, #0b5a7e); */
  background-size: 100% 200%;
  background-position: 0 0;
  color: #fff;
  font-size: 18px;
  border-radius: 18px;
  padding: 9px 12px;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background-position 0.3s ease, color 0.3s ease;
}

button:hover {
  background-position: 0 100%;
  color: #fff;
}

/* popup form close*/

/* country code */
.intl-tel-input,
.iti {
  width: 100%;
}

.iti__country-list {
  white-space: normal;
}

.intl-tel-input,
.iti {
  width: 100%;
}

.iti__dial-code {
  color: #000000;
}

.iti__country-list {
  position: absolute;
  z-index: 2;
  list-style: none;
  text-align: left;
  padding: 0;
  margin: 0 0 0 -1px;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
  background-color: white;
  border: 1px solid #ccc;
  max-height: 200px;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

@media only screen and (min-width: 326px) {
  .iti__country-list {
    width: 250px;
  }
}

.iti--allow-dropdown input,
.iti--allow-dropdown input[type="text"],
.iti--allow-dropdown input[type="tel"],
.iti--separate-dial-code input,
.iti--separate-dial-code input[type="text"],
.iti--separate-dial-code input[type="tel"] {
  padding-right: 6px;
  padding-left: 52px;
  margin-left: 0;
  width: 100%;
}

.form-control {
  display: block;
  width: 100%;
  height: auto;
  padding: 10px 18px;
  font-size: 1rem;
  line-height: 1.4;
  color: #475f7b;
  background-color: #fff;
  border: 1px solid #dfe3e7;
  border-radius: 0.267rem;
  -webkit-transition: border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

/* .form-control:focus {
            color: #475F7B;
            background-color: #FFF;
            border-color: #5A8DEE;
            outline: 0;
            box-shadow: 0 3px 8px 0 rgb(0 0 0 / 10%);
        } */

.iti__flag-box,
.iti__country-name {
  color: #000;
  margin-right: 6px;
}

.iti--separate-dial-code .iti__selected-flag {
  background-color: rgba(0, 0, 0, 0.05);
  color: #000;
}

.intl-tel-input,
.iti {
  width: 100%;
  margin-bottom: 10px;
}

/* Popup form ends */

/* footer area starts */

footer {
  background-color: #262626;
  color: #d5d5d5;
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
  /* font-family: "GT Walsheim Pro"; */
}

footer h3 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 26px;
}

.privacy-link {
  margin-top: 10px;
  color: #fff;
  font-size: 18px;
}

.disclaimer-text-wrapper {
  position: relative;
  max-height: 100px;
  /* Limit the height of the text */
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.disclaimer-text {
  margin: 0 50px;
  line-height: 1.6;
}

/* Fade effect for bottom of the disclaimer text */
.fade-effect {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: linear-gradient(
    to bottom,
    rgba(38, 38, 38, 0) 0%,
    rgba(38, 38, 38, 1) 100%
  );
}

.read-more-btn {
  color: #ffffff;
  background: linear-gradient(to right, #257e60, #42e8af);
  border-radius: 12px;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  margin-top: 10px;
}

.read-more-btn:hover {
  text-decoration: underline;
}

.text1 p {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
}

.text1 p:last-child {
  margin-bottom: 20px;
}

/* Responsive changes */
@media only screen and (max-width: 468px) {
  .disclaimer-text {
    margin: 0 10px;
  }
}

/* footer area ends */

/* highlight section start here */

.highlight_section {
  background-image: url(assets/images/highlight-bg.png);
  position: relative;
  background-repeat: no-repeat;
  background-position: left center;
  background-color: #f8f8f8;
  z-index: 1;
}

.highlight_section ul {
  padding: 0;
  list-style: none;
  margin: 0;
}

.highlight_section ul li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.highlight_section span.number {
  box-shadow: #e2e2e3 0 0 0 5px inset;
  font-size: 20px;
  font-weight: 700;
  color: #212529;
  display: inline-block;
  text-align: center;
  border-radius: 3px;
  /* width:70px; */
  /* height:70px; */
  /* line-height:70px; */
  padding: 10px 16px;
  /* margin-left: 10px; */
  /* margin-right: 10px; */
}

.highlight_section .highlight_point {
  padding-left: 8px;
  text-transform: uppercase;
}

.highlight_section .content_section ul {
  padding: 0;
  margin: 0;
  list-style: none;
  margin-top: 30px;
}

.highlight_section .row {
  align-items: center;
}

.highlight_section::after {
  content: attr(data-name);
  font-size: 80px;
  position: absolute;
  line-height: 100px;
  color: #6d6d6d;
  font-weight: 600;
  z-index: -1;
  opacity: 0.1;
  text-transform: uppercase;
  left: 25px;
  writing-mode: tb-rl;
  top: 50%;
  transform: rotate(180deg) translateY(50%);
  height: 100%;
  text-align: center;
}

@media (max-width: 1480px) {
  .highlight_section span.number {
    padding: 6px 12px;
  }

  .highlight_section::after {
    line-height: normal;
    font-size: 40px;
    writing-mode: rl;
    top: 0;
    transform: none;
    height: auto;
    right: 0;
    left: 0;
    content: none;
  }

  .highlight_section span.number {
    font-size: 20px;
    /* width:68px; */
    /* height:50px; */
    /* line-height:50px; */
  }

  .overview .row .col-lg-6,
  .highlight_section .row .col-lg-6 {
    padding-bottom: 20px;
  }

  .highlight_section ul li {
    display: flex;
  }

  .overview .content_section p {
    text-align: justify;
  }
}

.overview .content_section p {
  line-height: 1.6;
  color: #777;
}

.highlight_section .content_section ul {
  padding: 0;
  margin: 0;
  list-style: none;
  margin-top: 30px;
}

.overview .title_section h3.title {
  font-weight: 600;
}

.title_section h4.pro_title {
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
  color: #000000;
}

.title_section .pro_title::before {
  content: "";
  position: absolute;
  top: 15px;
  right: -70px;
  height: 1px;
  width: 60px;
  background-color: #dfa317;
}

.floor_plan.ptb .title_section {
  margin-bottom: 40px;
}

.location_section .title_section {
  padding-bottom: 5px;
}

.gallery_section .title_section {
  padding-bottom: 40px;
}

@media (max-width: 1480px) {
  .overview .title_section h3.title {
    font-size: 24px;
  }
}

.image_section_background {
  background-color: #ffffff;
  padding: 20px;
  box-shadow: 9px -11px 20px 0px #b5b2b2;
  border-radius: 18px;
}

@media only screen and (max-width: 992px) {
  .image_section_background {
    margin-top: 30px;
  }
}

.image_section img {
  border-radius: 12px;
}

.overview .image_section img {
  width: 100%;
  max-width: 100%;
  width: 100%;
  max-width: 100%;
}

img {
  max-width: 100%;
}

.ptb {
  padding: 70px 0;
}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  max-width: 1200px;
}

/* highlight section ends here */

.tabs-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px;
  /* font-family: "GT Walsheim Pro"; */
}

/* Desktop Styles */
.vertical-tabs {
  display: flex;
  gap: 24px;
}

.tab-buttons {
  width: 33.333%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tab-buttons button {
  color: #000;
  border: 1px solid #d1d1d1;
}

.tab-button {
  padding: 16px;
  background: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease-in;
}

.tab-button:hover {
  background: #f7f9fa;
}

.tab-button span {
  transition: color 0.3s ease-in-out;
}

.tab-button span:hover {
  color: #424242;
}

.tab-button.active {
  background: #e2f6eb;
  border-left: 4px solid #1ab962;
}

.tab-button.active .tab-description {
  color: #424242;
}

.tab-icon {
  font-size: 24px;
}

.tab-title {
  /* font-family: "GT Walsheim Pro"; */
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
}

.tab-description {
  color: #666;
  font-size: 16px;
}

.tab-content {
  width: 66.666%;
  background: #f9fafb;
  padding: 24px;
  border-radius: 8px;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tab-panel img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
}

/* Mobile Carousel Styles */
.custom-carousel {
  display: none;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: white;
}

.custom-carousel-inner {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.custom-carousel-slide {
  min-width: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.custom-carousel-slide img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
}

.custom-carousel-nav {
  position: absolute;
  top: 30%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.custom-carousel-nav:hover {
  color: #000000;
}

.custom-carousel-prev {
  left: 0px;
}

.custom-carousel-next {
  right: 0px;
}

.custom-carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.custom-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e5e7eb;
  transition: all 0.3s ease;
}

.custom-carousel-dot.active {
  width: 32px;
  background: #f2b81d;
  border-radius: 4px;
}

.brand-video-container {
  width: 100%;
  position: relative;
  overflow: hidden;
}

video {
  width: 100%;
  height: auto;
  display: none;
}

.main-video {
  display: block;
}

/* Responsive Breakpoint */
@media (max-width: 768px) {
  .vertical-tabs {
    display: none;
  }

  .custom-carousel {
    display: block;
  }
}

.faqs {
  /* font-family: "GT Walsheim Pro"; */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 0;
  padding: 0;
}

.faq-wrapper {
  width: 100%;
}

.faqs h2 {
  font-family: "Orelo Standard";
  font-size: 42px;
  font-weight: 600;
  margin: 20px auto;
}

@media only screen and (max-width: 368px) {
  .faqs h2 {
    font-size: 36px;
  }
}

.question-container {
  background-color: white;
  color: black;
  border: 1px solid #eaeaea;
  box-shadow: 0px 10px 30px rgba(28, 51, 84, 0.08);
  margin: -1px 0;
}

.question {
  font-size: 18px;
  font-weight: 450;
  padding: 20px 80px 20px 20px;
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  text-align: start;
}

.question::after {
  content: "\002B";
  font-size: 22px;
  font-weight: 400;
  position: absolute;
  right: 20px;
  transition: 0.4s;
}

.question.active::after {
  transform: rotate(180deg);
  content: "\2212";
}

.answercount {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
}

.answer {
  font-size: 18px;
  color: #363636;
  padding-top: 30px;
  padding-bottom: 10px;
  padding-left: 20px;
  padding-right: 20px;
  text-align: start;
  border-top: 1px solid #eaeaea;
}

.answer p {
  font-size: 19px;
}

.question.active + .answercount .answer {
  border-top: 1px solid #eaeaea;
}

/* Media query for screens smaller than 768px */
@media screen and (max-width: 767px) {
  .faq-wrapper {
    width: 100%;
  }

  .question {
    font-size: 1rem;
  }

  .answer {
    font-size: 1rem;
  }
}

.back-to-top {
  position: fixed;
  bottom: 40px;
  left: 34px;
  background-color: transparent;
  color: #257e60;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  border: none;
  z-index: 1000;
}

.progress-ring {
  position: absolute;
  top: 0;
  left: 0;
}

.progress-ring__circle {
  stroke: #257e60;
  stroke-width: 2;
  fill: transparent;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
}

.back-to-top span {
  position: relative;
  z-index: 1000;
  color: #257e60;
  font-size: 26px;
}

/* .back-to-top span:hover {
            color: #257e60;
        } */

.back-to-top:hover span {
  color: #257e60;
}
