:root {
  --brown: #9b5525;
  --brown-dark: #5b2d12;
  --gold: #d6a63f;
  --cream: #f8f2e8;
  --black: #090909;
  --text: #242424;
}

* {
  box-sizing: border-box;
}


@font-face {
  font-family: 'Casagrande';
  src: url('../font/Casagrande.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: "DM Sans", sans-serif;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
}

h1,
h2,
h3,
.serif {
  font-family: "Playfair Display", serif;
}

.btn-brand {
  background: var(--gold);
  color: #111;
  border: 0;
  font-weight: 700;
  border-radius: 50px;
  padding: 12px 24px;
  transition: all 0.3s ease;
}

.btn-brand:hover {
  background: #fff;
  color: #111;
  transform: translateY(-2px);
}

.btn-outline-brand {
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: #fff;
  border-radius: 50px;
  padding: 12px 24px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.btn-outline-brand:hover {
  background: #fff;
  color: #111;
  transform: translateY(-2px);
}

/* HEADER START */
.site-header {
  position: fixed;
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1200px, calc(100% - 36px));
  z-index: 999;
  background: #fff;
  border-radius: 140px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
  padding: 0;
}

.header-navbar {
  padding: 0;
  min-height: 92px;
}

.header-container {
  padding: 18px 92px;
  display: flex;
  align-items: center;
}

.left-logo img {
  width: 145px;
  height: auto;
  display: block;
}

.right-logo img {
  width: 92px;
  height: auto;
  display: block;
}

.main-menu {
  gap: 45px;
  align-items: center;
}

.main-menu .nav-link {
  color: #111;
  font-size: 13px;
  font-weight: 500;
  padding: 0 !important;
  line-height: 1;
}

.main-menu .nav-link:hover {
  color: #a96122;
}

.navbar-toggler {
  border: 0;
  box-shadow: none !important;
  padding: 0;
}

/* Tablet */
@media (max-width: 1199px) {
  .site-header {
    width: calc(100% - 28px);
  }

  .header-container {
    padding: 18px 48px;
  }

  .main-menu {
    gap: 28px;
  }
}

/* Mobile */
@media (max-width: 991px) {
  .site-header {
    top: 18px;
    width: calc(100% - 24px);
    border-radius: 28px;
  }

  .header-navbar {
    min-height: auto;
  }

  .header-container {
    padding: 16px 22px;
  }

  .left-logo img {
    width: 130px;
  }

  .navbar-collapse {
    background: #fff;
    margin-top: 18px;
    padding: 18px 0 8px;
    border-radius: 20px;
  }

  .main-menu {
    gap: 0;
    text-align: center;
  }

  .main-menu .nav-link {
    padding: 13px 0 !important;
    font-size: 14px;
  }
}

/* Small Mobile */
@media (max-width: 575px) {
  .site-header {
    top: 12px;
    width: calc(100% - 18px);
  }

  .left-logo img {
    width: 120px;
  }
}

/* HEADER END */



/* HOME HERO SECTION */
.et-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  
}

.brand-marquee {
  width: 100%;
  overflow: hidden;
  /*background: #f4f4f4;*/
  padding: 16px 0;
  white-space: nowrap;
  position: relative;
}

.brand-marquee-track {
  display: flex;
  width: max-content;
  animation: brandScroll 28s linear infinite;
  will-change: transform;
}

.brand-list {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-list span {
  display: inline-flex;
  align-items: center;
  font-family: 'DM Sans', 'DM', sans-serif;
  font-size: 16px;
  font-weight: normal;
  color: #000;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  margin-right: 12px;
}

.brand-list span::after {
  content: "•";
  margin-left: 12px;
  color: #111;
}

@keyframes brandScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Optional: pause on hover */
.brand-marquee:hover .brand-marquee-track {
  animation-play-state: paused;
}

/* Mobile adjustment */
@media (max-width: 576px) {
  .brand-marquee {
    padding: 14px 0;
  }

  .brand-list span {
    font-size: 11px;
    margin-right: 10px;
  }

  .brand-list span::after {
    margin-left: 10px;
  }

  .brand-marquee-track {
    animation-duration: 22s;
  }
}

.et-hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.55),
    rgba(0, 0, 0, 0.25),
    rgba(0, 0, 0, 0)
  );
  pointer-events: none;
  z-index: 1;
}

.et-hero > * {
  position: relative;
  z-index: 2;
}

/* Floating Rounded Navbar */
.et-navbar {
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: min(78%, 1120px);
  min-height: 86px;
  background: #ffffff;
  border-radius: 70px;
  z-index: 30;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.et-left-logo img {
  max-width: 145px;
  height: auto;
}

.et-right-logo img {
  max-width: 95px;
  height: auto;
}

.et-menu {
  gap: 34px;
}

.et-menu .nav-link {
  font-size: 14px;
  color: #111;
  font-weight: 500;
  padding: 8px 0;
}

.et-menu .nav-link:hover {
  color: #b17220;
}

/* Hero Slider */
.et-hero-slider,
.et-hero-slider .carousel-inner,
.et-hero-slider .carousel-item,
.et-hero-slide {
  height: 100vh;
  min-height: 720px;
}

.et-hero-slide {
  background-size: cover;
  background-position: center;
  position: relative;
}

.et-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(0, 0, 0, 0.65) 0%,
      rgba(0, 0, 0, 0.28) 45%,
      rgba(0, 0, 0, 0.08) 100%);
  z-index: 2;
  pointer-events: none;
}

/* Hero Text */
.et-hero-content {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: flex-end;
  padding-bottom: 120px;
  color: #fff;
}

