@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

body {
  font-family: "Montserrat", sans-serif;
}

body ul li {
  list-style-type: none;
}

ul {
  padding-left: 0 !important;
}

/* h1{
  line-height: 60px !important;
} */

:root {
  --primary: #222c4f;
  --secondary: #404968;
  --number-red: #c02453;
  --para: #616161;
  --overlay-color: #4f547a;
  --light-border: #ffffff1f;
  --header-color: #4c536f;
  --bg-color: #ededed;
  --bg-white: #ffffff;
  --border: #eeeeee;
  --primary-light: #b1b8d4;
}

/* ==================================== COMMON START  ==================================================== */

.pb-40 {
  padding-bottom: 40px;
}

.py-40 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.px-40 {
  padding-left: 40px;
  padding-right: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

.my-40 {
  margin-top: 40px;
  margin-bottom: 40px;
}

.mx-40 {
  margin-left: 40px;
  margin-right: 40px;
}

.primary-head {
  font-size: 90px;
  font-weight: 300;
  color: var(--header-color);
  /* padding-right: 220px; */
  /* text-align: end; */
}

.sub-head {
  margin-top: 10px;
  color: var(--header-color);
  font-size: 44px;
  font-weight: 800;
}

.intro-para {
  margin: 20px 0 40px;
  max-width: 690px;
  line-height: 30px;
  font-weight: 500;
  color: var(--para);
  font-size: 18px;
}

/* p {
  max-width: 1060px;
  line-height: 30px;
  font-weight: 500;
  color: var(--para);
  font-size: 18px;
} */

/* =============counter============== */

/* ==============counter=================== */

.common-btn {
  margin: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background-color: var(--primary);
  position: fixed;
  top: 50%;
  right: -245px;
  z-index: 4;
  transform: rotate(90deg);
  padding-left: 10px;
  padding-right: 10px;
  /* border: 1px solid var(--light-border); */
}

.common-btn span {
  color: #fff;
}

.common-btn a {
  color: #eff2ff;
  position: relative;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 2px;
  padding: 6px 10px;
  font-weight: 600;
}

.slide-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background-color: var(--primary);
  position: absolute;
  bottom: 0;
}

.slide-btn span {
  color: #fff;
}

.slide-btn a {
  color: #fff !important;
  position: relative;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  padding: 10px 20px;
  font-weight: 600;
  cursor: pointer;
}

/* ==================================== COMMON END  ==================================================== */
#header {
  position: fixed;
  top: 0;
  width: 100%;
  background: transparent;
  z-index: 1000;
  transition: all 0.3s ease;
  /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08); */
}

#header.bg-nav {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
}

#header.bg-nav .logo {
  width: 60px;
  height: auto;
  transition: all 0.3s ease;
}

#header.bg-nav .h-navbar {
  padding: 8px 15px;
}

#header.hide {
  transform: translateY(-100%);
}

/* h-navbar */
.h-navbar {
  max-width: 1600px;
  margin: auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  width: 84px;
  height: 142px;
  font-weight: bold;
  transition: all 0.3s;
}

.logo img {
  width: 100%;
}

/* DESKTOP */
.h-nav-links {
  display: flex;
  list-style: none;
  gap: 25px;
}

.h-nav-links a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
  font-size: 17px;
  padding: 10px;
}

.h-nav-links a {
  text-decoration: none;
  position: relative;
  z-index: 1;
  transition: color 0.3s;
  text-wrap: nowrap;
}

.h-nav-links a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background-color: var(--overlay-color);
  transition:
    width 0.3s,
    height 0.3s,
    left 0.3s,
    top 0.3s;
  z-index: -1;
}

.h-nav-links a:hover {
  color: #ffffff;
}

.h-nav-links a:hover::after {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.h-nav-links .btn-1 {
  padding: 10px 25px;
  background: var(--primary);
  color: #fff;
  font-size: 16px;
}

/* HAMBURGER */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 26px;
  height: 3px;
  background: #000;
  transition: 0.3s;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 999;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
  color: #000;
}

/* new-changes */

.projectshowcasemain {
  position: relative;
}

.zoombutton a {
  background-color: var(--primary);
  position: absolute;
  top: 68%;
  left: 0;
  z-index: 1000;
  width: 165px;
  width: max-content;
  background-color: transparent;
  color: #fff !important;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0 10px;
  font-size: 40px;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.projectshowcasemain > img {
  cursor: default !important;
}
.gradient {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.04) -1%,
    rgba(0, 0, 0, 0.6) 65%
  );
  height: 258px;
  position: absolute;
  top: 60%;
  width: 100%;
}
.viewallimages {
  font-size: 20px;
  text-decoration: 0.5px underline;
  text-underline-offset: 5px;
  font-weight: 500;
  text-transform: none;
  cursor: pointer;
}

.zoombutton a:hover {
  /* background-color: var(--primary); */
  color: #fff;
}
.popupwidthcarosel {
  max-width: 1200px !important;
}

.newsliderchange {
  max-width: 90%;
  height: 700px;
}

.popupclasssection .btn-close {
  z-index: 10;
  opacity: 1;
  font-size: 25px;
  top: -38px;
  height: 25px;
  width: 25px;
  right: 20px;
  color: red;
}
.popupclasssection {
  background: rgba(0, 0, 0, 0.75);
}

.popupclasssection .carousel-control-prev {
  opacity: 1;
}
.popupclasssection .carousel-control-prev-icon {
  background-image: url("./images/blue-color-arrow-left.svg");
  background-image: url("./images/white-arrow-left.svg");
  background-image: url("./images/border-white-left-new.svg");
  opacity: 10;
  z-index: 1;
  width: 40px;
  height: 40px;
}
.popupclasssection .carousel-control-next {
  opacity: 1;
}
.popupclasssection .carousel-control-next-icon {
  background-image: url("./images/blue-color-arrow-right.svg");
  background-image: url("./images/white-arrow-right.svg");
  background-image: url("./images/border-white-right-new.svg");
  opacity: 10;
  z-index: 1;
  width: 40px;
  height: 40px;
}
.oragadamfaqqpopup .accordion-item {
  /* width: 180px;
    height: 180px; */
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.oragadamfaqqpopup .accordion-item:hover {
  background-color: var(--primary);
}
#oragadam .oragadamfaqqpopup .accordion-button {
  width: 189px;
  height: 189px;
  display: flex;
  justify-content: center;
  align-items: center !important;
}
#oragadam .oragadamfaqqpopup .accordion-button:hover {
  color: #fff !important;
}

.oragadamfaqqpopup .accordion-item:hover .accordion-button {
  color: #fff !important;
}

.oragadamfaqqpopup
  .accordion-item:hover
  #oragadam
  .accordion-button:not(.collapsed) {
  color: #fff !important;
}

/* #oragadam.oragadamfaqqpopup .accordion-button::after {
  content: none !important;
}

#oragadam.oragadamfaqqpopup .accordion-button:not(.collapsed)::after {
  content: none !important;
} */

.oragadamfaqqpopup .accordion-button {
  padding: 10px 20px !important;
  font-size: 17px !important;
  font-weight: 800 !important;
  text-align: center;
}
.oragadamfaqqpopup {
  display: flex;
  flex-wrap: wrap;
  column-gap: 25px;
  row-gap: 15px;
  align-items: center;
  justify-content: center;
}

/* #faqAccordion.oragadamfaqqpopup .accordion-button:hover {
  background-color: var(--primary) !important;
  color: #fff !important;
} */

#faqAccordion.oragadamfaqqpopup .accordion-button::after {
  content: "−" !important;
  transform: none;
  content: "+" !important;
  font-size: 27px !important;
  position: absolute !important;
  right: 7%;
  top: 7px;
}
.faqcontainersec {
  display: flex;
  justify-content: center;
}

.faqcontainersec p {
  font-size: 20px;
  font-weight: 500;
  width: 75%;
}

#oragadam .oragadamfaqqpopup .accordion-button:not(.collapsed)::after {
  content: "−" !important;
  transform: none;
  content: "" !important;
}

.oragadamfaqqpopup {
  margin-top: 20px;
}

.secondsection {
  align-items: center;
}

.oragadamfaqqpopup button {
  text-transform: uppercase;
}

.popiupfaq {
  /* position: relative; */
  max-width: 800px !important;
  /* padding: 40px; */
  /* border-radius: 5px; */
}

.popiupfaq .modal-content {
  padding: 40px;
}

.popiupfaq .popup-close {
  position: absolute;
  top: -50px;
  right: -8px;
  opacity: 1;
  width: 40px;
  height: 40px;
  font-size: 20px;
  border-radius: 50px;
}
.popiupfaq .accordion-button {
  color: var(--primary) !important;
  font-size: 20px;
}

.popiupfaq .accordion-body {
  font-size: 18px;
}

.popiupfaq .accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}
.popiupfaq .accordion-item {
  border-radius: 0;
  border-bottom: 1px solid #222c4f36;
  /* border: none; */
}

.popiupfaq .accordion-button:not(.collapsed) {
  background-color: var(--primary);
  color: #fff !important;
}

.faqpopupconatiner {
  background: rgba(0, 0, 0, 0.75);
}

.popiupfaq .accordion {
  overflow-y: scroll;
  height: 600px;
  /* scrollbar-width: ; */
  scrollbar-color: #222c4f #fff; /* thumb color | track color */
}