.et-rera {
  font-size: 13px;
  font-style: italic;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.et-hero-content h1 {
  font-family: 'Casagrande', Georgia, serif;
  font-size: clamp(44px, 5vw, 76px);
  line-height: 0.96;
  letter-spacing: -2px;
  color: #fff;
  margin-bottom:10px;
}

.et-subtitle {
  font-size: 17px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 24px;
}

.et-hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.et-btn-primary {
  background: #f2b51d;
  color: #111;
  border-radius: 40px;
  padding: 13px 24px;
  font-size: 14px;
  font-weight: 500;
  border: none;
  font-family: "DM Sans", sans-serif;
}

.et-btn-primary:hover {
  background: #fff;
  color: #111;
  font-family: "DM Sans", sans-serif;
}

.et-btn-dark {
  background: rgba(0, 0, 0, 0.58);
  color: #fff;
  border-radius: 40px;
  padding: 13px 24px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-family: "DM Sans", sans-serif;
}

.et-btn-dark:hover {
  background: #fff;
  color: #111;
  font-family: "DM Sans", sans-serif;
}

/* Drag text center */
.et-drag-text {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 15;
  font-size: 13px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.et-arc {
  width: 130px;
  height: 45px;
  border-top: 3px solid #fff;
  border-radius: 80px 80px 0 0;
  margin: 0 auto 4px;
  position: relative;
}

.et-arc::before,
.et-arc::after {
  content: "";
  width: 9px;
  height: 9px;
  background: #fff;
  position: absolute;
  bottom: -2px;
  transform: rotate(45deg);
}

.et-arc::before {
  left: 0;
}

.et-arc::after {
  right: 0;
}

/* Right Vertical Text */
.et-vertical-text {
  position: absolute;
  right: 28px;
  bottom: 15%;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: right center;
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px;
  z-index: 15;
  white-space: nowrap;
}

/* Bottom Floating Form */
.et-floating-form {
  position: absolute;
  left: 50%;
  bottom: -38px;
  transform: translateX(-50%);
  width: min(76%, 980px);
  background: #fff;
  border-radius: 70px;
  padding: 22px 28px;
  z-index: 25;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
}

.et-floating-form .form-control,
.et-floating-form .form-select {
  height: 48px;
  border-radius: 40px;
  border: 1px solid #d8d8d8;
  font-size: 12px;
  padding: 0 22px;
  color: #555;
}

.et-floating-form .form-control:focus,
.et-floating-form .form-select:focus {
  border-color: #f2b51d;
  box-shadow: none;
}


/* Sticky functionality only - does not change your form design */
.et-floating-form {
  transition: transform .18s ease, opacity .18s ease;
}

.et-floating-form.et-is-fixed {
  position: fixed;
  left: 50%;
  right: auto;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 9999;
}

.et-floating-form.et-is-hidden {
  transform: translateX(-50%) translateY(110%);
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 991px) {
  .et-floating-form.et-is-fixed {
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
  }

  .et-floating-form.et-is-hidden {
    transform: translateX(-50%) translateY(110%);
  }
}


.et-form-btn {
  height: 48px;
  background: #f2b51d;
  border: 1px solid #111;
  border-radius: 40px;
  padding: 0 28px;
  font-size: 12px;
  font-weight: 600;
  color: #111;
  white-space: nowrap;
}

.et-form-btn:hover {
  background: #111;
  color: #fff;
}

/* Responsive */
@media (max-width: 1199px) {
  .et-navbar {
    width: calc(100% - 50px);
  }

  .et-menu {
    gap: 20px;
  }
}

@media (max-width: 991px) {
  .et-navbar {
    top: 18px;
    width: calc(100% - 28px);
    border-radius: 28px;
    min-height: auto;
    padding: 10px 0;
  }

  .et-left-logo img {
    max-width: 125px;
  }

  .navbar-collapse {
    background: #fff;
    margin-top: 14px;
    border-radius: 22px;
    padding: 16px;
  }

  .et-menu {
    gap: 4px;
    text-align: center;
  }

  .et-menu .nav-link {
    padding: 12px 0;
  }

  .et-hero-slider,
  .et-hero-slider .carousel-inner,
  .et-hero-slider .carousel-item,
  .et-hero-slide {
    min-height: 820px;
  }

  .et-hero-content {
    align-items: center;
    padding: 150px 0 170px;
  }

  .et-drag-text,
  .et-vertical-text {
    display: none;
  }

  .et-floating-form {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    width: calc(100% - 28px);
    margin: -90px auto 40px;
    border-radius: 32px;
    padding: 22px;
  }

  .et-floating-form .form-control,
  .et-floating-form .form-select,
  .et-form-btn {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .et-hero-content h1 {
    font-size: 42px;
    letter-spacing: -1px;
    padding-bottom:15px;
  }

  .et-subtitle {
    font-size: 14px;
  }

  .et-rera {
    font-size: 11px;
  }

  .et-btn-primary,
  .et-btn-dark {
    width: 100%;
    text-align: center;
    font-family: "DM Sans", sans-serif;
  }

  .et-floating-form {
    margin-top: -110px;
  }
}

@media (max-width:600px){
    .et-btn-primary{
        padding:13px 10px;
    }
    .eb-recognition-section h2{
        font-size:34px !important;
    }
    .btnblinkanime{
        padding:13px 11px !important;
    }
    .header-container {
        padding: 0px 18px;
    }
}



/* INTRO SECTION START */
.intro-section {
  padding: 80px 0 60px;
  background: #fff;
}

.intro-image-box {
  position: relative;
  width: 100%;
  min-height: 580px;
  border-radius: 50px;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-image 1s ease-in-out;
}

.intro-overlay {
  position: absolute;
  inset: 0;
  /* background: rgba(0, 0, 0, 0.48); */
  z-index: 1;
}

.intro-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
  text-align: center;
  color: #fff;
  padding: 40px 24px;
}



.intro-content p {
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.35;
  font-style: italic;
  font-weight: 400;
  color: #fff;
  margin: 0;
  font-family: "DM Sans", sans-serif;
}

.intro-dashed-line {
  margin: 42px auto 0;
  width: 100%;
  height: 1px;
  background-image: repeating-linear-gradient(to right,
      rgba(0, 0, 0, 0.55) 0,
      rgba(0, 0, 0, 0.55) 22px,
      transparent 22px,
      transparent 42px);
}

/* Responsive */
@media (max-width: 991px) {
  .intro-section {
    padding: 60px 0 45px;
  }

  .intro-image-box {
    min-height: 380px;
    border-radius: 45px;
  }

  .intro-content p {
    font-size: 22px;
  }
  .eb-recognition-section h2{
      font-size:34px !important;
  }


}

@media (max-width: 575px) {
  .intro-image-box {
    min-height: 340px;
    border-radius: 30px;
  }

  .intro-content {
    padding: 32px 18px;
  }

  .intro-content p {
      padding-top:15px;
    font-size: 14px;
    line-height: 1.45;
  }



  .intro-dashed-line {
    margin-top: 30px;
  }
}

/* INTRO SECTION END */


/* DIFFERENT WAY OF LIVING SECTION START */

.living-ready-section {
  background: #fff;
  padding: 0 0 70px;
}

.living-ready-section .container {
  max-width: 1320px;
}


/* Top black rounded box */
.living-top-box {
  background: #000;
  color: #fff;
  border-radius: 80px;
  text-align: center;
  padding: 80px 70px 80px;
  position: relative;
  z-index: 1;
}


.living-top-box h2 {
  font-family: 'Casagrande', Georgia, "Times New Roman", serif;
  font-size: 42px;
  line-height: 1.1;
  font-weight: 400;
  color: #fff;
  margin: 0 0 28px;
}

.living-top-box p {
  max-width: 1120px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.95);
}

.living-stat-card h3 {
  font-family: Arial, sans-serif;
  font-size: 42px;
  line-height: 1;
  font-weight: 600;
  color: #9b4a1d;
  margin: 0 0 18px;
}

.living-stat-card p {
  font-size: 14px;
  line-height: 1.35;
  color: #8c8c8c;
  margin: 0;
}



/* Stats area sits between top and bottom black boxes */
.living-stats-area {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
  max-width: 1120px;
  margin: 0px auto;
  position: relative;
  z-index: 5;
  padding: 0;
}

/* White stats cards */
.living-stat-card {
  height: 172px;
  background: #fff;
  border-radius: 0 0 48px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  padding: 35px 18px;
}


/* Bottom black rounded box */
.living-bottom-box {
  background: #000;
  color: #fff;
  border-radius: 72px;
  padding: 165px 72px 82px;
  position: relative;
  z-index: 1;

}

.living-left-content h2 {
  font-family: 'Casagrande', Georgia, "Times New Roman", serif;
  font-size: 42px;
  line-height: 0.95;
  font-weight: 400;
  color: #fff;
  margin: 0 0 32px;
}

.living-left-content p {
  max-width: 430px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
}

/* Feature grid */
.living-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.living-feature-card {
  min-height: 165px;
  padding: 34px 30px;
}

.living-feature-card:nth-child(1),
.living-feature-card:nth-child(3) {
  border-right: 1px solid rgba(255, 255, 255, 0.38);
}

.living-feature-card:nth-child(1),
.living-feature-card:nth-child(2) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.38);
}



.living-feature-card p {
  font-size: 14px;
  line-height: 1.52;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* Bottom dashed divider */
.living-dashed-line {
  margin: 42px auto 0;
  width: 100%;
  height: 2px;
  background-image: repeating-linear-gradient(to right,
      rgba(0, 0, 0, 0.45) 0,
      rgba(0, 0, 0, 0.45) 22px,
      transparent 22px,
      transparent 42px);
}

/* Responsive */
@media (max-width: 1199px) {
  .living-top-box {
    padding: 70px 45px 140px;
  }

  .living-stats-area {
    max-width: 980px;
    gap: 26px;
  }

  .living-bottom-box {
    padding: 155px 50px 70px;
  }
}

@media (max-width: 991px) {
  .living-top-box {
    border-radius: 48px;
    padding: 58px 28px 120px;
  }

  .living-stats-area {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: -58px auto -58px;
    padding: 0 28px;
  }

  .living-stat-card {
    height: 155px;
    border-radius: 0 0 36px 36px;
  }

  .living-bottom-box {
    border-radius: 48px;
    padding: 135px 34px 58px;
  }

  .living-left-content {
    text-align: center;
  }

  .living-left-content p {
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .living-feature-grid {
    grid-template-columns: 1fr;
  }

  .living-feature-card {
    padding: 28px 10px;
    text-align: center;
  }

  .living-feature-card:nth-child(1),
  .living-feature-card:nth-child(3) {
    border-right: 0;
  }

  .living-feature-card:nth-child(1),
  .living-feature-card:nth-child(2),
  .living-feature-card:nth-child(3) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.38);
  }
}

@media (max-width:600px){
    .et-btn-primary{
        padding:13px 10px;
    }
     .living-top-box h2 {
        font-size: 34px;
    }
    
    .living-left-content h2 {
        font-size: 34px;
    }
}



@media (max-width: 575px) {
  .living-top-box {
    border-radius: 34px;
    padding: 48px 20px 105px;
  }

  .living-top-box h2 {
    font-size: 34px;
  }

  .living-stats-area {
    grid-template-columns: 1fr;
    gap: 18px;
    margin: -48px auto -48px;
    padding: 0 22px;
  }

  .living-stat-card {
    height: 140px;
    border-radius: 0 0 32px 32px;
  }

  .living-stat-card h3 {
    font-size: 36px;
  }

  .living-stat-card p {
    font-size: 14px;
  }

  .living-bottom-box {
    border-radius: 34px;
    padding: 115px 24px 44px;
  }

  .living-left-content h2 {
    font-size: 34px;
  }

  .living-feature-card h4 {
    font-size: 20px;
  }
}

/* DIFFERENT WAY OF LIVING SECTION END */



/* Responsive */
@media (max-width: 991px) {
  .living-stats-band {
    margin-top: -55px;
    margin-bottom: -55px;
    padding: 0 28px;
  }

  .living-stats-wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .living-stat-card {
    height: 155px;
    border-radius: 36px;
  }

  .living-bottom-box {
    padding-top: 105px;
  }
}

@media (max-width: 575px) {
  .living-stats-band {
    margin-top: -45px;
    margin-bottom: -45px;
    padding: 0 18px;
  }

  .living-stats-wrap {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .living-stat-card {
    height: 140px;
    border-radius: 32px;
  }

  .living-stat-card h3 {
    font-size: 36px;
  }

  .living-stat-card p {
    font-size: 14px;
  }

  .living-bottom-box {
    padding-top: 90px;
  }
}

.living-stat-card {
  min-height: 172px;
  background: #fff;
  border-radius: 42px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  text-align: center;
  padding: 32px 20px;
}

.living-stat-cardone {
  min-height: 172px;
  background: #fff;
  border-radius: 0px 42px 42px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  text-align: center;
  padding: 32px 20px;
}

.living-stat-cardlast {
  min-height: 172px;
  background: #fff;
  border-radius: 42px 0px 0px 42px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  text-align: center;
  padding: 32px 20px;
}



.living-stat-card h3,
.living-stat-cardone h3,
.living-stat-cardlast h3 {
  font-family: 'DM', sans-serif;
  font-size: 42px;
  line-height: 1;
  font-weight: 600;
  color: #9b4a1d;
  margin-bottom: 18px;
}

.living-stat-card p,
.living-stat-cardone p,
.living-stat-cardlast p {
  font-size: 16px;
  line-height: 1.35;
  color: #8a8a8a;
  margin: 0;
}

/* Bottom Black Box */
.living-bottom-box {
  background: #000;
  color: #fff;
  border-radius: 72px;
  padding: 82px 72px;
  position: relative;
  z-index: 2;

}

.living-left-content h2 {
  font-family: 'Casagrande', Georgia, "Times New Roman", serif;
  font-size: 42px;
  line-height: 0.95;
  font-weight: 400;
  margin-bottom: 32px;
  color: #fff;
}

.living-left-content p {
  max-width: 430px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
}

/* Feature Grid */
.living-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  position: relative;
}

.living-feature-card {
  min-height: 165px;
  padding: 34px 30px;
}

.living-feature-card:nth-child(1),
.living-feature-card:nth-child(3) {
  border-right: 1px solid rgba(255, 255, 255, 0.38);
}

.living-feature-card:nth-child(1),
.living-feature-card:nth-child(2) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.38);
}

/*.living-feature-card h4 {*/
/*  font-family: 'Casagrande', Georgia, "Times New Roman", serif;*/
/*  font-size: 26px;*/
/*  line-height: 1.15;*/
/*  font-weight: 400;*/
/*  color: #fff;*/
/*  margin: 0 0 18px;*/
/*}*/

.living-feature-card h4 {
  font-family: 'Casagrande', Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.15;
  font-weight: 400;
  color: #fff;
  margin-bottom: 18px;
}

.living-feature-card p {
  font-size: 14px;
  line-height: 1.52;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* Dashed Line */
.living-dashed-line {
  margin: 42px auto 0;
  width: 100%;
  height: 2px;
  background-image: repeating-linear-gradient(to right,
      rgba(0, 0, 0, 0.45) 0,
      rgba(0, 0, 0, 0.45) 22px,
      transparent 22px,
      transparent 42px);
}

/* Responsive */
@media (max-width: 1199px) {
  .living-top-box {
    padding: 70px 45px 115px;
  }

  .living-stats-wrap {
    padding: 0 40px;
  }

  .living-bottom-box {
    padding: 70px 50px;
  }

  .living-feature-card h4 {
    font-size: 19px;
  }
}

@media (max-width: 991px) {
  .living-ready-section {
    padding-bottom: 55px;
  }

  .living-top-box {
    border-radius: 48px;
    padding: 58px 28px 95px;
    min-height: auto;
  }

  .living-top-box p {
    font-size: 14px;
  }

  .living-stats-wrap {
    margin-top: -58px;
    padding: 0 25px;
  }

  .living-stat-card {
    border-radius: 34px;
    min-height: 145px;
  }

  .living-bottom-box {
    border-radius: 48px;
    padding: 58px 34px;

  }

  .living-left-content {
    text-align: center;
  }

  .living-left-content p {
    margin: 0 auto;
  }

  .living-feature-grid {
    margin-top: 20px;
  }
}

@media (max-width: 767px) {
  .living-feature-grid {
    grid-template-columns: 1fr;
  }

  .living-feature-card {
    padding: 28px 10px;
    text-align: center;
  }

  .living-feature-card:nth-child(1),
  .living-feature-card:nth-child(3) {
    border-right: 0;
  }

  .living-feature-card:nth-child(1),
  .living-feature-card:nth-child(2),
  .living-feature-card:nth-child(3) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.38);
  }
}

@media (max-width: 575px) {
  .living-top-box {
    border-radius: 34px;
    padding: 48px 20px 78px;
  }

  .living-top-box h2 {
    font-size: 34px;
  }

  .living-stats-wrap {
    padding: 0 12px;
  }

  .living-stat-card h3 {
    font-size: 36px;
  }

  .living-stat-card p {
    font-size: 14px;
  }

  .living-bottom-box {
    border-radius: 34px;
    padding: 44px 24px;
  }

  .living-left-content h2 {
    font-size: 34px;
  }

  .living-feature-card h4 {
    font-size: 24px;
  }
}

/* DIFFERENT WAY OF LIVING SECTION END */




/* Video Testimonials */
.testimonials-section {
  padding: 90px 0;
  background: #fff;
}

.video-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  min-height: 320px;
  background: #111;
  cursor: pointer;
  transition: all 0.45s ease;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.video-card video {
  width: 100%;
  height: 320px;
  object-fit: cover;
  filter: brightness(0.72);
  transition: all 0.45s ease;
}

.video-card:hover {
  transform: scale(1.06);
  z-index: 10;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.25);
}

.video-card:hover video {
  filter: brightness(0.95);
}

.video-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 24px;
  color: #fff;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent);
  pointer-events: none;
}

.play-icon {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: #111;
  display: grid;
  place-items: center;
  pointer-events: none;
}

@media (max-width: 767px) {
  .video-card:hover {
    transform: none;
  }
}

/* Day Slider */
.day-section {
  padding: 90px 0;
  background: #f7f2ec;
}

.day-slide-card {
  background: #fff;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.day-img {
  min-height: 520px;
  background-size: cover;
  background-position: center;
}

.day-content {
  padding: clamp(28px, 5vw, 60px);
}

.day-count {
  color: var(--brown);
  font-weight: 900;
  letter-spacing: 3px;
  margin-bottom: 16px;
  display: inline-block;
}

.day-content h3 {
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.05;
  margin-bottom: 20px;
  color: #111;
}

.day-content p {
  line-height: 1.8;
  color: #595959;
  font-size: 16px;
}

.carousel-control-prev.day-control,
.carousel-control-next.day-control {
  width: 52px;
  height: 52px;
  top: auto;
  bottom: -72px;
  background: #111;
  border-radius: 50%;
  opacity: 1;
}

.carousel-control-prev.day-control {
  left: calc(50% - 65px);
}

.carousel-control-next.day-control {
  right: calc(50% - 65px);
}

@media (max-width: 991px) {
  .day-img {
    min-height: 320px;
  }
}


/* muthuraj */

.eb-about-section {
  background: #ffffff;
  padding-bottom: 25px;
  overflow: hidden;
}

.eb-about-top {
  background: #964716;
  color: #ffffff;
  padding: 30px 15px 66px;
  min-height: 160px;
}

.eb-about-top h2 {
  font-family: 'Casagrande', Georgia, "Times New Roman", serif;
  font-size: 42px;
  line-height: 1.1;
  font-weight: 500;
  margin-bottom: 16px;
  color: #ffffff;
}

.eb-about-top p {
  font-size: 14px;
  line-height: 1.45;
  font-weight: 400;
  margin: 0;
  color: #ffffff;
}

.eb-stats-wrapper {
  margin-top: -36px;
  position: relative;
  z-index: 5;
  padding-left: 7px;
  padding-right: 7px;
}