/* new-changes */

@media (min-width: 1170px) and (max-width: 1270px) {
  .h-nav-links {
    gap: 10px;
  }
}

@media (min-width: 1300px) {
  .close-btn {
    display: none;
  }
}

@media (max-width: 1300px) {
  .menu-toggle {
    display: flex;
  }

  .h-nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    padding-top: 90px;
    gap: 25px;
    transition: right 0.7s ease;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
    z-index: 1000;
  }
  .hero::before {
    height: 0px !important;
  }

  .h-nav-links.active {
    right: 0;
    transition: all 0.7s;
  }

  .h-nav-links li {
    padding-left: 25px;
  }
}

@media (min-width: 300px) and (max-width: 800px) {
  .logo {
    width: 60px;
    height: auto;
    transition: all 0.3s;
  }
}

@media (min-width: 300px) and (max-width: 500px) {
  .h-nav-links {
    width: 100%;
  }
  .logo {
    width: 35px;
  }
}

/* ==================================== HOME PAGE START  ==================================================== */

.hero {
  width: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* TOP COLOR BLEND */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 280px;
  background: linear-gradient(
    to bottom,
    #dce1e7 0%,
    rgba(220, 225, 231, 0.7) 50%,
    rgba(220, 225, 231, 0.3) 70%,
    rgba(220, 225, 231, 0) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.hero video {
  width: 100%;
  height: auto;
  /* min-height: 400px; */
  object-fit: cover;
}
.hero img {
  width: 100%;
  object-fit: cover;
}
.pg-logo {
  padding: 8px 40px !important;
  max-width: 600px;
  min-width: 300px;
  height: auto;
  /* margin-bottom: 20px; */
}
/* ==================================== HOME PAGE END  ==================================================== */

/* ====================================  GATED PLOTS AT  ORAGADAM START =================================== */
.gated-plots .title-1 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.gated-plots .title-1 p {
  max-width: 1060px;
  /* line-height: 30px; */
  line-height: 1.636;
  font-weight: 500;
  color: var(--para);
  font-size: 18px;
  font-family: "Poppins", sans-serif;
}

.gated-plots .title-1 img {
  /* max-width: 700px; */
  /* max-width: 550px;
  min-width: 300px;
  height: auto;
  margin-bottom: 20px; */
}

.logo-sub-title {
  color: var(--header-color);
  font-size: 40px;
  font-weight: 800;
  display: flex;
  align-items: center;
}

.location-img {
  width: 36px !important;
  height: auto !important;
  min-width: inherit !important;
  max-width: 60px !important;
  margin: 0px 10px 0 10px;
}

.gp-img-box {
  margin: auto;
  max-width: 1600px;
  height: 700px;
  background-image: url("images/u.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.counter-box {
  display: flex;
  align-items: center;
}

.banner {
  position: relative;
  max-width: 1600px;
  /* height: 750px; */
  height: auto;
  /* overflow: hidden; */
  color: #fff;
  margin: auto;
  /* margin: 100px auto; */
  margin: 100px auto -150px auto;
}

.banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.wrapper {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* TOP */
.banner-top {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 40px;
  font-size: 14px;
  top: -152px;
  gap: 60px;
}

.banner-top span {
  /* font-size: 18px;
  color: var(--primary); */

  font-size: 14px;
  color: var(--primary);
  padding-bottom: 40px;
}

.banner-badge img {
  width: 200px;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

/* CONTENT */
.banner-content {
  position: relative;
  z-index: 2;
  height: calc(100% - 80px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  top: -117px;
  gap: 80px;
}

/* STATS */
.banner-stats-top,
.banner-stats-bottom {
  display: flex;
  /* gap: 60px; */
  /* align-items: center; */
}

.banner-stat {
  /* background: rgba(255, 255, 255, 0.1);
  padding: 25px 30px;
  backdrop-filter: blur(6px); */
  padding: 16px 30px;
  /* backdrop-filter: blur(6px); */
  width: 540px;
  border: 1px solid #ffffff1f;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  position: relative;
}

.banner-stat h2 {
  font-size: 100px;
  font-weight: 700;
}

.banner-stat p {
  font-size: 14px;
  text-transform: uppercase;
  margin-top: 8px;
  color: #fff;
  font-weight: 600;
}

/* TEXT */
.banner-text {
  max-width: 520px;
}

.banner-text h1 {
  font-size: 74px;
  /* line-height: 1.1; */
  line-height: 38px !important;
  font-weight: 700;
}

.banner-text span {
  font-weight: 600;
  font-size: 40px;
  line-height: 18px;
}

.banner-actions {
  margin: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: var(--primary);
  /* border: 1px solid var(--light-border); */
}

.banner-actions a {
  color: #fff;
  position: relative;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  padding: 10px 30px;
  cursor: pointer;
}

.btn-1 {
  border: 1px solid var(--light-border);
  margin-top: 25px;
}

/* Vertical divider */
.banner-actions a:not(:first-child)::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 18px;
  background-color: rgba(255, 255, 255, 0.4);
}

.plot-size {
  position: absolute;
  left: 22%;
  top: 68%;
}

.banner-stat h4 {
  font-size: 44px;
  font-weight: 700;
}

.rera,
.dtcp {
  font-weight: 600;
}

@media (max-width: 750px) {
  .gated-plots .title-1 img {
    width: 100%;
  }
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .banner {
    height: auto;
    min-height: 100vh;
  }

  .banner-stats-top,
  .banner-stats-bottom {
    flex-direction: column;
    gap: 20px;
  }

  .banner-text h1 {
    font-size: 60px;
    line-height: 30px;
  }

  .banner-text span {
    font-weight: 600;
    font-size: 32px;
  }

  .banner-stat h2 {
    font-size: 60px;
  }

  .banner-badge img {
    width: 130px;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
  }

  .banner-top {
    top: -108px;
    gap: 36px;
  }

  .banner-stat {
    width: 100%;
    justify-content: start;
  }

  .banner-stat:last-child {
    padding-bottom: 50px;
  }

  .plot-size {
    left: 4%;
  }
}

@media (max-width: 778px) {
  .gated-plots .title-1 p {
    font-size: 16px;
  }

  .banner-top span {
    font-size: 14px;
    padding-bottom: 0px;
  }

  .banner-badge img {
    width: 94px;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
  }

  .banner-top {
    top: -83px;
    gap: 15px;
  }

  .py-40 {
    padding-bottom: 0;
  }

  .banner-content {
    top: -80px;
  }

  .banner-stat {
    justify-content: start;
    position: relative;
  }
}

@media (max-width: 600px) {
  .banner-top {
    flex-direction: column;
    gap: 15px;
  }

  .banner-content {
    top: -130px;
  }

  .banner-text h1 {
    font-size: 42px;
    line-height: 22px;
  }

  .banner-text span {
    font-size: 24px;
  }

  .banner-badge img {
    width: 70px;
  }

  .banner-top {
    top: -180px;
    gap: 15px;
  }

  .banner-top {
    padding: 20px 15px;
  }

  .gated-plots .title-1 p {
    font-size: 14px;
    padding: 10px 15px;
    margin-bottom: 70px;
  }

  .banner-stat h2 {
    font-size: 40px;
  }

  .banner-actions {
    background-color: transparent;
    flex-direction: column;
    align-items: stretch;
  }

  .banner-actions a {
    background-color: var(--primary);
  }

  .banner-actions a:not(:first-child)::before {
    display: none;
  }

  .banner-stat:last-child {
    padding-bottom: 40px;
  }

  .banner-stat h4 {
    font-size: 28px;
  }

  .plot-size {
    left: 32px;
    top: 60%;
  }

  /* changes */
  .viewallimages {
    font-size: 15px;
  }

  .zoombutton a {
    top: 197px;
    z-index: 1000;
    width: max-content;
    background-color: transparent;
    color: var(--primary) !important;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0 10px;
    font-size: 25px;
    width: 100%;
  }

  .projectshowcasemain {
    height: 250px;
  }

  .gradient {
    height: auto;
  }

  .newsliderchange {
    height: auto;
  }

  .oragadamfaqqpopup .accordion-item {
    width: 100%;
  }

  .oragadamfaqqpopup .accordion-button {
    padding: 18px 40px !important;
    font-size: 18px !important;
  }

  .faqpopupconatiner .popiupfaq {
    margin-left: 20px;
  }

  .popiupfaq .accordion-button {
    font-size: 17px;
  }

  .popiupfaq .accordion-body {
    font-size: 15px;
  }

  .popiupfaq .modal-content {
    padding: 20px;
  }
  #oragadam .oragadamfaqqpopup .accordion-button {
    width: 100%;
    height: auto;
    padding: 10px !important;
  }
}
@media (max-width: 450px) {
  .banner-text h1 {
    font-size: 32px;
  }
}

/* ====================================  GATED PLOTS AT  ORAGADAM END ===================================== */

/* ====================================  LIFESTYLE CENTRIC  ORAGADAM END ===================================== */

.lifestyle {
  background: var(--bg-color);
  padding: 230px 0px 40px 0px;
}

.lifestyle-content {
  padding-left: 220px;
}

.lifestyle-container {
  /* max-width: 1300px; */
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT */
.lifestyle h1 {
  font-size: 90px;
  font-weight: 300;
  color: var(--header-color);
  padding-left: 214px;
  line-height: 1;
  margin: 0;
}

.lifestyle-content h1 span {
  font-weight: 600;
}

.lifestyle-content h2 {
  margin-top: 10px;
  color: var(--header-color);
  font-size: 44px;
  font-weight: 800;
}

.lifestyle .intro {
  margin: 20px 0 40px;
  max-width: 690px;
  line-height: 30px;
  font-weight: 500;
  color: var(--para);
  font-size: 18px;
}

.feature {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.icon {
  font-size: 32px;
  min-width: 40px;
}
.dfl-added-content .icon {
width: 50px;
}

.feature h3 {
  font-size: 62px;
  color: var(--number-red);
  line-height: 1;
}
.dfl-added-content .feature h3{font-size: 40px;}

.dfl-added-content{margin-bottom: 40px;}
.dfl-added-content{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}


.feature h3 span {
  font-weight: 700;
}

.feature strong {
  display: block;
  margin: 5px 0 8px;
  color: var(--header-color);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
}

.feature p {
  color: var(--secondary);
  font-size: 16px;
  line-height: 1.5;
  max-width: 514px;
  font-weight: 500;
}

.wellness {
  font-size: 32px;
}

/* RIGHT */
.lifestyle-media {
  position: relative;
  overflow: hidden;
  max-height: 700px;
  width: 100%;
}

.lifestyle-media img {
  object-fit: cover;
  width: 100%;
  height: 700px;
}

.icon {
  width: 70px;
  height: auto;
}

.icon img {
  width: 100%;
}

/* popup slider */

/* ===== show-case slider ===== */
/* ===== SLICK IMAGE ===== */

.showcase-slider {
  max-width: 1600px;
  margin: auto;
}

.newsliderpopup {
  max-width: 1200px;
}

.single-item,
.showcase-slider img {
  width: 100%;
  cursor: pointer;
}

.main-slider img {
  cursor: pointer;
}

/* .showcase-slider:hover .slick-prev::before,.showcase-slider:hover .slick-next::before {
  display: block;
}  */

.slick-prev::before,
.slick-next::before {
  /* display: none; */
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  /* opacity: .75; */
  color: rgba(255, 255, 255, 0.63);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #fff;
  padding: 5px;
  display: block;
}

.slick-prev::before {
  content: "" !important;
  background-image: url("images/left.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
}

.slick-prev {
  /* left: -50px !important; */
  z-index: 2;
}

.slick-next {
  right: 0 !important;
}

.slick-next::before {
  content: "" !important;
  background-image: url("images/right.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
}

.slick-prev,
.slick-next {
  /* display: none !important; */
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}

/* ===== POPUP GALLERY ===== */
.popup-gallery {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popup-gallery.active {
  display: flex;
}

.popup-img {
  max-width: 85%;
  max-height: 85%;
}

.popup-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

.popup-prev,
.popup-next {
  position: absolute;
  top: 50%;
  font-size: 40px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  transform: translateY(-50%);
}

.popup-prev {
  left: 30px;
}

.popup-next {
  right: 30px;
}

/* ====================================  LIFESTYLE CENTRIC  ORAGADAM END ===================================== */

/* ====================================  DESIGNED FOR LIFE START ===================================== */
.dfl {
  padding: 100px 0px;
}
/* .dfl-added-content{
  display: flex;
  gap: 20px;
} */
.dfl h1 {
  font-size: 90px;
  font-weight: 300;
  color: var(--header-color);
  padding-right: 220px;
  text-align: end;
}

.dfl-container {
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.dfl-content h2 {
  margin-top: 10px;
  color: var(--header-color);
  font-size: 44px;
  font-weight: 800;
  text-align: right;
}

.dfl .intro {
  margin: 20px 0 40px;
  max-width: 690px;
  line-height: 30px;
  font-weight: 500;
  color: var(--para);
  font-size: 18px;
  text-align: right;
}

/* RIGHT */
.dfl-media {
  position: relative;
  overflow: hidden;
  max-height: 700px;
  width: 100%;
}

.dfl-media img {
  object-fit: cover;
  width: 100%;
  height: 700px;
}

.sub-text {
  font-size: 20px;
  color: var(--secondary);
  font-weight: 500 !important;
}

.dfl-content {
  padding-right: 220px;
}

/* .dfl-list{padding-left: 16px;} */

.dfl-list li {
  display: flex;
  align-items: start;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--primary);
  font-size: 16px;
  line-height: 1.5;
  max-width: 514px;

  font-weight: 500;
}

.dfl-list li i {
  color: var(--number-red);
  transform: rotate(320deg);
}

/* .dfl-media {
  max-height: 480px;
} */

/* ====================================  DESIGNED FOR LIFE END ===================================== */

/* ====================================  PROJECT SHOWCASE START ===================================== */

.project-showcase {
  padding: 100px 20px;
  background-color: var(--bg-color);
}

.project-showcase .title-2 h2 {
  text-align: center;
}

.project-showcase p {
  margin: 0px auto 40px;
}

.showcar-slider {
  max-width: 1600px;
  margin: auto;
}

.showcar-slider img {
  width: 100%;
  object-fit: cover;
}

/* ====================================  PROJECT SHOWCASE END ===================================== */

/* ====================================  Masterplan start ===================================== */
.masterplan-scroll {
  width: 100%;
  overflow-x: auto; /* horizontal scroll */
  overflow-y: hidden;
  display: flex;
}

.masterplan-container {
  position: relative;
  /* width: 1200px;              */
  min-width: 1200px;
  margin: auto;
}

.masterplan-container img {
  width: 1200px;
  height: auto;
  display: block;
}

/* .svg-overlay {
  position: absolute;
  inset: 0;
  width: 1200px;
  height: 100%;
  pointer-events: none;     
} */
.title-6 {
  text-align: center;
  margin: auto;
  margin-bottom: 40px;
}
.sv .title-6 h1 {
  font-size: 90px;
  font-weight: 300;
  color: var(--header-color);
  line-height: 1;
  margin: 0;
}

.sv .title-6 p {
  line-height: 30px;
  font-weight: 500;
  color: var(--para);
  font-size: 18px;
  margin-bottom: 10px;
}

.masterplan .title-3 h1 {
  font-size: 90px;
  font-weight: 300;
  color: var(--header-color);
  line-height: 1;
  margin: 0;
}

.masterplan .title-3 p {
  line-height: 30px;
  font-weight: 500;
  color: var(--para);
  font-size: 18px;
  margin-bottom: 10px;
}

.masterplan {
  position: relative;
  background: #fff;
  /* top background */
}

/* .masterplan img {
  width: 100%;
  display: block;
} */

/* bottom blend */
.masterplan::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 180px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    #f5f5f5 100%
  );
  pointer-events: none;
}

.title-3 {
  text-align: center;
  margin: auto;
}

.d-brochure {
  color: #fff;
  position: relative;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  padding: 10px 30px;
  display: block;
  width: max-content;
  background-color: var(--primary);
  margin: auto;
}

.masterplan {
  padding: 100px 20px;
  background-color: var(--bg-white);
}

.masterplan img {
  width: 100%;
}

#plot-tooltip {
  position: absolute;
  display: none;
  background: #4f547af5;
  color: #fff;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 13px;
  z-index: 1000;
  pointer-events: none;
  white-space: nowrap;
  width: 300px;
}

.masterplan-container {
  position: relative;
  display: inline-block;
}

.plot-box {
  fill: rgba(255, 255, 255, 0);
  cursor: pointer;
  transition: fill 0.2s ease;
}

.plot-box:hover {
  fill: rgba(0, 123, 255, 0.35);
  /* fill: rgba(0, 0, 0, 1); */
}

#plot-tooltip ul {
  margin: 0;
  padding: 20px !important;
}

#plot-tooltip ul li {
  list-style-type: none;
  font-size: 18px;
  text-align: center !important;
}

/* #plot-tooltip ul li:last-child{
      position: absolute;
      bottom: -20px;
      left: 50%;
      transform: translate(-50%);
    } */

/* #plot-tooltip ul li:last-child img{
            width: 30px;
            height: 30px;
            color: #000;
          } */

/* ====================================  Masterplan end ===================================== */

/* ====================================  oragadam-edge start ===================================== */
.oragadam-edge {
  padding: 100px 20px;
  background-color: var(--bg-white);
}

.oragadam-edge img {
  width: 100%;
  height: 700px;
  /* min-height: 700px;
  max-width: 700px;
  object-fit: contain; */
  object-fit: cover;
  border-radius: 30px !important;
  /* margin: auto; */
}
.oragadam-edge .slick-track {display: flex;align-items: center;}
.title-4 {
  text-align: center;
}

.title-4 h1 {
  font-size: 90px;
  font-weight: 300;
  color: var(--header-color);
  line-height: 1;
  margin: 0;
}

.title-4 h2 {
  /* margin-top: 10px; */
  color: var(--header-color);
  font-size: 44px;
  font-weight: 800;
}

.oragadam-edge {
  max-width: 1600px;
  margin: auto;
}

.oragadam-edge-slider {
  max-width: 1200px;
  margin: auto;
  border-radius: 30px;
}

/* ====================================  oragadam-edge start ===================================== */

/* ====================================  why-paulsn start ===================================== */
/* .paulsn-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  color: #fff;
  font-family: "Inter", sans-serif;
}

.bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.lines-svg {
  position: absolute;
  inset: 0;
  z-index: 3;
}

.draw-line {
  stroke: #fff;
  stroke-width: 2;
  fill: none;
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: draw 1.8s ease forwards;
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

.title {
  position: absolute;
  top: 10%;
  left: 8%;
  z-index: 4;
}

.title span {
  font-size: 14px;
  letter-spacing: 2px;
}

.title h2 {
  font-size: 60px;
  margin: 5px 0;
}

.title small {
  font-size: 18px;
  opacity: 0.8;
}

.content {
  position: absolute;
  max-width: 280px;
  z-index: 4;
}

.left {
  left: 8%;
}

.right {
  right: 8%;
}

.top {
  top: 38%;
}

.bottom {
  top: 68%;
}

.num {
  font-size: 48px;
  color: #9ad14b;
  font-weight: 700;
}

@media (max-width: 992px) {
  .overlay-img {
    width: 45%;
  }

  .content {
    position: static;
    max-width: 100%;
    margin: 20px;
  }

  .lines-svg {
    display: none;
  }

  .paulsn-section {
    height: auto;
    padding-bottom: 40px;
  }
} */


.wpg-logo{
  position: absolute;
  transform: translate(-50%,-50%);
  left: 50%;
  top: 60%;
  width: 200px;
}

.line-one {
  position: absolute;
  top: -39px;
  left: 130px;
  transform: rotate(180deg);
}

.line-two {
  position: absolute;
  top: 30px;
  left: -325px;
  height: 180px;
}

.line-three {
  position: absolute;
  top: 22px;
  right: 252px;
}
.left p {
  text-align: right;
}
.why-col-1 {
  position: absolute;
  top: 0;
  right: 200px;
  width: 380px;
}
.why-row-2 {
  height: 200px;
}
.why-col-2 {
  position: absolute;
  top: -46px;
  left: 290px;
  width: 250px;
}
.why-col-3 {
  position: absolute;
  top: 0;
  right: 0px;
  width: 460px;
}
.why-col-4 {
  position: absolute;
  top: 0;
  left: 0px;
  width: 480px;
}
.why-col-1 p,
.why-col-2 p,
.why-col-3 p,
.why-col-4 p {
  font-size: 18px;
  font-weight: 500;
}
/* SVG initial state */
.svg-overlay line,
.svg-overlay circle,
.svg-overlay path {
  opacity: 0.01;
  transition: opacity 1s ease;
}

/* When section is visible */
.why-section.is-visible .svg-overlay line,
.why-section.is-visible .svg-overlay circle,
.why-section.is-visible .svg-overlay path {
  opacity: 1;
}

.svg-overlay line:nth-of-type(1),
.svg-overlay circle:nth-of-type(1),
.svg-overlay path:nth-of-type(1) {
  transition-delay: 0.1s;
}

.svg-overlay line:nth-of-type(2),
.svg-overlay circle:nth-of-type(2),
.svg-overlay path:nth-of-type(2) {
  transition-delay: 0.3s;
}

.svg-overlay line:nth-of-type(3),
.svg-overlay circle:nth-of-type(3),
.svg-overlay path:nth-of-type(3) {
  transition-delay: 0.5s;
}

.svg-overlay line:nth-of-type(4),
.svg-overlay circle:nth-of-type(4) {
  transition-delay: 0.7s;
}

.why-section {
  position: relative;
  /* min-height: 100vh; */
  /* background: url("images/project-showcase.jpg") center/cover no-repeat; */
  /* background-image: url("images/why-p-new-bg-1.png"); */
  background-image: url("images/wpgbgnew.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: #fff;
  /* overflow: hidden; */
  padding: 100px 80px 200px 80px;
  /* width: 100%; */
  /* height: 100vh; */
  height: auto;
}
.wpg {
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
}
.wpg .common-box {
  position: relative !important;
}
.common-box img {
  opacity: 0.3;
  width: 200px;
}
.why-container {
  max-width: 1600px;
  position: relative;
  margin: auto;
}
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(34, 44, 79, 0.3) 20%,
    #222c4f 80%
  );
  z-index: 1;
}
.point-container {
  margin-top: 100px;
  position: relative;
  width: 100%;
}
.why-row {
  display: flex;
  position: relative !important;
  top: 150px;
  height: 200px;
  gap: 3rem;
  /* justify-content: start; */
}
.top-row {
  /* margin-top: 300px; */
  position: relative;
}

.why-row-2 {
  display: flex;
  justify-content: center;
  align-items: start;
  gap: 150px;
  position: relative !important;
  top: 150px;
}

.why-col {
  /* padding-left: 100px; */
  text-align: right !important;
}

.z-2 {
  z-index: 2;
}

.wpg-head .subtitle {
  font-size: 31px;
  letter-spacing: 2px;
  font-weight: 400;
}
.wpg-head .title {
  font-size: clamp(40px, 6vw, 84px);
  font-weight: 800;
  line-height: 0.6;
  text-align: end;
}

.wpg-head {
  width: max-content;
  margin-top: 50px;
}
.wpg-head .subtitle2 {
  font-size: 31px;
  opacity: 0.9;
  text-align: end;
  font-weight: 400;
}

/* Center plot */
.center-plot {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.center-plot img {
  width: min(480px, 90%);
  transform: rotate(-15deg);
}

.needs-validation .form-control::placeholder,
.needs-validation .form-control {
  font-size: 12px !important;
  font-weight: 400 !important;
}

/* SVG Lines */
.lines-svg {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.draw-line {
  stroke: rgba(255, 255, 255, 0.7);
  stroke-width: 2;
  fill: none;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: draw 1.8s ease forwards;
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

/* Labels */
.label {
  position: absolute;
  font-size: 24px;
  /* letter-spacing: 1px; */
  line-height: 1;
  z-index: 3;
  font-weight: 600;
}

.label.left.top {
  top: 49%;
  left: 0%;
}

.label.right.top {
  top: 22%;
  right: 27%;
}

.label.right.middle {
  top: 44%;
  right: 12%;
}

/* Bottom points */
/* .points {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  z-index: 3;
} */

.point {
  margin-bottom: 20px;
}

.num {
  display: block;
  font-size: 60px;
  font-weight: 700;
  color: #9acd32;
  line-height: 1;
}

@media(max-width:1520px){
  .h-nav-links{gap: 10px;}
}
@media (max-width: 1400px) {
  .h-nav-links a{font-size: 15px;}
}

@media (max-width: 1200px) {
  .why-col-1,
  .why-col-2,
  .why-col-3,
  .why-col-4 {
    width: unset;
  }
}

/* Responsive */
@media (max-width: 992px) {
  .label {
    display: none;
  }
  #why-paulsn svg {
    display: none;
  }
  .point-container {
    margin-top: 0;
  }
  .center-plot img {
    transform: rotate(0deg);
  }

  .points {
    position: static;
    margin-top: 0px;
  }
  .why-col-1 {
    position: relative;
    right: 0;
  }
  .why-col-2 {
    position: relative;
    left: 0;
    top: 0;
  }
  .why-row {
    height: 100%;
  }
  .why-row-2 {
    gap: 3rem;
    height: auto;
  }
  .why-col-1,
  .why-col-2,
  .why-col-3,
  .why-col-4 {
    position: relative;
  }
  .why-section {
    height: auto;
  }
  .why-col-1,
  .why-col-3 {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .why-col-1 p,
  .why-col-3 p {
    text-align: center;
  }

  /* .top-row {
    margin-top: 50px;
  } */
}
@media (max-width: 698px) {
  .why-row,
  .why-row-2 {
    flex-direction: column;
    /* gap: 60px; */
    gap: 0;
  }
  .why-col-1 {
    right: 0 !important;
  }
}

/* ====================================  why-paulsn end ===================================== */

/* ==================================== SAFETY & VALUE BUILDING start ===================================== */
.safety-value-building {
  padding: 80px 20px;
  background-color: var(--bg-color);
}
.spec-wrapper {
  display: flex;
  max-width: 1600px;
  margin: auto;
  /* min-height: 100vh; */
}

/* LEFT IMAGE */
.spec-left {
  /* flex: 1;
  margin: auto; */
  max-width: 600px;
  max-width: 500px;
}

.spec-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spec-right .fade-wrapper {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}

.spec-right .fade-wrapper.fade-out {
  opacity: 0;
  transform: translateY(15px);
  -webkit-transform: translateY(15px);
  -moz-transform: translateY(15px);
  -ms-transform: translateY(15px);
  -o-transform: translateY(15px);
}

/* RIGHT CONTENT */
.spec-right {
  flex: 1;
  /* padding: 40px; */
  display: flex;
  flex-direction: column;
  position: relative;
  background-color: var(--bg-white);
}

.heading {
  color: #8b1d2c;
  font-size: 28px;
  margin-bottom: 20px;
}

.spec-content {
  flex: 1;
  /* background: #f6e9d7; */
  overflow: hidden;
  padding: 40px;
}

/* .spec-header  {
  display: flex;
  align-items: center;
  gap: 12px;
} */
.spec-header h3 {
  display: block;
  margin: 15px 0;
  color: var(--header-color);
  font-size: 32px;
  font-weight: 800;
}
.spec-header img {
  width: 100px;
}

.spec-body {
  margin-top: 15px;
  max-height: 300px;
  overflow-y: auto;
  padding-right: 10px;
}

.spec-body ul {
  display: block !important;
  padding-left: 20px;
  list-style: disc !important;
  display: list-item;
}

.spec-body li {
  margin-bottom: 12px;
  line-height: 1.5;
}

.spec-body ul li {
  display: flex;
  align-items: start;
  font-size: 18px;
}
.spec-body ul li i {
  margin-right: 8px;
  color: var(--number-red);
  transform: rotate(320deg);
  font-size: 16px;
}
#para {
  font-size: 20px;
  color: var(--para);
  font-weight: 500;
}
/* #content ul {
  list-style: none;
  padding-left: 0;
}

#content li::before {
  content: "•";
  color: #2b7cff;
  font-weight: bold;
  font-size: 22px;
  margin-right: 8px;
} */
/* NAV BUTTONS */
.nav-buttons {
  display: flex;
  margin-top: 20px;
  gap: 20px;
  /* padding:0px 40px; */
  position: absolute;
  right: 20px;
  /* top: 40px; */
  top: 0px;
}

.nav-buttons button {
  background: var(--number-red);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  width: 40px;
  font-size: 14px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.nav-buttons i {
  font-weight: 600;
  font-size: 20px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .spec-wrapper {
    flex-direction: column;
  }

  .spec-left {
    height: 400px;
    max-width: 100%;
  }
  .spec-left img {
    object-fit: cover;
  }
  .spec-body {
    max-height: 200px;
  }
}

/* ====================================  SAFETY & VALUE BUILDING end ===================================== */

/* ======================================================================================= */

.location {
  background-image: url("images/location-bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  padding: 10px 20px 150px 20px;
  height: auto;
}

.location-content {
  max-width: 1200px;
  margin: auto;
}

.acc-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.acc-box {
  background-color: var(--bg-white);
  width: 500px;
  height: fit-content;
  /* margin-top: 100px; */
  margin-top: 50px;
  border-radius: 30px;
  padding: 40px 40px;
  position: relative;
  z-index: 2;
  /*box-shadow: var(--primary) 0px 30px 60px -12px, var(--primary) 0px 18px 36px -18px;
  */
  border: 1px solid #c6c9dd;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}

.location .accordion-body ul li {
  list-style-type: none;
  margin-bottom: 10px;
  font-weight: 500;
  color: var(--para);
  font-size: 18px;
}
.location .accordion-body ul li:last-child {
  margin-bottom: 0px;
}

.accordion-body ul li strong {
  color: #000;
}

.location .accordion-body ul {
  padding: 0;
  margin-bottom: 0;
}

.location .accordion-body {
  padding-top: 10px;
  padding-bottom: 20px;
}

.location .accordion-item {
  border: none !important;
  margin: 0 !important;
}

.location .accordion-header {
  border-bottom: 1px solid var(--border);
  outline: none;
}

.location .accordion-header button {
  font-size: 24px !important;
  font-weight: 600;
}

.location .accordion-body {
  border-bottom: 1px solid var(--border);
  max-height: 300px;
  overflow: auto;
  scrollbar-width: thin;
}

.location .accordion-button:not(.collapsed) {
  background-color: transparent !important;
  color: var(--number-red) !important;
  font-weight: 800;
}
.accordion-button:not(.collapsed) {
  box-shadow: none !important;
}
/* .accordion-header:not(.collapsed){border-bottom: none;}
.accordion-button:not(.collapsed){border-bottom: none;} */
.location .accordion-button:focus {
  outline: none !important;
  box-shadow: none !important;
}

.location .accordion-button::after {
  content: "+" !important;
  font-size: 1.25rem;
  background-image: none !important;
  transform: none !important;
}

.location .accordion-button:not(.collapsed)::after {
  content: "−" !important;
  transform: none;
}

/* .bg-shadow{position: absolute;
  bottom: -14px;
  width: 90%;
  height: 15px;
  background-color: var(--primary);
  z-index: 0;
  border-radius: 4px 4px 15px 15px;
} */

/* .acc-box::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 50px;
  background-color: var(--primary);
  border-radius: 20px;
  z-index: 1 !important;
} */

.btn-2 {
  color: #fff;
  position: relative;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 8px 30px;
  display: block;
  width: max-content;
  background-color: var(--primary);
  margin-top: 30px;
  margin-left: 14px;
}

.location .accordion-button {
  padding: 13px !important;
}

.title-5 {
  text-align: center;
  position: relative;
  padding: 80px 20px 50px 20px;
}

.title-5 h1 {
  font-size: 90px;
  font-weight: 300;
  color: var(--header-color);
  line-height: 1;
  margin: 0;
}

.title-5 h2 {
  margin-top: 10px;
  color: var(--header-color);
  font-size: 44px;
  font-weight: 800;
}

.title-5::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -86px;
  width: 100%;
  height: 150px;
  background: linear-gradient(
    to top,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 1)
  );
  pointer-events: none;
}

.yt-btn-container {
  display: flex;
  align-items: center;
  gap: 80px;
  /* justify-content: space-between; */
  margin-top: 70px;
}

.yt-btn-1,
.yt-btn-2 {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 40px 50px;
  border-radius: 30px;
  background-image: url("images/lifestyle-05.jpg");
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 500px;
  z-index: 1;
  color: var(--bg-white);
  font-weight: bolder;
  cursor: pointer;
}

.yt-btn-1 h4,
.yt-btn-2 h4 {
  font-weight: 800;
}

.yt-icon img {
  width: 80px;
  height: 80px;
  cursor: pointer;
}

.overlaye {
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--overlay-color) !important;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  z-index: -1;
  opacity: 0.9;
}

@media (max-width: 1300px) {
  .yt-btn-1,
  .yt-btn-2 {
    gap: 20px;
    padding: 40px 50px;
    width: 100%;
    margin: auto;
  }

  .yt-btn-container {
    gap: 10px;
  }

  .location {
    padding: 50px 20px;
  }
}

@media (max-width: 950px) {
  .yt-btn-1,
  .yt-btn-2 {
    gap: 10px;
    padding: 30px 30px;
    width: 100%;
    margin: auto;
    border-radius: 20px;
  }

  .yt-btn-1 h4,
  .yt-btn-2 h4 {
    font-weight: 800;
    font-size: 18px;
  }

  .yt-btn-1 span,
  .yt-btn-2 span {
    font-weight: 800;
    font-size: 14px;
  }

  .yt-icon img {
    width: 40px;
    height: 40px;
  }

  .yt-btn-container {
    gap: 20px;
  }

  .acc-container {
    grid-template-columns: 1fr;
  }

  /* .yt-btn-container{flex-direction: column;} */
  /* .acc-box {
    margin: auto;
  } */
  .acc-box {
    margin-top: 0;
  }

  .location {
    padding: 50px 20px;
  }

  .title-5 {
    padding: 40px 20px 0px 20px;
  }

  .overlaye {
    border-radius: 20px;
  }
}

@media (max-width: 650px) {
  .yt-btn-container {
    flex-direction: column;
  }

  .acc-box {
    width: 100%;
  }
}

/* ================================================================================= */

.faq-header h1 {
  font-size: 90px;
  font-weight: 300;
  color: var(--header-color);
}

.faq-subtitle {
  /* line-height: 30px; */
  line-height: 1.74;
  font-weight: 500;
  /* color: var(--para); */
  color: var(--header-color);
  font-size: 18px;
  margin-bottom: 10px;
}

#paulson .accordion-body {
  font-size: 18px;
  font-family: "Poppins";
  color: var(--header-color);
  font-weight: 400;
  padding-top: 0;
}

/* #paulson .accordion-button {
  font-size: 28px;
  font-family: "Poppins";
  line-height: 1.352;
  font-weight: bold;
} */
/* 
    .faq-header h1 {
      font-weight: 500;
      letter-spacing: 1px;
      color: #2f3b52;
    }

    .faq-subtitle {
      font-size: 15px;
      color: #6c757d;
    } */

.nav-tabs {
  border-bottom: none;
  justify-content: center;
  margin-top: 30px;
}

.nav-tabs .nav-link {
  border: none;
  font-weight: 600;
  color: #7a7a7a;
  padding: 10px 30px;
  font-family: "Poppins";
  font-size: 18px;
}

.nav-tabs .nav-link.active {
  background-color: var(--primary) !important;
  color: var(--bg-white) !important;
  transition: all.3s;
}

.nav-tabs .nav-link.active {
  background: #1f2d4d;
  color: #fff;
  border-radius: 3px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  transition: all.3s;
  -webkit-transition: all.3s;
  -moz-transition: all.3s;
  -ms-transition: all.3s;
  -o-transition: all.3s;
}
#faqTabs {
  border: none;
}
.tab-divider {
  height: 2px;
  background: #cfd6b7;
  margin-top: -2px;
  max-width: 900px;
  margin: auto;
}

.accordion-item {
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.accordion-button {
  font-weight: 600;
  color: #2f3b52;
  background: #fff;
  align-items: start !important;
}

.accordion-button:not(.collapsed) {
  background: #fff;
  color: #2f3b52;
  box-shadow: none;
}

.accordion-button::after {
  background-size: 14px;
}

.faq-card {
  border: 2px solid #d1d1d1;
  border-radius: 10px;
  padding: 40px 40px;
  text-align: center;
  height: fit-content;
}

.faq-card h4 {
  font-weight: 700;
  color: var(--secondary);
}

.faq-card p {
  font-size: 15px;
  color: var(--secondary);
  font-weight: 500;
  margin: 15px 0 60px;
  font-family: "Poppins";
  line-height: 1.8;
}

.chat-icon img {
  width: 70px;
  height: 70px;
}

.btn-enquire {
  color: #fff;
  position: relative;
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 2px;
  padding: 10px 30px;
  display: block;
  width: 90%;
  font-weight: 600;
  background-color: var(--primary) !important;
  margin: auto;
  font-family: "poppins";
}

.faq-card h4 span {
  font-size: 28px;
  font-weight: 800;
}

.faq-card h4 {
  font-family: "Poppins";
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -1px;
}

.nav-link:hover {
  color: unset !important;
}

a:hover {
  color: var(--bg-white) !important;
}

.btn-enquire:hover {
  background: #152038;
}
/* #paulson {
  max-width: 1100px;
  margin: auto;
} */
#paulson .accordion-item {
  border: 2px solid #d1d1d1;
}
#paulson .accordion-body {
  padding: 0px 40px 30px 40px;
  /* border: 1px solid #d1d1d1; */
}
#paulson .accordion-button {
  padding: 18px 40px 18px 40px;
}

.accordion-button:focus {
  outline: none !important;
  box-shadow: none !important;
}

#paulson .accordion-button:not(.collapsed) {
  background-color: transparent !important;
  color: var(--secondary) !important;
  font-weight: 800;
  padding-top: 30px;
  border-bottom: none !important;
}