.eb-stat-card {
  background: #ffffff;
  border-radius: 6px;
  min-height: 66px;
  padding: 15px 10px 15px 10px;
  text-align: center;
  box-shadow: 0 2px 9px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.eb-stat-card span {
  font-size: 14px;
  line-height: 1.1;
  color: #1f2b1f;
  font-weight: 400;
  margin-bottom: 3px;
}

.eb-stat-card h3 {
  font-size: 24px;
  line-height: 1;
  color: #243024;
  font-weight: 700;
  margin: 0;
  padding-top: 10px;
  font-family: "DM Sans", sans-serif;

}

/* Tablet */
@media (max-width: 991px) {
  .eb-about-top {
    padding: 35px 15px 75px;
  }

  .eb-about-top h2 {
    font-size: 34px;
  }

  .eb-stats-wrapper {
    margin-top: -45px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .eb-stat-card {
    min-height: 78px;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .eb-about-top {
    padding: 32px 15px 78px;
  }

  .eb-about-top h2 {
    font-size: 34px;
    margin-bottom: 12px;
  }

  .eb-about-top p {
    font-size: 14px;
  }

  .eb-stats-wrapper {
    margin-top: -50px;
  }

  .eb-stat-card {
    min-height: 78px;
    border-radius: 8px;
  }

  .eb-stat-card h3 {
    font-size: 19px;
  }

  .eb-stat-card span {
    font-size: 14px;
  }
}


.unit-section {
  background: #ffffff;
  padding: 10px 0 45px;
}

.unit-heading h2 {
  font-family: 'Casagrande', Georgia, "Times New Roman", serif;
  font-size: 42px;
  line-height: 1.1;
  font-weight: 500;
  color: #000;
  margin-bottom: 20px;
}

.eb-recognition-section h2{
    font-family: 'Casagrande', Georgia, "Times New Roman", serif;
  font-size: 42px;
  line-height: 1.1;
  font-weight: 500;
  color: #000;
}
.eb-recognition-section p{
    font-size:14px;
}

.unit-heading p {
  font-size: 14px;
  line-height: 1.45;
  color: #000;
  font-weight: 400;
  margin: 0 auto 30px;
}



.unit-table-wrap {
  max-width: 1060px;
  margin: 0 auto;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
}

.unit-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  text-align: center;
}

.unit-table thead tr {
  background: #8e461b !important;
}

.unit-table thead th {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  padding: 18px 15px;
  border: none;
  vertical-align: middle;
}

.unit-table thead th:first-child {
  border-top-left-radius: 12px;
}

.unit-table thead th:last-child {
  border-top-right-radius: 12px;
}

.unit-table tbody td {
  font-size: 14px;
  color: #000;
  font-weight: 500;
  padding: 16px 15px;
  vertical-align: middle;
  border: 1px dashed #e8e8e8;
  background: #ffffff;
}

.unit-table tbody tr:last-child td {
  border-bottom: 1px dashed #e8e8e8;
}

.unit-price-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffc233;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid #222222;
  border-radius: 24px;
  padding: 8px 20px;
  min-width: 116px;
  line-height: 1;
  transition: all 0.25s ease;
  cursor:pointer;
}

.unit-price-btn:hover {
  background: #964716;
  color: #ffffff;
  border-color: #964716;
}

.unit-table.table thead,
.unit-table.table thead tr,
.unit-table.table thead th {
  background-color: #8e461b !important;
  background: #8e461b !important;
  color: #ffffff !important;
}

.unit-table.table thead th {
  --bs-table-bg: #8e461b !important;
  --bs-table-color: #ffffff !important;
  box-shadow: none !important;
  border-color: #8e461b !important;
}

/* Tablet */
@media (max-width: 991px) {
  .unit-section {
    padding: 30px 0 40px;
  }

  .unit-heading h2 {
    font-size: 34px;
  }

  .unit-heading p {
    font-size: 14px;
    margin-bottom: 25px;
  }

  .unit-table-wrap {
    overflow-x: auto;
  }

  .unit-table {
    min-width: 850px;
  }
}

/* Mobile Card Responsive */
@media (max-width: 575px) {
  .unit-heading h2 {
    font-size: 34px;
    margin-bottom: 14px;
  }

  .unit-heading p {
    font-size: 14px;
    padding: 0 5px;
  }

  .unit-table-wrap {
    border-radius: 12px;
    overflow: visible;
  }

  .unit-table,
  .unit-table thead,
  .unit-table tbody,
  .unit-table th,
  .unit-table td,
  .unit-table tr {
    display: block;
    width: 100%;
    min-width: unset;
  }

  .unit-table thead {
    display: none;
  }

  .unit-table tbody tr {
    background: #ffffff;
    border: 1px dashed #e5e5e5;
    border-radius: 14px;
    margin-bottom: 15px;
    padding: 12px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  }

  .unit-table tbody td {
    border: none;
    border-bottom: 1px dashed #e5e5e5;
    padding: 11px 5px;
    display: flex;
    justify-content: space-between;
    gap: 15px;
    text-align: right;
    font-size: 12px;
  }

  .unit-table tbody td::before {
    content: attr(data-label);
    font-weight: 700;
    color: #964716;
    text-align: left;
    flex: 0 0 38%;
  }

  .unit-table tbody td:last-child {
    border-bottom: none;
    justify-content: center;
    padding-top: 14px;
  }

  .unit-table tbody td:last-child::before {
    display: none;
  }

  .unit-price-btn {
    width: 100%;
    max-width: 180px;
  }
}


.location-section {
  background: #ffffff;
  padding: 55px 0 45px;
  overflow: hidden;
}

.location-content h2 {
  font-family: 'Casagrande', Georgia, "Times New Roman", serif;
  font-size: 42px;
  line-height: 0.95;
  font-weight: 500;
  color: #111111;
  margin-bottom: 25px;
}

.location-content p {
  font-size: 14px;
  line-height: 1.35;
  color: #111111;
  font-weight: 400;
  max-width: 540px;
  margin-bottom: 18px;
}

.location-list {
  margin-top: 30px;
  max-width: 505px;
}

.location-item {
  display: grid;
  grid-template-columns: 42px 1fr 45px 70px;
  align-items: center;
  column-gap: 12px;
  margin-bottom: 20px;
}

.loc-icon {
  width: 24px;
  height: 24px;
  color: #a36152;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.loc-name {
  font-size: 14px;
  color: #000;
  font-weight: 400;
}

.loc-line {
  width: 1px;
  height: 24px;
  border-left: 1px dashed #777777;
  margin: 0 auto;
}

.loc-time {
  font-size: 13px;
  color: #111111;
  font-weight: 400;
  text-align: left;
}

.map-tilt-wrap {
  width: 100%;
  overflow: hidden;
  background: #ffffff;
  transform-style: preserve-3d;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  will-change: transform;
}



.location-map-img {
  width: 100%;
  display: block;
  border-radius: 55px;
  transform: translateZ(25px);
  pointer-events: none;
}

.map-address {
  font-size: 14px;
  color: #000;
  text-align: center;
  margin: 24px 0 0;
}

/* Tablet */
@media (max-width: 991px) {
  .location-section {
    padding: 45px 0 40px;
  }

  .location-content h2 {
    font-size: 34px;
    line-height: 1;
  }

  .location-content p {
    max-width: 100%;
    font-size:14px;
  }

  .location-list {
    max-width: 100%;
  }

  .map-tilt-wrap {
    border-radius: 38px;
  }

  .location-map-img {
    border-radius: 38px;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .location-section {
    padding: 35px 0;
  }

  .location-content h2 {
    font-size: 34px;
    line-height: 0.95;
    margin-bottom: 20px;
  }

  .location-content p {
    font-size: 14px;
    line-height: 1.45;
  }

  .location-list {
    margin-top: 24px;
  }

  .location-item {
    grid-template-columns: 32px 1fr 30px 58px;
    column-gap: 8px;
    margin-bottom: 17px;
  }

  .loc-icon {
    font-size: 18px;
  }

  .loc-name,
  .loc-time {
    font-size: 14px;
  }

  .loc-line {
    height: 22px;
  }

  .map-tilt-wrap {
    border-radius: 28px;
  }

  .location-map-img {
    border-radius: 28px;
  }

  .map-address {
    font-size: 14px;
    line-height: 1.4;
    margin-top: 16px;
  }
}

/* carousel hover */

.day-feels-section {
  background: #ffffff;
  padding: 8px 0 42px;
  overflow: hidden;
}

.day-heading h2 {
  font-family: 'Casagrande', Georgia, "Times New Roman", serif;
  font-size: 42px;
  line-height: 1;
  font-weight: 500;
  color: #000;
  margin-bottom: 28px;
}

.day-carousel-wrapper {
  position: relative;
}

.day-carousel-viewport {
  width: 100%;
  overflow: hidden;
}

.day-carousel-track {
  display: flex;
  gap: 18px;
  transition: transform 0.45s ease;
  will-change: transform;
}

.day-slide {
  flex: 0 0 calc((100% - 54px) / 4);
  min-width: 0;
}

.day-card {
  position: relative;
  width: 100%;
  height: auto;
  border-radius: 75px;
  overflow: hidden;
  background: #eeeeee;
  cursor: pointer;
}

.day-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.35s ease, transform 0.45s ease;
}

.day-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 42%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0));
  z-index: 1;
  transition: opacity 0.3s ease;
}