#paulson .accordion-button {
  font-size: 24px;
  font-weight: 600;
  color: var(--secondary);
  font-family: "Poppins";
  line-height: 1.352;
  font-weight: bold;
  /* border: 1px solid #d1d1d1 !important;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px; */
}

#paulson .accordion-button:focus {
  outline: none !important;
  box-shadow: none !important;
}

#paulson .accordion-button::after {
  content: "+" !important;
  font-size: 2.25rem !important;
  background-image: none !important;
  transform: none !important;
  font-weight: 400 !important;
}

#paulson .accordion-button:not(.collapsed)::after {
  content: "−" !important;
  transform: none;
}
/* #oragadam {
  max-width: 1100px;
  margin: auto;
} */

#oragadam .accordion-body {
  font-size: 18px;
  font-family: "Poppins";
  color: var(--header-color);
  font-weight: 400;
  padding-top: 0;
}

#oragadam .accordion-item {
  border: 2px solid #d1d1d1;
}
#oragadam .accordion-body {
  padding: 0px 40px 30px 40px;
  /* border: 1px solid #d1d1d1; */
}
#oragadam .accordion-button {
  padding: 18px 40px 18px 40px;
}
#oragadam .accordion-button:not(.collapsed) {
  background-color: transparent !important;
  color: var(--secondary) !important;
  font-weight: 800;
}
#oragadam .accordion-button:not(.collapsed) {
  background-color: transparent !important;
  color: var(--secondary) !important;
  font-weight: 800;
  padding-top: 30px;
  border-bottom: none !important;
}
#oragadam .accordion-button {
  font-size: 24px;
  font-weight: 600;
  color: var(--secondary);
  font-family: "Poppins";
  line-height: 1.352;
  font-weight: bold;
}

#oragadam .accordion-button:focus {
  outline: none !important;
  box-shadow: none !important;
}

#oragadam .accordion-button::after {
  content: "+" !important;
  font-size: 2.25rem !important;
  background-image: none !important;
  transform: none !important;
  font-weight: 400 !important;
}

#oragadam .accordion-button:not(.collapsed)::after {
  content: "−" !important;
  transform: none;
}

@media (max-width: 767px) {
  .faq-card {
    margin-top: 30px;
  }

  .banner-actions a {
    text-align: center;
  }
}

@media (max-width: 1076px) and (min-width: 993px) {
  .why-col-2 {
    left: 187px;
  }
}

@media (max-width: 370px) and (min-width: 350px) {
  .wpg-head {
    width: 100%;
  }
}

@media (max-width: 942px) and (min-width: 900px) {
  .slide-btn a {
    font-size: 13px;
  }
}

@media (max-width: 1100px) and (min-width: 901px) {
  .oragadam-edge img {
    /* height: auto; */
  }
}

@media (max-width: 1640px) and (min-width: 600px) {
  .gradient {
    bottom: 0;
    height: auto;
  }

  @media (max-width: 400px) and (max-width: 450px) {
  }

  .newsliderchange {
    height: auto;
  }
}
/* ================================================================================================= */