.day-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 48px 24px 45px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.day-top-text {
  font-size: 14px;
  line-height: 1.25;
  color: #000;
  font-weight: 400;
  margin: 0;
  max-width: 200px;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s ease;
  margin-block:auto;
}

.day-bottom-title {
  font-family: 'Casagrande', Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 0.95;
  font-weight: 500;
  color: #ffffff;
  margin: 0;
  transition: color 0.3s ease;
}

.day-card:hover {
  background: #eeeeee;
}

.day-card:hover .day-card-img {
  opacity: 0;
  transform: scale(1.05);
}

.day-card:hover::after {
  opacity: 0;
}

.day-card:hover .day-top-text {
  opacity: 1;
  transform: translateY(0);
}

.day-card:hover .day-bottom-title {
  color: #111111;
}

.day-label {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  letter-spacing: 4px;
  color: #9a4b1c;
  font-weight: 400;
}

.day-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin-top: 24px;
}

.day-arrow {
  width: 25px;
  height: 25px;
  border: 1px solid #111111;
  border-radius: 50%;
  background: transparent;
  color: #111111;
  font-size: 25px;
  line-height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  transition: all 0.25s ease;
}

.day-arrow:hover {
  background: #111111;
  color: #ffffff;
}

.day-counter {
  font-size: 12px;
  color: #777777;
  min-width: 10px;
  text-align: center;
}