.investor-section {
  min-height: 100vh;
  background:
    /* linear-gradient(to bottom, rgba(16, 28, 64, 0.65), rgba(16, 28, 64, 0.95)), */ url("images/cta.jpg.jpeg")
    center/cover no-repeat;
  padding: 80px 0;
  position: relative;
}

.inv-content {
  z-index: 1;
  margin: auto;
}

.investor-section::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 510px;
  bottom: 0;
  left: 0;
  background: linear-gradient(to bottom, #222c4f1f, var(--primary));
  pointer-events: none;
  z-index: 0;
}

.foot-title {
  font-size: 7.5rem;
  font-weight: 700;
  color: var(--bg-white);
  margin-top: 180px;
}

.foot-sub-title {
  font-size: 2.5rem;
  font-weight: 800;
  opacity: 0.9;
}

.foot-description {
  margin: 20px 0 40px;
  /* max-width: 690px; */
  line-height: 30px;
  font-weight: 500;
  color: var(--bg-white);
  font-size: 18px;
  text-align: center;
}

.form-label {
  font-size: 0.75rem;
  letter-spacing: 1px;
  opacity: 0.7;
}

.custom-input {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  padding: 12px;
}

.custom-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.custom-input:focus {
  background: transparent;
  color: #fff;
  border-color: #fff;
  box-shadow: none;
}

.submit-btn {
  background-color: #c72c4d;
  color: #fff;
  border-radius: 0;
  font-weight: 600;
  letter-spacing: 1px;
}

.submit-btn:hover {
  background-color: #a8233f;
}

/* Mobile spacing */
@media (max-width: 576px) {
  .description {
    font-size: 0.85rem;
  }
}

/* ======================================================================================================== */
.input-box {
  background-color: var(--primary);
  border: 1px solid var(--overlay-color);
  padding: 10px 0px;
  border-radius: 5px;
  transition: all 0.3s;
  position: relative;
  height: -webkit-fill-available;
}

.form-label {
  color: #fff !important;
  font-size: 16px !important;
  font-weight: 600;
  margin: 0 !important;
}

.input-box:focus-within .form-label {
  opacity: 1 !important;
}

.form-control {
  background-color: var(--primary) !important;
  border: none !important;
  outline: none !important;
  color: #8f8fae !important;
  padding: 4px 0px 10px 0px !important;
  font-size: 18px !important;
  font-weight: 600 !important;
}

.form-control:focus {
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
}

.input-box:focus-within {
  border: 1px solid #fff;
  transition: all 0.3s;
}

.input-box {
  width: 100%;
  padding: 10px 20px;
  color: #69698b !important;
}

.form-box {
  max-width: 800px !important;
  margin: auto;
}

.form-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.form-select {
  background-color: var(--primary) !important;
  border: none !important;
  color: #8f8fae !important;
  padding: 10px 0px !important;
}

.form-select:focus {
  box-shadow: none !important;
}

input::placeholder {
  color: #8f8fae !important;
}

textarea::placeholder {
  color: #8f8fae !important;
}

textarea {
  color: #8f8fae !important;
}

.btn-6 {
  padding: 11px 30px;
  background-color: var(--number-red);
  border: none;
  transition: all 0.3s;
  font-size: 14px;
}

.btn-6:hover {
  background-color: #c12554;
  transition: all 0.3s;
}

.invalid-feedback {
  position: absolute;
  top: -24px;
  left: 0;
}

.form-select.is-invalid:not([multiple]):not([size]),
.form-select.is-invalid:not([multiple])[size="1"],
.was-validated .form-select:invalid:not([multiple]):not([size]),
.was-validated .form-select:invalid:not([multiple])[size="1"] {
  background-image: none !important;
}

.form-select {
  background-image: none !important;
}

/* ================================================================================================== */

/* Section */
.project-hero {
  position: relative;
  background:
    linear-gradient(rgba(15, 25, 55, 0.85), rgba(15, 25, 55, 0.85)),
    url("images/footer-02.jpg") center/cover no-repeat;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #e6ebf5;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.divider {
  width: 1400px !important;
  height: 1px;
  margin: 0px auto;
  /* centers horizontally */
  background: #b1b8d442;
  z-index: 1;
}

/* Center content */
.hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  z-index: 1;
}

/* Top label */
.brand {
  display: block;
  /* letter-spacing: 4px; */
  font-size: 28px;
  font-weight: bold;
  opacity: 0.9;
  /* margin-bottom: 12px; */
  color: var(--primary-light);
}

/* Main title */
.project-title {
  font-size: 64px;
  font-weight: 300;
  /* letter-spacing: 3px; */
  margin-bottom: 28px;
  color: var(--primary-light);
}