/* Tablet */
@media (max-width: 991px) {
  .day-feels-section {
    padding: 30px 0 40px;
  }

  .day-heading h2 {
    font-size: 34px;
  }

  .day-carousel-track {
    gap: 16px;
  }

  .day-slide {
    flex: 0 0 calc((100% - 16px) / 2);
  }

  .day-card {
    height: auto;
    border-radius: 85px;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .day-feels-section {
    padding: 28px 0 35px;
  }

  .day-heading h2 {
    font-size: 34px;
    margin-bottom: 22px;
  }

  .day-carousel-track {
    gap: 14px;
  }

  .day-slide {
    flex: 0 0 100%;
  }

  .day-card {
    height: 450px;
    border-radius: 100px;
  }

  .day-card-overlay {
    padding: 42px 24px 42px;
  }

  .day-top-text {
    font-size: 12px;
    max-width: 210px;
  }

  .day-bottom-title {
    font-size: 24px;
  }

  .day-label {
    margin-top: 18px;
    letter-spacing: 6px;
  }

  .day-carousel-controls {
    margin-top: 22px;
  }
}

/* top card section */

.amenities-section {
  background: #eeeeee;
  padding: 38px 0 48px;
  overflow: hidden;
}

.amenities-heading h2 {
  font-family: 'Casagrande', Georgia, "Times New Roman", serif;
  font-size: 42px;
  line-height: 1;
  font-weight: 500;
  color: #000;
  margin-bottom: 18px;
}

.amenities-heading p {
  font-size: 14px;
  line-height: 1.35;
  color: #111111;
  font-weight: 400;
  margin: 0 auto 28px;
}

.amenity-card {
  background: #964716;
  border-radius: 28px;
  overflow: hidden;
  height: 100%;
  min-height: 405px;
  padding: 8px 8px 28px;
}

.amenity-img-wrap {
  width: 100%;
  height: 155px;
  border-radius: 22px;
  overflow: hidden;
}

.amenity-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.amenity-card:hover .amenity-img {
  transform: scale(1.045);
}

.amenity-content {
  padding: 18px 12px 0;
}

.amenity-content h3 {
  font-family: 'Casagrande', Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 16px;
}

.amenity-content ul {
  margin: 0;
  padding-left: 22px;
}

.amenity-content li {
  font-size: 14px;
  line-height: 1.45;
  color: #ffffff;
  font-weight: 400;
  margin-bottom: 8px;
  padding-left: 4px;
}

.amenity-content li::marker {
  font-size: 12px;
  color: #ffffff;
}

/* Large desktop exact spacing */
@media (min-width: 1200px) {
  .amenities-section .container {
    max-width: 1130px;
  }
}

/* Tablet */
@media (max-width: 991px) {
  .amenities-section {
    padding: 38px 0 45px;
  }

  .amenities-heading h2 {
    font-size: 34px;
  }

  .amenities-heading p {
    font-size: 14px;
  }

  .amenity-card {
    min-height: 390px;
  }

  .amenity-img-wrap {
    height: 170px;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .amenities-section {
    padding: 34px 0 38px;
  }

  .amenities-heading h2 {
    font-size: 34px;
    margin-bottom: 14px;
  }

  .amenities-heading p {
    font-size: 14px;
    line-height: 1.45;
    margin-bottom: 24px;
    padding: 0 5px;
  }

  .amenity-card {
    border-radius: 24px;
    min-height: auto;
    padding: 8px 8px 24px;
  }

  .amenity-img-wrap {
    height: 190px;
    border-radius: 20px;
  }

  .amenity-content {
    padding: 18px 14px 0;
  }

  .amenity-content h3 {
    font-size: 24px;
  }

  .amenity-content li {
    font-size: 14px;
    margin-bottom: 7px;
  }
}

/* accordion arrow section */

.built-section {
  background: #ffffff;
  overflow: hidden;
}

.built-heading {
  background: #ffffff;
  padding: 28px 15px 26px;
}

.built-heading h2 {
  font-family: 'Casagrande', Georgia, "Times New Roman", serif;
  font-size: 42px;
  line-height: 1;
  font-weight: 500;
  color: #000;
  margin-bottom: 15px;
}

.built-heading p {
  font-size: 14px;
  line-height: 1.35;
  color: #000;
  font-weight: 400;
  margin: 0;
}

.built-accordion {
  background: #eeeeee;
  width: 100%;
}

.built-item {
  border-top: 1px dashed #d7d7d7;
}

.built-item:last-child {
  border-bottom: 1px dashed #d7d7d7;
}

.built-question {
  width: 100%;
  min-height: 82px;
  background: transparent;
  border: none;
  outline: none;
  display: grid;
  grid-template-columns: 160px 1fr 150px;
  align-items: center;
  padding: 0 95px;
  cursor: pointer;
}

.built-number {
  font-family: 'Casagrande', Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1;
  color: #000;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 7px;
}

.built-number span {
  width: 9px;
  height: 9px;
  background: #f6b829;
  border-radius: 50%;
  display: inline-block;
  margin-top: 12px;
}

.built-title {
  font-family: 'Casagrande', Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.15;
  color: #000;
  font-weight: 500;
  text-align: center;
}

.built-icon {
    display:none !important;
  width: 48px;
  height: 48px;
  background: #f6b829;
  border-radius: 50%;
  justify-self: end;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111111;
  font-size: 24px;
  line-height: 1;
  transition: all 0.25s ease;
}

.built-icon::before {
  content: "↘";
  display: inline-block;
  transform: translateY(-1px);
  transition: transform 0.2s ease;
}

/*.built-item.active .built-icon::before {*/
/*  transform: translateY(-1px) rotate(-100deg);*/
/*}*/


/* Smooth accordion body */
.built-body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 95px;
  background: #eeeeee;
  transition:
    max-height 0.65s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.35s ease,
    padding-bottom 0.45s ease;
}

.built-item.active .built-body {
  max-height: 280px;
  opacity: 1;
  padding-bottom: 28px;
}

.built-body p {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
  color: #333333;
}

.built-footer span {
  color: #f6b829;
  margin: 0 8px;
}

/* Tablet */
@media (max-width: 991px) {
  .built-heading h2 {
    font-size: 34px;
  }

  .built-question {
    grid-template-columns: 115px 1fr 90px;
    padding: 0 35px;
    min-height: 78px;
  }

  .built-number {
    font-size: 31px;
  }

  .built-title {
    font-size: 20px;
  }

  .built-icon {
    width: 44px;
    height: 44px;
    font-size: 22px;
  }

  .built-body {
    padding: 0 35px;
  }

  .built-item.active .built-body {
    max-height: 300px;
    padding-bottom: 25px;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .built-heading {
    padding: 28px 18px 24px;
  }

  .built-heading h2 {
    font-size: 34px;
    line-height: 1.05;
  }

  .built-heading p {
    font-size: 14px;
  }

  .built-question {
    grid-template-columns: 68px 1fr 52px;
    padding: 0 16px;
    min-height: 74px;
    column-gap: 10px;
  }

  .built-number {
    font-size: 28px;
    gap: 5px;
  }

  .built-number span {
    width: 7px;
    height: 7px;
    margin-top: 10px;
  }

  .built-title {
    font-size: 18px;
    line-height: 1.15;
    text-align: left;
  }

  .built-icon {
    width: 42px;
    height: 42px;
    font-size: 22px;
  }

  .built-body {
    padding: 0 18px;
  }

  .built-item.active .built-body {
    max-height: 340px;
    padding-bottom: 24px;
  }

  .built-body p {
    text-align: left;
    font-size: 12px;
  }

  .built-footer {
    font-size: 10px;
    padding: 16px 18px;
  }

  .built-footer span {
    margin: 0 5px;
  }
}




/* cleaner section */


.wkbutton {
  position: relative;
  padding: 0 0 35px;
  background: #ffffff;
}

.cleanerbg {
  position: relative;
  background-image: url('../images/comefeelbg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  min-height: 230px;
  width: 100%;

  border-radius: 58px;
  overflow: visible;

  display: flex;
  align-items: center;
  justify-content: center;
  padding: 45px 25px 60px;
}

.cleanerbg::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 58px;
  background: rgba(0, 0, 0, 0.18);
  z-index: 1;
}

.cleanerbg .row {
  position: relative;
  z-index: 2;
}

.cleanerbg h3 {
  font-family: 'Casagrande', Georgia, "Times New Roman", serif;
  font-size: 42px;
  line-height: 1.1;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 10px;
}

.cleanerbg p {
  font-size: 14px;
  line-height: 1.5;
  color: #ffffff;
  font-weight: 400;
  margin-bottom: 0;
}

.btn-brand {
  position: absolute;
  left: 50%;
  bottom: -24px;

  transform: translateX(-50%);
  z-index: 5;

  background: #f7b928;
  color: #111111;
  border: 2px solid #111111;
  border-radius: 40px;

  min-width: 260px;
  height: 48px;
  padding: 0 24px;

  font-size: 14px;
  font-weight: 500;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  white-space: nowrap;
  box-shadow: none;
  transition: background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

/* Important: keep translateX(-50%) on hover also */
.btn-brand:hover,
.btn-brand:focus,
.btn-brand:active {
  transform: translateX(-50%) !important;
  background: #000;
  color: #ffffff;
  border-color: #000;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.btn-brand span {
  font-size: 20px;
  line-height: 1;
}

/* Tablet */
@media (max-width: 991px) {
  .cleanerbg {
    min-height: 220px;
    border-radius: 45px;
    padding: 40px 22px 58px;
  }

  .cleanerbg::before {
    border-radius: 45px;
  }

  .cleanerbg h3 {
    font-size: 34px;
  }

  .cleanerbg p {
    font-size: 13px;
  }

  .btn-brand {
    bottom: -23px;
    min-width: 245px;
    height: 46px;
    font-size: 13px;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .wkbutton {
    padding-bottom: 32px;
  }

  .cleanerbg {
    min-height: 210px;
    border-radius: 34px;
    padding: 36px 18px 58px;
  }

  .cleanerbg::before {
    border-radius: 34px;
  }

  .cleanerbg h3 {
    font-size: 34px;
    margin-bottom: 10px;
  }

  .cleanerbg p {
    font-size: 14px;
    line-height: 1.45;
  }

  .btn-brand {
    bottom: -22px;
    min-width: 230px;
    max-width: calc(100% - 40px);
    height: 44px;
    padding: 0 18px;
    font-size: 12px;
  }
}

/* faqs arrows button */

.buyers-faq-section {
  background: #ffffff;
  padding: 12px 0 42px;
  overflow: hidden;
}

.buyers-faq-heading h2 {
  font-family: 'Casagrande', Georgia, "Times New Roman", serif;
  font-size: 42px;
  line-height: 1;
  font-weight: 500;
  color: #000000;
  margin: 0 0 24px;
}

.buyers-faq-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 22px;
  align-items: start;
}

.buyers-faq-column {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.buyers-faq-item {
  border: 1px dashed #dcdcdc;
  border-radius: 24px;
  background: #ffffff;
  overflow: hidden;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  padding:10px 0;
}

.buyers-faq-item.active {
  background: #f7b928;
  border-color: #f7b928;
  border-radius: 18px;
}

.buyers-faq-question {
  width: 100%;
  min-height: 45px;
  padding: 0 20px;
  background: transparent;
  border: none;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  cursor: pointer;
  text-align: left;
}

.buyers-faq-question span:first-child {
  font-size: 14px;
  line-height: 1.25;
  font-weight: 600;
  color: #000000;
}

.buyers-faq-arrow {
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  position: relative;
}

.buyers-faq-arrow::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 2px;
  width: 6px;
  height: 6px;
  border-right: 2px solid #111111;
  border-bottom: 2px solid #111111;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.buyers-faq-item.active .buyers-faq-arrow::before {
  transform: rotate(225deg);
  top: 5px;
}

.buyers-faq-body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 20px;
  transition:
    max-height 0.55s ease,
    opacity 0.35s ease,
    padding-bottom 0.35s ease;
}

.buyers-faq-item.active .buyers-faq-body {
  max-height: 200px;
  opacity: 1;
  padding-bottom: 22px;
}

.buyers-faq-body p {
  max-width: 800px;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 500;
  color: #000000;
  margin: 0;
}

/* Tablet */
@media (max-width: 991px) {
  .buyers-faq-section {
    padding: 32px 0 40px;
  }

  .buyers-faq-heading h2 {
    font-size: 34px;
  }

  .buyers-faq-grid {
    max-width: 720px;
    column-gap: 16px;
  }

  .buyers-faq-question {
    padding: 0 18px;
  }

  .buyers-faq-question span:first-child {
    font-size: 14px;
  }

  .buyers-faq-body p {
    font-size: 12px;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .buyers-faq-section {
    padding: 30px 0 36px;
  }

  .buyers-faq-heading h2 {
    font-size: 34px;
    line-height: 1.05;
    margin-bottom: 22px;
  }

  .buyers-faq-grid {
    grid-template-columns: 1fr;
    row-gap: 9px;
  }

  .buyers-faq-column {
    gap: 9px;
  }

  .buyers-faq-question {
    min-height: 44px;
    padding: 0 17px;
  }

  .buyers-faq-question span:first-child {
    font-size: 14px;
  }

  .buyers-faq-item.active .buyers-faq-body {
    max-height: 220px;
    padding-bottom: 20px;
  }

  .buyers-faq-body {
    padding: 0 17px;
  }

  .buyers-faq-body p {
    max-width: 100%;
    font-size: 12px;
    line-height: 1.45;
  }
}

/* footer */

.et-footer {
  width: 100%;
  background: #000000;
  overflow: hidden;
}

.et-footer-main {
  background: #000000;
  min-height: 255px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 58px 0 28px;
}

.et-footer-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 110px;
  margin-bottom: 70px;
}

.et-footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.et-footer-logo img {
  max-width: 300px;
  max-height: 90px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}



.et-social-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.et-social-icon {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #1e1e1e;
  color: #bd8b2f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.25s ease;
}

.et-social-icon:hover {
  background: #bd8b2f;
  color: #000000;
  transform: translateY(-2px);
}

.et-footer-bottom {
  background: #ffffff;
  min-height: 38px;
  display: flex;
  align-items: center;
  border-top: 1px solid #eeeeee;
}

.et-footer-bottom-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

.et-footer-bottom p {
  font-size: 12px;
  line-height: 1.2;
  color: #111111;
  margin: 0;
  font-weight: 400;
}

.et-footer-bottom p:last-child {
  text-align: right;
}

.et-footer-bottom ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}

.et-footer-bottom ul li {
  font-size: 12px;
  line-height: 1.2;
  color: #111111;
  position: relative;
}

.et-footer-bottom ul li:not(:last-child)::after {
  content: "|";
  margin: 0 6px;
  color: #111111;
}

.et-footer-bottom ul li a {
  color: #111111;
  text-decoration: none;
}

.et-footer-bottom ul li a:hover {
  color: #bd8b2f;
}

/* Tablet */
@media (max-width: 991px) {
  .et-footer-main {
    min-height: 240px;
    padding: 48px 0 30px;
  }

  .et-footer-logos {
    gap: 80px;
    margin-bottom: 62px;
  }

  .et-footer-logo img {
    max-width: 145px;
  }

  .et-footer-bottom-row {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 8px;
    padding: 10px 0;
  }

  .et-footer-bottom p:last-child {
    text-align: center;
  }

  .et-footer-bottom ul {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .et-footer-main {
    min-height: auto;
    padding: 42px 0 30px;
  }

  .et-footer-logos {
    flex-direction: column;
    gap: 28px;
    margin-bottom: 42px;
  }

  .et-footer-logo img {
    max-width: 150px;
    max-height: 75px;
  }

  .et-footer-logo-large img {
    max-width: 145px;
  }

  .et-social-wrap {
    gap: 9px;
  }

  .et-social-icon {
    width: 26px;
    height: 26px;
    font-size: 11px;
  }

  .et-footer-bottom {
    min-height: auto;
  }

  .et-footer-bottom-row {
    padding: 12px 0;
    gap: 7px;
  }

  .et-footer-bottom p,
  .et-footer-bottom ul li {
    font-size: 9px;
  }

  .et-footer-bottom ul li:not(:last-child)::after {
    margin: 0 5px;
  }
}

/* on hover video play section */
.testimonials-video-section {
  background: #eeeeee;
  padding: 30px 0 36px;
  overflow: hidden;
}

.testimonials-left h2 {
  font-family: 'Casagrande', Georgia, "Times New Roman", serif;
  font-size: 42px;
  line-height: 0.95;
  font-weight: 500;
  color: #000;
  margin: 0;
}

.testimonial-carousel {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}

.testimonial-viewport {
  width: 100%;
  overflow: hidden;
  padding: 0 4px;
}

.testimonial-track {
  display: flex;
  align-items: center;
  gap: 14px;
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.testimonial-card {
  position: relative;
  flex: 0 0 122px;
  height: 450px;
  border-radius: 34px;
  overflow: hidden;
  background: #111111;
  cursor: pointer;

  transition:
    flex-basis 0.95s cubic-bezier(0.22, 1, 0.36, 1),
    border-radius 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s ease,
    box-shadow 0.55s ease;
}

.testimonial-card.active {
  flex-basis: 360px;
  border-radius: 28px;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.14);
}

.testimonial-thumb,
.testimonial-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-thumb {
  z-index: 2;
  opacity: 1;
  transition: opacity 0.55s ease, transform 0.85s ease;
}

.testimonial-video {
  z-index: 1;
  opacity: 0;
  transition: opacity 0.55s ease;
  background: #000000;
}

.testimonial-card.active .testimonial-thumb {
  opacity: 0;
  transform: scale(1.03);
}

.testimonial-card.active .testimonial-video {
  opacity: 1;
}

.testimonial-card:not(.active)::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0));
  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateY(-2px);
}