.project-title span {
  font-weight: 200;
}

/* Subheading */
.site-label {
  font-size: 18px;
  letter-spacing: 3px;
  margin-bottom: 14px;
  color: #d1d6e8;
  font-weight: bolder;
}

/* Paragraph */
.site-desc {
  font-size: 16px;
  line-height: 1.8;
  color: #d1d6e8;
  margin-bottom: 36px;
  font-weight: 500;
}

/* Button */
.btn-map {
  display: inline-block;
  padding: 12px 25px;
  background: var(--number-red);
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-map:hover {
  background: #c12554;
}

/* Footer */
/* .hero-footer {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  opacity: 0.75;
} */
.hero-footer {
  width: 1400px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin: 0 auto;
  padding: 30px 20px;
  border-top: 1px solid var(--primary-light);
  font-size: 18px;
  color: var(--primary-light);
  position: relative;
}

.designer img {
  width: 30px;
  height: 30px;
  margin-left: 6px;
}

.hero-footer p {
  z-index: 1;
  font-size: 16px;
}

.project-hero::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 400px;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0),
    var(--primary)
  );
  pointer-events: none;
  z-index: 0;
}

.project-hero::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 400px;
  top: 0;
  left: 0;
  background: linear-gradient(to top, rgba(255, 255, 255, 0), var(--primary));
  pointer-events: none;
  z-index: 0;
}

/* enquiry form  */

.enquiry-modal {
  /* max-width: 420px; */
  background: #fff;
  padding: 30px;
  /* border-radius: 4px; */
  position: relative;
  /* margin: 60px auto; */
}

.enquiry-modal h2 {
  font-weight: 800;
  letter-spacing: 1px;
  color: #2d355c;
  margin-bottom: 25px;
}
.modal-header h2 {
  font-weight: 800;
  letter-spacing: 1px;
  /* color: #2d355c; */
  /* margin-bottom: 25px; */
  color: var(--bg-color);
}
.btn-close:focus {
  box-shadow: none !important;
}

/* .close-btn{
      position:absolute;
      top:15px;
      right:15px;
      width:34px;
      height:34px;
      border:1px solid #777;
      border-radius:50%;
      display:flex;
      align-items:center;
      justify-content:center;
      cursor:pointer;
      font-size:18px;
      color:#555;
    } */
.enco {
  display: inline-flex;
  flex: 1 0;
}
.enquiry-modal .form-control,
.enquiry-modal .form-select {
  border-radius: 6px;
  padding: 12px 14px !important;
  border: 1px solid #d9dfea;
  font-size: 14px !important;
  margin-bottom: 16px;
}

.form-control::placeholder {
  color: #3b4280;
}

.form-select {
  color: #3b4280;
}

.consent {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 20px;
}

.consent input {
  margin-right: 8px;
  transform: translateY(2px);
}
form .encol input,
form .encol select {
  padding: 10px !important;
  font-size: 16px !important;
}

.btn-submit {
  background: #3b4066;
  color: #fff;
  padding: 8px 14px;
  border: none;
  font-weight: 600;
  border-radius: 6px;
  letter-spacing: 0.5px;
}

.btn-submit:hover {
  background: #2f3456;
}

.modal-header {
  border-bottom: none !important;
}
.checkbox span {
  font-size: 14px;
}

/* ========================================  modal style       ================================================= */

#EnquireModal .modal-content {
  background-color: var(--primary);
  padding: 30px !important;
}
#EnquireModal .btn-submit {
  background-color: var(--number-red);
}
#EnquireModal label {
  color: var(--bg-white);
}
#EnquireModal .encol:not(.checkbox) {
  border-bottom: 1px solid #9191b9a5 !important;
}
#EnquireModal .modal-dialog {
  max-width: 1000px !important;
}
#EnquireForm .form-label {
  text-transform: uppercase;
}

#siteBookingModal .modal-content {
  background-color: var(--primary);
  padding: 30px !important;
}
#siteBookingModal .btn-submit {
  background-color: var(--number-red);
}
#siteBookingModal label {
  color: var(--bg-white);
}
#siteBookingModal .encol:not(.checkbox) {
  border-bottom: 1px solid #9191b9a5 !important;
}

#siteBookingModal .form-label {
  text-transform: uppercase;
}
input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1); /* white icon */
  cursor: pointer;
  font-size: 18px;
}

#DBrochureModal .modal-content {
  background-color: var(--primary);
  padding: 30px !important;
}
#DBrochureModal .btn-submit {
  background-color: var(--number-red);
}
#DBrochureModal label {
  color: var(--bg-white);
}
#DBrochureModal .encol:not(.checkbox) {
  border-bottom: 1px solid #9191b9a5 !important;
}

#DBrochureModal .form-label {
  text-transform: uppercase;
}

button.btn-close {
  filter: brightness(0) invert(1);
}

/* ========================= thank you page ===================== */

.tq-main {
  background: linear-gradient(to bottom, #ffffff 0%, #e1e8ed 100%);
  height: 100%;
  margin: 0;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* container */
.thankyou-container {
  width: 100%;
}

/* card */
.thankyou-card {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 250px auto 50px !important;
}

/* body */
.thankyou-body {
  padding: 30px;
  text-align: center;
}

.thankyou-body h1 {
  font-family: "Kaushan Script", cursive;
  font-size: 4em;
  letter-spacing: 3px;
  color: var(--secondary);
  margin: 0 0 20px;
}

.thankyou-body p {
  margin: 0;
  font-size: 1.3em;
  color: #aaa;
  font-family: "Source Sans Pro", sans-serif;
  letter-spacing: 1px;
}

/* button */
.btn-home {
  color: #fff;
  background: var(--secondary);
  border: none;
  padding: 10px 50px;
  margin: 30px 0;
  border-radius: 30px;
  text-transform: capitalize;
  /* box-shadow: 0 10px 16px 1px rgba(174, 199, 251, 1); */
  cursor: pointer;
}

/* footer */
.thankyou-footer {
  margin-top: auto;
  background: #d7e6fe;
  padding: 6px;
  text-align: center;
}

.thankyou-footer p {
  margin: 0;
  padding: 4px;
  color: #5892ff;
  font-family: "Source Sans Pro", sans-serif;
  letter-spacing: 1px;
}

.thankyou-footer p a {
  text-decoration: none;
  color: #5892ff;
  font-weight: 600;
}

/* responsive */
@media (min-width: 360px) {
  .thankyou-body h1 {
    font-size: 4.5em;
  }
  .btn-home {
    margin-bottom: 20px;
  }
}

@media (min-width: 600px) {
  .thankyou-container {
    max-width: 1000px;
    margin: 0 auto;
  }

  .thankyou-card {
    height: initial;
    max-width: 620px;
    margin: 50px auto 0;
    /* box-shadow: 4px 8px 40px 8px rgba(88, 146, 255, 0.2); */
  }
}

@media (max-width: 480px) {
  .enquiry-modal {
    margin: 20px;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .project-title {
    font-size: 40px;
  }

  .site-desc {
    font-size: 15px;
  }

  .hero-footer {
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }
}

/* ================================================ RESPONSIVE ================================================================================ */

/*  ==== lifstyle === */

@media (max-width: 1580px) {
  .lifestyle-content {
    padding-left: 15px;
  }

  .lifestyle h1 {
    padding-left: 15px;
  }

  /*  ==== dfl === */
  .dfl h1 {
    padding-right: 15px;
  }

  .dfl-content {
    padding-right: 15px;
  }
}

@media (max-width: 1402px) {
  .hero-footer {
    width: 100%;
  }

  .divider {
    width: 100% !important;
  }
}

@media (max-width: 1402px) {
.dfl-added-content{
  grid-template-columns: 1fr 1fr;
}
}



/* @media (min-width: 1200px) {
  .modal-dialog {
    max-width: 800px !important;
  }
} */

@media (max-width: 1200px) {
  /*  ==== lifstyle === */

  .sv .title-6 h1 {
    font-size: 70px;
  }
  .title-5::after {
    height: 60px;
  }
  .spec-header h3 {
    font-size: 36px;
  }

  .lifestyle-content {
    padding-left: 15px;
  }

  .lifestyle h1 {
    padding-left: 15px;
    font-size: 70px;
  }

  .lifestyle-content h2,
  .project-showcase .title-2 h2,
  .title-4 h2,
  .title-5 h2,
  .logo-sub-title {
    font-size: 36px;
  }

  .feature h3 {
    font-size: 44px;
  }

  /*  ==== dfl === */

  .dfl h1 {
    padding-right: 15px;
    font-size: 70px;
  }

  .dfl-content {
    padding-right: 15px;
  }

  .dfl-content h2 {
    font-size: 36px;
  }

  /*  ==== showcase === */

  .project-showcase {
    padding: 60px 20px;
  }

  /*  ==== masterplan  === */
  .masterplan .title-3 h1,
  .title-4 h1,
  .title-5 h1,
  .faq-header h1 {
    font-size: 70px;
  }

  /* #header.bg-nav .h-navbar {
  padding: 8px 34px;
} */
  .foot-title {
    font-size: 6.5rem;
    margin-top: 50px;
  }
}

@media (max-width: 992px) {
  .foot-title {
    font-size: 4.5rem;
    margin-top: 50px;
  }

  .foot-sub-title {
    font-size: 1.5rem;
  }

  .foot-description {
    margin: 10px 0 30px;
  }
  .wpg-logo{display: none;}
}

/* RESPONSIVE */
@media (max-width: 900px) {
  /*  ==== lifstyle === */

  .dfl-added-content{
  grid-template-columns: 1fr;
}

  .lifestyle h1 {
    font-size: 60px;
  }

  .lifestyle-container {
    grid-template-columns: 1fr;
  }

  .lifestyle-media {
    max-height: 480px;
  }

  /* .dfl-media {
    max-height: 480px;
  } */

  .lifestyle-media img {
    height: 400px;
  }

  .lifestyle-media {
    height: 100%;
  }

  .lifestyle {
    padding: 230px 10px 40px 10px;
  }

  .lifestyle-container {
    gap: 10px;
  }

  /*  ==== dfl === */

  .dfl-container {
    grid-template-columns: 1fr;
  }

  .dfl .intro {
    text-align: left;
  }

  .dfl h1 {
    text-align: left;
    margin-bottom: 30px;
    font-size: 60px;
  }

  .dfl-content h2 {
    text-align: left;
  }

  .dfl-media img {
    height: 400px;
  }

  .dfl-container {
    gap: 10px;
  }

  .dfl-media {
    height: 100%;
  }

  .dfl {
    padding: 50px 10px 40px 10px;
  }

  /*  ==== showcase === */

  .project-showcase {
    padding: 40px 20px;
  }

  /*  ==== showcase === */
  .masterplan .title-3 h1,
  .title-4 h1,
  .title-5 h1,
  .faq-header h1,
  .sv .title-6 h1 {
    font-size: 60px;
  }

  .masterplan-container {
    margin-top: 50px;
  }

  /*  ==== oragadam-edge === */

  .oragadam-edge img {
    height: 100%;
  }

  .form-box {
    padding: 0px 20px;
  }
}

/* MOBILE TWEAKS */
@media (max-width: 768px) {

  .hero video{
    scale: 1.3;
    margin-left: -120px;
    /* min-height: 400px; */
  }

  /*  ==== lifstyle === */
  .spec-header h3 {
    font-size: 28px;
  }
  .modal-slider img {
    max-height: 70vh;
  }

  .lifestyle-content h2,
  .project-showcase .title-2 h2,
  .title-4 h2,
  .title-5 h2,
  .logo-sub-title {
    margin-top: 0px;
    font-size: 28px;
  }

  .location-img {
    width: 20px !important;
  }

  .lifestyle h1,
  .masterplan .title-3 h1,
  .masterplan .title-3 h1,
  .title-4 h1,
  .title-5 h1,
  .faq-header h1,
  .sv .title-6 h1 {
    font-size: 48px;
  }

  .lifestyle .intro {
    margin: 10px 0 24px;
  }

  /*  ==== dfl === */

  .dfl h1 {
    font-size: 48px;
  }

  .dfl-content h2 {
    margin-top: 0px;
    font-size: 28px;
    text-align: left;
  }

  .dfl-content h2 {
    margin-top: 0px;
    font-size: 28px;
  }

  .dfl h1 {
    font-size: 48px;
  }

  .dfl .intro {
    margin: 10px 0 24px;
  }

  .project-showcase p {
    text-align: center;
  }

  .d-brochure {
    font-size: 12px;
  }

  .location .accordion-header button {
    font-size: 18px !important;
  }

  .location .accordion-body ul li {
    font-size: 16px;
  }

  .acc-box {
    padding: 20px 20px;
  }

  .faq .nav-tabs .nav-link {
    font-size: 14px;
    padding: 6px 15px;
  }

  #paulson .accordion-button,
  #oragadam .accordion-button {
    font-size: 18px;
  }

  .accordion-body {
    font-size: 15px;
  }

  .faq-card h4 span {
    font-size: 20px;
  }

  .faq-card h4 {
    font-size: 2rem;
  }

  .faq-card p {
    margin: 15px 0 20px;
  }

  .btn-enquire {
    font-size: 12px;
  }

  .oragadam-edge {
    padding: 50px 20px;
  }

  .form-box {
    max-width: 100% !important;
  }


  .lifestyle-slider-1 .slick-next, .dfl-gallery-1 .slick-next {
    right: 20px !important;
  }
.dfl-gallery-1 .slick-prev,.lifestyle-slider-1 .slick-prev{
left: 0%;
}


}

@media (max-width: 692px) {
  .form-row {
    flex-direction: column;
  }

  .foot-title {
    font-size: 3.5rem;
    margin-top: 30px;
  }

  .foot-sub-title {
    font-size: 1.2rem;
  }

  .foot-description {
    margin: 10px 0 10px;

    font-size: 16px;
    text-align: center;
    padding: 0 20px;
  }
}

@media (max-width: 550px) {
  /*  ==== lifstyle === */

  .spec-header h3 {
    font-size: 22px;
  }
  #para {
    font-size: 18px;
  }
  .spec-body ul li {
    font-size: 16px;
  }
  .lifestyle h1 {
    font-size: 32px;
    padding-left: 0;
  }

  .lifestyle-content h2,
  .project-showcase .title-2 h2,
  .title-4 h2,
  .title-5 h2,
  .logo-sub-title {
    font-size: 22px;
  }

  .lifestyle .intro,
  .masterplan .title-3 p,
  .faq-subtitle,
  .sv .title-6 p {
    line-height: 24px;
    font-size: 15px;
  }

  .feature h3 {
    font-size: 24px;
  }
    .dfl-added-content .feature h3 {
    font-size: 24px;
  }
  

  .feature strong {
    font-size: 14px;
  }

  .feature p {
    font-size: 14px;
  }

  /* 
  .lifestyle {
    padding: 230px 10px;
  } */

  .lifestyle-content {
    padding-left: 0px;
  }

  /*  ==== dfl === */

  .dfl h1 {
    font-size: 32px;
    padding-right: 0;
  }

  .dfl-content {
    padding-right: 15px;
  }

  .dfl-content h2 {
    font-size: 22px;
  }

  .dfl .intro {
    line-height: 24px;
    font-size: 15px;
  }

  .dfl-content {
    padding-left: 0px;
  }

  /*  ==== showcase === */

  .project-showcase p {
    line-height: 24px;
    font-size: 15px;
    text-align: center;
  }

  /*  ==== masterplan === */
  .masterplan .title-3 h1,
  .title-4 h1,
  .title-5 h1,
  .faq-header h1,
  .sv .title-6 h1 {
    font-size: 32px;
  }

  .btn-2 {
    font-size: 12px;
  }

  .hero-footer p {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .modal-slider {
    max-width: 100%;
  }

  .close-modal {
    font-size: 32px;
    top: 15px;
    right: 20px;
  }

  .location .accordion-header button {
    font-size: 18px !important;
    padding: 8px 8px;
  }

  .location .accordion-body ul li {
    font-size: 14px;
  }

  .acc-box {
    padding: 20px 15px;
  }

  .foot-title {
    font-size: 2.5rem;
  }

  .foot-sub-title {
    font-size: 1rem;
  }

  .foot-description {
    margin: 0px 0 10px;
    font-size: 14px;
  }

  .form-label {
    font-size: 14px !important;
  }

  .form-control {
    font-size: 16px !important;
  }

  .brand {
    font-size: 22px;
  }

  .project-title {
    font-size: 30px;
  }

  .site-label {
    font-size: 15px;
    margin-bottom: 4px;
  }

  .btn-6,
  .btn-map {
    font-size: 12px;
  }

  .enquiry-modal {
    padding: 5px;

    margin: 10px auto;
  }

  .slide-btn a {
    font-size: 11px;
    padding: 10px;
  }
  #plot-tooltip {
    width: fit-content;
  }

  .project-showcase .slick-prev,
  .project-showcase .slick-next {
    top: 30%;
  }
}

@media (max-width: 438px) and (min-width: 384px) {
  .projectshowcasemain {
    height: 300px;
  }

  .zoombutton a {
    top: 223px;
  }
}

@media (max-width: 510px) and (min-width: 438px) {
  .projectshowcasemain {
    height: 350px;
  }

  .zoombutton a {
    top: 269px;
  }

  .project-showcase .slick-prev,
  .project-showcase .slick-next {
    top: 30%;
  }
}

@media (max-width: 600px) and (min-width: 510px) {
  .projectshowcasemain {
    height: 375px;
  }

  .zoombutton a {
    top: 295px;
  }

  .projectshowcasemain img {
    height: 280px;
  }
  .gradient {
    display: none;
  }

  .project-showcase .slick-prev,
  .project-showcase .slick-next {
    top: 30%;
  }
}

@media (max-width: 380px) and (min-width: 350px) {
  .site-desc {
    max-width: 291px;
  }
}

@media (max-width: 1500px) and (min-width: 769px) {
  .hero-footer {
    justify-content: center;
    gap: 30px;
  }
}

@media (max-width: 550px) {
  .banner-top span {
    padding-bottom: 0px;
    width: 100%;
    text-align: center;
    display: block;
  }

  .banner-badge img {
    width: 40px;
  }

  .common-btn {
    right: -234px;
  }

  .common-btn a {
    font-size: 12px;
  }

  .banner-top {
    top: -188px;
    gap: 5px;
  }
}