.testimonial-nav {
  width: 31px;
  height: 31px;
  border: 1px solid #111111;
  border-radius: 50%;
  background: #eeeeee;
  color: #111111;
  font-size: 28px;
  line-height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  transition: all 0.25s ease;
  flex: 0 0 31px;
  z-index: 5;
}

.testimonial-nav:hover {
  background: #111111;
  color: #ffffff;
}

.testimonial-prev {
  margin-right: 12px;
}

.testimonial-next {
  margin-left: 12px;
}

/* Large desktop exact look */
@media (min-width: 1200px) {
  .testimonials-video-section .container {
    max-width: 1110px;
  }

  .testimonial-card {
    flex-basis: 150px;
    height: 500px;
  }

  .testimonial-card.active {
    flex-basis: 380px;
  }
}

/* Tablet */
@media (max-width: 991px) {
  .testimonials-video-section {
    padding: 36px 0;
  }

  .testimonials-left h2 {
    font-size: 34px;
  }

  .testimonial-card {
    flex-basis: 105px;
    height: 370px;
    border-radius: 30px;
  }

  .testimonial-card.active {
    flex-basis: 300px;
    border-radius: 26px;
  }

  .testimonial-track {
    gap: 12px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .testimonials-video-section {
    padding: 34px 0 38px;
  }

  .testimonials-left {
    text-align: center;
    margin-bottom: 24px;
  }

  .testimonials-left h2 {
    font-size: 34px;
    line-height: 1;
  }

  .testimonial-carousel {
    align-items: center;
  }

  .testimonial-nav {
    width: 28px;
    height: 28px;
    font-size: 24px;
    flex-basis: 28px;
  }

  .testimonial-prev {
    margin-right: 8px;
  }

  .testimonial-next {
    margin-left: 8px;
  }

  .testimonial-card {
    flex-basis: 72px;
    height: 390px;
    border-radius: 26px;
  }

  .testimonial-card.active {
    flex-basis: 210px;
    border-radius: 24px;
  }

  .testimonial-track {
    gap: 10px;
  }
}

/* Small Mobile */
@media (max-width: 420px) {
  .testimonial-card {
    flex-basis: 58px;
    height: 220px;
  }

  .testimonial-card.active {
    flex-basis: 185px;
  }

  .testimonial-track {
    gap: 8px;
  }

  .testimonial-nav {
    width: 26px;
    height: 26px;
    flex-basis: 26px;
    font-size: 22px;
  }
}

.testimonial-sound-btn {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 6;

  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;

  background: rgba(0, 0, 0, 0.65);
  color: #ffffff;

  display: none;
  align-items: center;
  justify-content: center;

  font-size: 15px;
  line-height: 1;
  cursor: pointer;

  backdrop-filter: blur(6px);
  transition: all 0.25s ease;
}

.testimonial-card.active .testimonial-sound-btn {
  display: flex;
}

.testimonial-sound-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  color: #111111;
}

@media (max-width: 575px) {
  .testimonial-sound-btn {
    width: 32px;
    height: 32px;
    right: 12px;
    bottom: 12px;
    font-size: 14px;
  }
}

/* Bottom Floating Form */
.et-floating-form {
  position: absolute;
  left: 50%;
  bottom: -38px;
  transform: translateX(-50%);
  width: min(76%, 980px);
  background: #fff;
  border-radius: 70px;
  padding: 22px 28px;
  z-index: 25;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
  transition: transform .18s ease, opacity .18s ease;
}

.et-floating-form .form-control,
.et-floating-form .form-select {
  height: 48px;
  border-radius: 40px;
  border: 1px solid #d8d8d8;
  font-size: 12px;
  padding: 0 22px;
  color: #555;
}

.et-floating-form .form-control:focus,
.et-floating-form .form-select:focus {
  border-color: #f2b51d;
  box-shadow: none;
}

.et-form-btn {
  height: 48px;
  border-radius: 40px;
  background: #f7b928;
  color: #111;
  border: 1px solid #111;
  padding: 0 24px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.et-form-btn:hover {
  background: #111;
  color: #fff;
}

/* Sticky fixed state */
.et-floating-form.et-is-fixed {
  position: fixed;
  left: 50%;
  right: auto;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 9999;
}

/* Hide near footer */
.et-floating-form.et-is-hidden {
  transform: translateX(-50%) translateY(110%);
  opacity: 0;
  pointer-events: none;
}

/* Desktop and mobile visibility */
.et-desktop-enquiry-form {
  display: block;
}

.et-mobile-enquiry-btn {
  display: none;
}

/* Tablet and Mobile */
@media (max-width: 991px) {
  .et-floating-form {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    width: calc(100% - 28px);
    margin: -90px auto 40px;
    border-radius: 32px;
    padding: 12px 16px;
  }

  .et-floating-form.et-is-fixed {
    position: fixed;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: calc(100% - 50px);
    margin: 0;
    z-index: 9999;
  }
  .et-floating-form{
    padding: 7px !important;
  }

  .et-floating-form.et-is-hidden {
    transform: translateX(-50%) translateY(110%);
  }

  .et-desktop-enquiry-form {
    display: none !important;
  }

  .et-mobile-enquiry-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 45px;
    background: #f7b928;
    color: #111;
    border: 1px solid #111;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 600;
  }

  .et-mobile-enquiry-btn:hover,
  .et-mobile-enquiry-btn:focus,
  .et-mobile-enquiry-btn:active {
    background: #111;
    color: #fff;
    border-color: #111;
  }
}

@media (max-width: 575px) {
  .et-floating-form {
    margin-top: -110px;
  }
}

/* Modal Design */
.et-enquiry-modal .modal-content {
  border: none;
  border-radius: 26px;
  padding: 28px 24px 26px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.25);
  position: relative;
}

.et-enquiry-modal .modal-body {
  padding: 0;
}

.et-enquiry-modal h3 {
  font-family: 'Casagrande', Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1.1;
  font-weight: 500;
  color: #111;
  text-align: center;
  margin-bottom: 8px;
}

.et-enquiry-modal p {
  font-size: 13px;
  line-height: 1.4;
  color: #555;
  text-align: center;
  margin-bottom: 22px;
}

.et-enquiry-modal .form-control,
.et-enquiry-modal .form-select {
  height: 48px;
  border-radius: 40px;
  border: 1px solid #d8d8d8;
  font-size: 13px;
  padding: 0 20px;
  color: #555;
}

.et-enquiry-modal .form-control:focus,
.et-enquiry-modal .form-select:focus {
  border-color: #f2b51d;
  box-shadow: none;
}

.et-modal-submit {
  width: 100%;
  height: 48px;
  border-radius: 40px;
  background: #f7b928;
  color: #111;
  border: 1px solid #111;
  font-size: 14px;
  font-weight: 600;
}

.et-modal-submit:hover,
.et-modal-submit:focus,
.et-modal-submit:active {
  background: #111;
  color: #fff;
  border-color: #111;
}

.et-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 5;
  box-shadow: none !important;
}

@media (max-width: 575px) {
  .et-enquiry-modal .modal-dialog {
    margin: 16px;
  }

  .et-enquiry-modal .modal-content {
    border-radius: 22px;
    padding: 26px 20px 24px;
  }

  .et-enquiry-modal h3 {
    font-size: 28px;
  }

  .et-enquiry-modal p {
    font-size: 12px;
  }
}


/* RIGHT SIDE FIXED ICONS */
    .floating-icons{
        position: fixed;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 9999;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .float-btn{
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        transition: 0.3s;
        background: #fff;
    }

    .float-btn img{
        width: 34px;
        height: 34px;
    }

    .float-btn:hover{
        transform: scale(1.08);
    }

   

    /* GO TO TOP BUTTON */
    #goTopBtn{
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        border: none;
        border-radius: 50%;
        background: #000;
        color: #fff;
        font-size: 24px;
        cursor: pointer;
        display: none;
        z-index: 9999;
        transition: 0.3s;
    }

    #goTopBtn:hover{
        transform: scale(1.1);
    }

    /* MOBILE */
    @media(max-width:767px){

        .floating-icons{
            right: 10px;
        }

        .float-btn{
            width: 48px;
            height: 48px;
        }

        .float-btn img{
            width: 24px;
            height: 24px;
        }

        #goTopBtn{
            width: 35px;
            height: 35px;
            font-size: 20px;
            bottom:60px;
            background:#37343463;
        }
    }
    
      .location-map-fancybox {
    display: block;
    cursor: zoom-in;
  }

  .location-map-fancybox img {
    display: block;
    width: 100%;
  }
  
  /*button blinking animation*/
  
  .btnblinkanime {
  background: #f2b51d;
  color: #111;
  border-radius: 40px;
  padding: 13px 24px;
  font-size: 14px;
  font-weight: 500;
  border: none;
  font-family: "DM Sans", sans-serif;
  position: relative;
  overflow: visible;
  animation: btnPulse 2s infinite ease-in-out;
  transition: transform 0.3s ease;
}

.btnblinkanime:hover {
  transform: scale(1.05);
}

@keyframes btnPulse {
  0% {
    transform: scale(1);
    box-shadow:
      0 0 0 0 rgba(242, 181, 29, 0.7),
      0 0 0 0 rgba(242, 181, 29, 0.5);
  }

  50% {
    transform: scale(1.03);
    box-shadow:
      0 0 0 12px rgba(242, 181, 29, 0),
      0 0 25px 8px rgba(242, 181, 29, 0.45);
  }

  100% {
    transform: scale(1);
    box-shadow:
      0 0 0 0 rgba(242, 181, 29, 0),
      0 0 0 0 rgba(242, 181, 29, 0);
  }
}


/* latest changes */
/* logos align section */

.spec-details-section {
  background: #ffffff;
  padding: 14px 0 48px;

  overflow: hidden;
}

.spec-details-heading h2 {
  font-family: 'Casagrande', Georgia, "Times New Roman", serif;
  font-size: 42px;
  line-height: 1;
  font-weight: 500;
  color: #000000;
}

.spec-details-wrap {
  max-width: 930px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 88px;
  align-items: start;
}

.spec-block {
  width: 100%;
}

.spec-row {
  display: grid;
  grid-template-columns: 170px 1px 155px;
  align-items: center;
  min-height: 66px;
}

.spec-block-right .spec-row {
  grid-template-columns: 200px 1px 165px;
}

.spec-text {
  padding-right: 18px;
}

.spec-text h4 {
  font-size: 18px;
  line-height: 1.05;
  font-weight: 500;
  color: #000;
  margin: 0 0 7px;
  padding-top: 15px;
}

.spec-text p {
  font-size: 14px;
  line-height: 1.25;
  font-weight: 400;
  color: #000;
  margin: 0;
}

.spec-divider {
  width: 1px;
  min-height: 52px;
  border-left: 1px dashed #555555;
}

.spec-logo {
  min-height: 66px;
  padding-left: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spec-logo img {
  width: auto;
  max-width: 118px;
  max-height: 54px;
  object-fit: contain;
  display: block;
}

.spec-block-left .spec-logo img {
  max-width: 170px;
  max-height: 52px;
}

.spec-block-right .spec-logo img {
  max-width: 170px;
  max-height: 56px;
}

/* Tablet */
@media (max-width: 991px) {
  .spec-details-section {
    padding: 34px 0 42px;
  }

  .spec-details-heading h2 {
    font-size: 34px;
    margin-bottom: 30px;
  }

  .spec-details-wrap {
    max-width: 640px;
    grid-template-columns: 1fr;
    row-gap: 10px;
  }

  .spec-row,
  .spec-block-right .spec-row {
    grid-template-columns: 1fr 1px 190px;
    min-height: 72px;
  }

  .spec-text h4 {
    font-size: 16px;
  }

  .spec-text p {
    font-size: 10px;
  }

  .spec-logo {
    padding-left: 28px;
    min-height: 72px;
  }

  .spec-logo img,
  .spec-block-left .spec-logo img,
  .spec-block-right .spec-logo img {
    max-width: 125px;
    max-height: 58px;
  }
}

/* Mobile */
@media (max-width: 575px) {

  .spec-details-wrap {
    max-width: 100%;
    display: flex;
    flex-wrap: nowrap;
    gap: 18px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;

    /* Firefox scrollbar */
    scrollbar-width: thin;
    scrollbar-color: #888 #e5e5e5;
  }

  .spec-block {
    min-width: 92%;
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  /* Chrome / Safari scrollbar */
  .spec-details-wrap::-webkit-scrollbar {
    height: 5px;
  }

  .spec-details-wrap::-webkit-scrollbar-track {
    background: #e5e5e5;
    border-radius: 20px;
  }

  .spec-details-wrap::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 20px;
  }

  .spec-details-wrap::-webkit-scrollbar-thumb:hover {
    background: #666;
  }
}

/* Very small mobile */
@media (max-width: 390px) {

  .spec-block {
    min-width: 96%;
  }

  .spec-row,
  .spec-block-right .spec-row {
    grid-template-columns: 1fr 1px 112px;
  }

  .spec-logo img,
  .spec-block-left .spec-logo img,
  .spec-block-right .spec-logo img {
    max-width: 82px;
  }
}

.mainbk {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #f2b51d;
  border-radius: 18px;
  overflow: hidden;
  width: auto;
  max-width: max-content;
}

.bhk-block {
  flex: 0 0 auto;
  text-align: center;
  color: #f2b51d;
  font-size: 20px;
  font-weight: normal;
  line-height: 1;
  padding: 8px 18px;
  position: relative;
  white-space: nowrap;
}

.bhk-block:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 22%;
  right: 0;
  width: 1px;
  height: 56%;
  background: rgba(242, 181, 29, 0.45);
}

/* Tablet */
@media (max-width: 768px) {
  .mainbk {
    border-radius: 16px;
  }

  .bhk-block {
    font-size: 18px;
    padding: 9px 18px;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .mainbk {
    display: inline-flex;
    flex-direction: row;
    border-radius: 14px;
  }

  .bhk-block {
    width: auto;
    font-size: 16px;
    padding: 9px 14px;
  }

  .bhk-block:not(:last-child)::after {
    top: 22%;
    right: 0;
    width: 1px;
    height: 56%;
  }
}