* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: "Batusa", sans-serif;
}

html {
  scroll-behavior: smooth;
}

:root {
  --primary-theme: #0f2819;
  --secondary-theme: #d7c49b;
  --text-white: #fff;
  --text-black: #000;
  --first-font: "Batusa", sans-serif;
}

.button {
  background-color: var(--secondary-theme);
  padding: 1em 3em;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  font-family: var(--first-font);
  font-size: 14px;
  display: inline-block;
}

.button:hover {
  color: #fff;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  appearance: none;
}

input:focus-visible {
  outline: none;
}

textarea:focus-visible {
  outline: none;
}

a {
  text-decoration: none !important;
}

ul {
  margin: 0px;
  padding: 0px;
}

li {
  list-style-type: none;
}

.container {
  max-width: 93%;
}

.subheading {
  font-family: var(--first-font);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.46px;
  margin-bottom: 30px;
  color: var(--secondary-theme);
}

.heading {
  font-family: var(--first-font);
  font-size: 30px;
  font-weight: 400;
  line-height: 50px;
  margin-bottom: 21px;
  position: relative;
  display: inline-block;
  display: flex;
  align-items: center;
}

.heading .line {
  width: 100px;
  height: 1px;
  margin-left: 30px;
  position: relative;
  display: inline-block;

  /* 👇 fade effect */
  background: linear-gradient(to right, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 1));
}

.heading .line::after {
  content: "";
  position: absolute;
  right: -7px;
  top: 50%;
  width: 6px;
  height: 6px;
  background: #000;
  border-radius: 50%;
  transform: translateY(-50%);
}

/* navbar css starts here*/

.header {
  padding: 38px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 13px;
  width: 100%;
  z-index: 999;
  transition: all 0.3s ease;
  /* Smooth transition */
}

/* Header when scrolled */
.header.scrolled {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 18px 80px;
  top: 0;
  align-items: center;
}

.header.scrolled .logo img {
  /* filter: invert(); */
}

.header.scrolled .enq_nav a {
  border-color: var(--text-black);
  color: var(--text-black);
}
.header .logo_light{
  display: block;
}
.header .logo_dark{
  display: none;
}
.header.scrolled .logo_light{
  display: none;
}
.header.scrolled .logo_dark{
  display: block;
}

/* Hamburger Lines */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hamburger div {
  width: 32px;
  height: 2px;
  background-color: var(--text-white);
  transition: background-color 0.3s ease;
}

.hamburger .ham_sec {
  width: 25px;
}

.header .logo {
  position: relative;
  display: inline-block;
}
.header .navbar-brand{
  display: inline-block;
  padding: 0;
  margin: 0;
}

.header.scrolled .logo::before {
  background: linear-gradient(to right,
      rgba(0, 0, 0, 0.01),
      rgba(0, 0, 0, 0.1),
      rgba(0, 0, 0, 0.3));
}

.header.scrolled .logo::after {
  background: linear-gradient(to right,
      rgba(0, 0, 0, 0.3),
      rgba(0, 0, 0, 0.1),
      rgba(0, 0, 0, 0.01));
}

.menu-btn {
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-white);
  transition: color 0.3s ease;
}

/* Hamburger lines when scrolled */
.hamburger.scrolled div {
  background-color: #333;
}

.navbar-brand img {
  max-width: 166px;
}

.enq_nav a {
  border: 1px solid #d7c49b;
  font-family: "Batusa", sans-serif;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.16px;
  text-transform: uppercase;
  color: var(--text-white);
  padding: 6px 16px;
  border-radius: 41px;
}

/* Sidebar Menu */
.sidebar {
  position: fixed;
  top: 0;
  left: -420px;
  width: 403px;
  height: 100dvh;
  background-color: #0f2819d6;
  transition: left 0.3s ease;
  z-index: 9999;
  /* overflow-y: scroll; */
  display: flex;
  flex-direction: column;
}

.sidebar.open {
  left: 0;
}

.sidebar .close-btn {
  position: absolute;
  top: 20px;
  left: 20px;
  background: none;
  border: none;
  color: #000;
  font-size: 30px;
  cursor: pointer;
  /* padding: 0px; */
  border-radius: 100%;
  transition: background-color 0.3s ease;
  border: 1px solid var(--text-white);
  color: var(--text-white);
  width: 37px;
  height: 37px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-items {
  list-style: none;
  padding-top: 45px;
  overflow-y: auto;
  flex: 1;
}

.menu-items li {
  border-bottom: 1px solid #777777;
  text-align: center;
}

.menu-items li:last-child {
  border: none;
}

.menu-items .nav-link {
  font-family: var(--first-font);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--text-white);
  padding: 26px 0;
}

.sidebar .side_nav_rera {
  background: #cfbc92;
  padding: 14px 0 13px;
  text-align: center;
  width: 100%;
}

.sidebar .side_nav_rera a {
  font-family: var(--first-font);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--text-black);
}

/* slider section css starts here */
.banner_section {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.banner_section .d-flex {
  height: 100%;
}

.banner_img_section {
  /* width: 90%; */
  position: relative;
}

.banner_right_section {
  /* width: 24%; */
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding: 40px; */
  /* height: 100vh; */
  /* position: relative; */
}

.banner_right_section img {
  height: 100vh;
}

.banner-img {
  height: 100vh;
  width: 100%;
  object-fit: cover;
}

/* Bootstrap override strongly */
.carousel-indicators {
  margin: 0;
}

.carousel-indicators [data-bs-target] {
  flex: 0 0 auto !important;
  /* THIS IS IMPORTANT */
  width: 100px !important;
  height: 70px !important;
  background: none !important;
  text-indent: 0;
}

/* Your thumbnails */
.custom-thumbnails {
  position: absolute;
  bottom: 20px;
  left: 69%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
}

/* Button */
.custom-thumbnails button {
  padding: 0;
  border: none;
  overflow: hidden;
  opacity: 0.7;
}

.custom-thumbnails button.active {
  opacity: 1;
  border: 2px solid #fff;
}

/* Image */
.custom-thumbnails img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* banner content css */
.content_banner {
  position: absolute;
  top: 21%;
  z-index: 9;
  left: 5%;
  width: 60%;
}

.content_banner h5 {
  font-size: 40px;
  letter-spacing: 0.6px;
  margin-bottom: 20px;
  color: var(--text-white);
}

.content_banner h5 span {
  text-transform: uppercase;
  color: var(--secondary-theme);
}

.content_banner p {
  font-family: "Bellota Text", sans-serif;
  color: var(--text-white);
  font-size: 20px;
  line-height: 32px;
  letter-spacing: 1px;
  font-weight: 400;
  width: 71%;
  margin-bottom: 0;
}

.content_banner p span {
  color: var(--secondary-theme);
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
}

.content_banner .ban_price {
  /* margin-top: 40px; */
  margin-top: 20px;
}

.content_banner .ban_price h6 {
  font-family: var(--first-font);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.5px;
  margin-bottom: 0;
  color: var(--text-white);
}

.content_banner .ban_price h6 b {
  font-size: 25px;
  font-weight: 400;
  color: var(--secondary-theme);
}

.content_banner .ban_price h6 span {
  color: var(--secondary-theme);
  font-size: 35px;
}

.content_banner .ban_price h6 small {
  font-size: 14px;
}

/* .banner_img_section::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgb(0 0 0 / 80%) 0%, rgb(0 0 0 / 62%) 45%, rgba(0, 0, 0, 0.2) 74%, rgba(0, 0, 0, 0) 75%);
} */

/* banner form*/
.main_banner .form_section {
  position: absolute;
  top: 22%;
  z-index: 9;
  right: 6%;
  width: 380px;
  background: var(--text-white);
  border-radius: 18px;
  padding: 27px;
}

.border-relative {
  position: relative;
}

.border-circle {
  position: absolute;
  top: 192px;
  left: 80%;
  width: 15%;
  height: 46%;
  border: 2px solid var(--secondary-theme);
  border-radius: 25px;
  z-index: 2;
  border-left: 0;
}

.main_banner .form_section h5 {
  font-family: var(--first-font);
  font-size: 20px;
  line-height: 32px;
  letter-spacing: 0.64px;
  margin-bottom: 10px;
}

.main_banner .form_section p {
  font-family: "Bellota Text", sans-serif;
  font-size: 13px;
  line-height: 19px;
  letter-spacing: 0.32px;
  margin-bottom: 5px;
}

.main_banner .form_section input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #4a0f1c;
  padding: 10px 0;
  color: var(--text-white);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.71px;
  font-family: var(--first-font);
  margin-bottom: 12px;
}

.main_banner .form_section .button {
  background: var(--primary-theme);
  border-radius: 9px;
  font-size: 12.38px;
  letter-spacing: 0.32px;
  padding: 10px;
  width: 100%;
}

/* overview section css starts here */
.overview_section {
  padding: 100px 0 60px;
  background: #f7f5ec;
  position: relative;
}

.overview_section p {
  font-family: "Bellota-text", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 0;
  width: 75%;
  color: #1a1a1a;
}

.overview_section .img_section {
  margin-top: 74px;
}

.overview_section::after {
  content: attr(data-name);
  font-size: 100px;
  position: absolute;
  letter-spacing: 9px;
  font-family: var(--first-font);
  color: #d7c49b;
  font-weight: 600;
  opacity: 0.1;
  text-transform: uppercase;
  right: 7px;
  writing-mode: sideways-lr;
  top: 42%;
  transform: translateY(-50%);
  height: 100%;
  text-align: center;
}

/* overview section css ends here */

/* invest section css starts here */
.invest_section {
  padding: 40px 0;
  background: url("../images/bg-ver.png") no-repeat;
  background-size: cover;
}

/* .invest_section ul{
  margin: 0;
  padding: 0;
  display: flex;
} */
/* .invest_section ul li{
  width: 25%;
} */
.invest_section h6 {
  font-family: var(--first-font);
  font-size: 40px;
  line-height: 50px;
  letter-spacing: 1px;
  margin-bottom: 15px;
  color: var(--secondary-theme);
}

.invest_section p {
  font-family: "Bellota-text", sans-serif;
  font-size: 13px;
  line-height: 22px;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 0px;
  text-transform: uppercase;
  color: var(--text-white);
}

.invest_section .border-right {
  position: relative;
  padding: 0px 15px;
}

.invest_section .border-right::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom,
      transparent,
      #fff 20%,
      #fff 80%,
      transparent);
}

/* invest section css ends here */

/* appre table section css starts here */
.appre_table {
  padding: 80px 0;
  background: #fbf9f5;
}

.appre_table p {
  font-family: var(--first-font);
  font-size: 22px;
  font-weight: 400;
  line-height: 50px;
  margin: 40px 0 0;
}

.stats-list {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 60px 0 0;
  list-style: none;
}

.stats-list li {
  width: 20%;
  text-align: center;
  margin-bottom: 30px;
}

.circle {
  --size: 120px;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  margin: auto;
  position: relative;
  background: conic-gradient(#1f6f3e calc(var(--value) * 1%), #ddd 0);
}

.circle::before {
  content: "";
  position: absolute;
  inset: 10px;
  background: #f8f9fa;
  border-radius: 50%;
}

.circle span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 600;
}

.circle.orange {
  background: conic-gradient(orange 0% 53%, #1f6f3e 55% 100%);
}

.stats-list p {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 400;
  font-family: var(--first-font);
  line-height: 30px;
  margin-bottom: 0;
}

/* appre table section css ends here */

/* chart section css starts here */
.chart_container {
  background: #0f2819;
  padding: 60px 0;
}

.main-dashboard {
  /* background-color: var(--dark-green); */
  /* max-width: 1100px; */
  margin: auto;
  padding: 40px;
  /* color: var(--text-color); */
  background: #0f2819 !important;
}

/* Tabs Styling */
.chart_container .tabs-container {
  display: flex;
  gap: 30px;
  margin-bottom: 60px;
}

.chart_container .tab {
  flex: 1;
  border: 1px solid var(--line-color);
  padding: 8px 0px;
  text-align: center;
  font-size: 17px;
  cursor: pointer;
  line-height: 30px;
  color: var(--text-white);
  border: 1px solid #d9c2911a;
  border-bottom: 0;
}

.chart_container .tab.active {
  background-color: #73674d;
  color: #fff;
  border: none;
}

.chart_container .tab span {
  font-size: 13px;
  opacity: 0.8;
}

/* Chart Area */
.chart-title {
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 50px;
  color: var(--text-white);
}
.chart-title span{
  display: block;
  font-size: 15px;
}

.chart-area {
  display: flex;
  height: 290px;
  position: relative;
}

.y-axis {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-right: 20px;
  font-size: 22px;
  color: #fff;
}

.grid-container {
  flex: 1;
  position: relative;
  /* border-bottom: 1px solid #BEBEBE; */
  border-right: 1px solid #bebebe;
  border-left: 1px solid #bebebe;
}

.grid-line {
  position: absolute;
  width: 100%;
  height: 1px;
  background: #bebebe;
}

/* Bars */
.bars-wrapper {
  display: flex;
  justify-content: space-evenly;
  height: 100%;
  align-items: flex-end;
  gap: 40px;
}

.chart_container .column {
  width: 55px;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.bar-stack {
  display: flex;
  flex-direction: column-reverse;
  width: 100%;
}

.seg {
  width: 100%;
  flex: 1;
  min-height: 10px;
  /* border-bottom: 1px solid #05140b; */
}

/* Exact Palette from Image */
.seg.s1 {
  background: #030d06;
}

.seg.s2 {
  background: #07170c;
}

.seg.s3 {
  background: #0c2415;
}

.seg.s4 {
  background: #11361e;
}

.seg.s5 {
  background: #154c29;
}

.seg.s6 {
  background: #1c7a3e;
}

.seg.s7 {
  background: #79d29b;
}

.seg.s8 {
  background: #b8e0c8;
}

.floating-label {
  position: absolute;
  right: -145px;
  top: 20px;
  width: 130px;
  font-size: 14px;
  color: var(--text-color);
  color: #d7c49b;
}

.floating-label.label_one {
  top: 95px;
}

.floating-label.label_two {
  top: 84%;
}

.x-label {
  position: absolute;
  top: 100%;
  width: 160px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  padding-top: 15px;
  font-size: 16px;
  color: #fff;
}

/* Legend & Source */
.chart-footer {
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.legend {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
}

.legend-box {
  width: 35px;
  height: 35px;
  background: linear-gradient(to top, #030d06, #b8e0c8);
}

.legend-text {
  font-size: 14px;
  line-height: 1.3;
}

.source {
  font-size: 12px;
  opacity: 0.7;
}

/* Previous styles remain, add these: */
.chart_container .d_tab_content {
  display: none;
}

.chart_container .d_tab_content.active {
  display: block;
}

/* Ensure font is "Playfair Display" or "Times New Roman" for the image look */
.main-dashboard {
  background-color: #05140b;
  /* font-family: "Times New Roman", serif; */
  padding: 0px;
  color: #d1c4b2;
}

.chart_container .tab {
  transition: background 0.3s;
}

.chart_container .tab:hover {
  /* background: rgba(125, 107, 83, 0.3); */
}

.chart_container .tabs {
  display: flex;
  gap: 35px;
}

.tab-btn-graph {
  padding: 10px 20px;
  cursor: pointer;
  border: none;
  background: transparent;
  border: 1px solid #d9c29147;
  border-bottom: none;
  color: #fff;
  font-size: 18px;
}

.tab-btn-graph.active {
  background: #73674d;
  color: #fff;
  border: none;
}

.tab-content-graph {
  display: none;
  margin-top: 20px;
}

.tab-content-graph.active {
  display: block;
}

/* chart section css ends here */

/* catchment area section css starts here*/
.catchment_area {
  padding: 80px 0 60px;
  background: url("../images/catchment-img.jpg") no-repeat;
  background-size: cover;
  overflow: hidden;
  position: relative;
}

.catchment_area::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  /* z-index: 8; */
  background: #0000004d;
}

.catchment_area .heading .line {
  width: 100px;
  height: 1px;
  margin-left: 30px;
  position: relative;
  display: inline-block;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0.1),
      rgb(255, 255, 255));
}

.catchment_area .heading .line::after {
  content: "";
  position: absolute;
  right: -7px;
  top: 50%;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  transform: translateY(-50%);
}

.catchment_area .layout {
  display: flex;
  gap: 30px;
  margin-top: 40px;
  align-items: flex-end;
  /* 🔥 ye important hai */
  position: relative;
}

.catchment_area .slider {
  width: 60%;
  overflow: hidden;
  /* 🔥 extra items hide */
}

.catchment_area .owl-stage {
  display: flex;
}

.catchment_area .item img {
  width: 100%;
}

.catchment_area .item img {
  height: 140px;
}

.catchment_area .owl-carousel {
  padding-bottom: 10px;
}

.catchment_area .slider {
  width: 60%;
  overflow: hidden;
  /* extra hide */
}

.catchment_area .owl-stage-outer {
  overflow: hidden;
}

.catchment_area .owl-carousel .item {
  padding: 0 5px;
}

.catchment_area .item img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

/* LEFT BIG CARD */
.catchment_area .featured {
  width: 40%;
  background: #7a6a4f;
  padding: 9px;
}

.catchment_area .featured img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.catchment_area .featured h3 {
  margin: 15px 0 0;
  font-size: 30px;
  font-weight: 400;
  color: var(--text-white);
  margin-bottom: 10px;
}

.catchment_area .featured h2 {
  margin: 10px 0 0;
  font-size: 25px;
  font-weight: 400;
  color: var(--text-white);
  margin-bottom: 10px;
}

.catchment_area .featured p {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-white);
  font-family: "Bellota-text", sans-serif;
}

/* RIGHT SLIDER */
.catchment_area .slider {
  width: 60%;
  /* position: relative; */
}

.catchment_area .item {
  position: relative;
  overflow: hidden;
}

.catchment_area .item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  filter: brightness(0.7);
}

.catchment_area .item::after {
  content: attr(data-title);
  position: absolute;
  top: 50%;
  left: 20%;
  font-size: 14px;
  color: var(--text-white);
  /* transform: translate(-50%, -50%); */
  width: 100%;
}

.catchment_area .owl-nav.disabled {
  display: none;
}

/* catchment area section css ends here*/

/* upcoming projects section css starts here*/
.upcoming_projects {
  padding: 80px 0 80px;
  background: url("../images/bg-ver.png") no-repeat;
  background-size: cover;
}

.upcoming_projects .heading .line {
  width: 100px;
  height: 1px;
  margin-left: 30px;
  position: relative;
  display: inline-block;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0.1),
      rgb(255, 255, 255));
}

.upcoming_projects .heading .line::after {
  content: "";
  position: absolute;
  right: -7px;
  top: 50%;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  transform: translateY(-50%);
}

.upcoming_projects .nav {
  gap: 30px;
}

.upcoming_projects .nav-tabs {
  border-bottom: none;
}

.upcoming_projects .nav-tabs .nav-link {
  margin-bottom: -1px;
  background: 0 0;
  border: 1px solid #d9c29147;
  border-bottom: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  font-size: var(--first-font);
  font-size: 24px;
  line-height: 30px;
  color: var(--text-white);
  padding: 10px 30px;
}

.upcoming_projects .nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  color: var(--text-white);
  background-color: #73674D;
  border: none;
}

.slider-wrapper {
  margin-top: 50px;
}

.owl-stage {
  display: flex;
}

.owl-carousel .item img {
  width: 100%;
  /* height: 420px; */
  object-fit: cover;
}

/* TOP RIGHT BADGE */
.badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #0d2b1f;
  color: #fff;
  padding: 13px 30px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;

}

/* BOTTOM OVERLAY */
.overlay {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 95%;
  padding: 12px 20px;
  background: #0f2819cc;
  color: #fff;
  margin: 0 12px 0px 12px;
}

/* TEXT STYLING */
.overlay h2 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 400;
}

.overlay p {
  margin: 4px 0;
  font-size: 14px;
  color: #dcdcdc;
  font-family: "Bellota-text", sans-serif;
  display: flex;
  align-items: center;
}
.overlay p img{
  max-width: 15px;
  filter: invert();
  margin-right: 5px;
}

/* CTA */
.overlay .cta {
  margin-top: 5px;
  display: inline-block;
  font-size: 16px;
  letter-spacing: 1px;
  color: #D7C49B;
  text-decoration: none;
}

.overlay .cta::after {
  content: " →";
}

.owl-dots {
  display: block !important;
}

.owl-dots {
  display: block !important;
  text-align: center;
  margin-top: 15px;
}

.owl-dot span {
  width: 10px;
  height: 10px;
  /* background: #ffffff !important; */
  display: block;
  border-radius: 50%;
}

.owl-carousel button.owl-dot {
  margin-left: 0px;
}

/* default dots */
.owl-dots {
  text-align: center;
  margin-top: 15px;

}

.slider .owl-dots {
  /* position: absolute;
  top: 59%;
  z-index: 99;
  right: 29%; */
  display: none !important;
}

.slider .owl-dot {
  background: transparent;
  border: 0;
}

.owl-dot span {
  width: 10px;
  height: 10px;
  background: #ccc;
  /* inactive color */
  display: block;
  border-radius: 50%;
  margin: 5px;
  transition: 0.3s;
}

/* active dot */
.owl-dot.active span {
  background: #000;
  /* active color */
  width: 12px;
  height: 12px;
}

.owl-dot.active span {
  background: #fff !important;
  /* transform: scale(1.1); */
}

/* upcoming projects section css ends here*/

/* location section css starts here */
.location_scetion {
  padding: 80px 0;
  background: #fbf9f5;
}

.location_scetion p {
  font-family: "Bellota-text", sans-serif;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 60px;
}

.location-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  height: 550px;
}

.location_middle_box {
  position: relative;
  text-align: center;
}

.location_g_right {
  width: 1px;
  height: 100%;
  background: var(--golden-color);
  background: linear-gradient(180deg,
      rgba(232, 216, 172, 0) 0%,
      rgba(168, 103, 2) 55%,
      rgba(232, 216, 172, 0.06) 100%);
  position: absolute;
  bottom: 0;
  left: -15px;
  transform: translateX(-50%);
  z-index: 99;
}

.location_g_left {
  width: 1px;
  height: 100%;
  background: var(--golden-color);
  background: linear-gradient(180deg,
      rgba(232, 216, 172, 0) 0%,
      rgba(168, 103, 2) 55%,
      rgba(232, 216, 172, 0.06) 100%);
  position: absolute;
  bottom: 0;
  right: -14px;
  transform: translateX(-50%);
  z-index: 99;
}

.location_small_box {
  text-align: end;
}

.location_right_small_box,
.location_right_small_box h3 {
  text-align: start !important;
}

.location_small_box h3,
.location_right_small_box h3 {
  color: #a86702;
  text-align: right;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0.5px;
  font-weight: 400;
  text-transform: capitalize;
  margin-bottom: 0;
}

.location_small_box p,
.location_right_small_box p {
  color: #000;
  font-size: 12px;
  font-weight: 400;
  line-height: 30px;
  text-transform: capitalize;
  margin-bottom: 0;
}

.location_left_main_box,
.location_right_main_box {
  display: flex;
  /* align-items: center; */
  flex-direction: column;
  height: 100%;
  justify-content: space-evenly;
}

.location_main_box {
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
  gap: 20px;
}

.location_left_content {
  justify-content: end;
}

.location_right_content {
  justify-content: start;
  margin-left: 2px;
}

.location_main_box .g_left_line,
.g_right_line {
  background: #c4944a;
  /* background: linear-gradient(260deg,rgba(232, 216, 172, 0) 0%, rgba(232, 216, 172, 1) 100%); */
  height: 1px;
  width: 70px;
  position: relative;
}

.location_main_box .g_left_line::before {
  content: " ";
  position: absolute;
  /* right: -5px; */
  left: 0%;
  top: 48%;
  transform: translateY(-50%) rotate(46deg);
  width: 5px;
  height: 5px;
  background: #c4944a;
  border-radius: 50%;
}

.g_right_line::before {
  content: " ";
  position: absolute;
  /* right: -5px; */
  right: 0%;
  top: 48%;
  transform: translateY(-50%) rotate(46deg);
  border-radius: 50%;
  width: 5px;
  height: 5px;
  background: #c4944a;
}

.button-box {
  margin-top: 108px;
}

/* location section css ends here */

/* gallery section css starts here */
/* SECTION */
.gallery-section {
  height: 100vh;
  /* scroll space */
  position: relative;
}

.gallery-section .heading {
  position: absolute;
  top: 70px;
  left: 60px;
  color: #fff;
  /* font-size: 28px; */
  /* font-weight: 400; */
  /* display: flex; */
  /* align-items: center; */
  gap: 15px;
  z-index: 9;
}

.gallery-section .heading .line {
  width: 100px;
  height: 1px;
  margin-left: 30px;
  position: relative;
  display: inline-block;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0.1),
      rgb(255, 255, 255));
}

.gallery-section .heading .line::after {
  content: "";
  position: absolute;
  right: -7px;
  top: 50%;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  transform: translateY(-50%);
}

/* WRAPPER */
.gallery-wrapper {
  position: sticky;
  /* top: 0;
  height: 100vh; */
 top: 66px;
    height: 89vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #000000;
}

.main-image{
  position: relative;
}

.main-image::before{
  content: "";
  position: absolute;
  background-color: #00000085;
  width: 100%;
  height: 100vh;
  top: 0;
  bottom: 0;
  z-index: 1;
}

/* MAIN IMAGE */
.main-image img {
  /* width: 100%; */
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  transition: 0.5s;
}

/* THUMBNAILS */
.thumbnails {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 99999;
}

.thumbnails img {
  width: 80px;
  height: 120px;
  object-fit: cover;
  opacity: 0.5;
  transition: 0.3s;
}

.thumbnails img.active {
  opacity: 1;
  transform: scale(1.1);
  border: 2px solid #fff;
}
.thumb-arrow {
  width: 80px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  background: rgba(0,0,0,0.5);
  transition: 0.3s;
}

.thumb-arrow:hover {
  background: rgba(255,255,255,0.2);
}

.thumb-arrow.up {
  margin-bottom: 10px;
}

.thumb-arrow.down {
  margin-top: 10px;
}

/* gallery section css ends here */

/* footer form section css starts here */
.contact-form {
  position: relative;
  width: 100%;
  padding: 80px 0;
  background-color: var(--primary-theme);
}

.contact-form .heading .line {
  width: 100px;
  height: 1px;
  margin-left: 30px;
  position: relative;
  display: inline-block;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.1), rgb(255, 255, 255));
}

.contact-form .heading .line::after {
  content: "";
  position: absolute;
  right: -7px;
  top: 50%;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  transform: translateY(-50%);
}

.contact-form p {
  font-family: "Bellota-text", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.5px;
  padding-top: 6px;
  color: var(--text-white);
  margin-bottom: 0;
  text-align: center;
}

.contact-form .form-box {
  background: #001f0d;
  width: 666px;
  padding: 20px;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  margin: 20px auto 0;
}

.contact-form .form-box .form-control {
  border: none;
  background: #0F2819 !important;
  width: 100%;
  height: 58px;
  padding: 10px;
  font-family: "Bellota-text", sans-serif;
  font-size: 16px;
  color: var(--text-white);
}

.contact-form .form-box .form-control::placeholder {
  color: #FFF !important;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.88px;
}

.contact_button .btn,
.contact_button .btn:hover,
.contact_button .btn:active {
  display: flex;
  width: 100%;
  height: 45px;
  justify-content: center;
  align-items: center;
  background-color: #73674D;
}

.contact_button .btn span {
  color: var(--text-white);
  font-family: var(--first-font);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.buiding_img {
  position: absolute;
  right: 20px;
  top: 13%;
  height: 80% !important;
  opacity: .8;
  width: 40%;
}

/* footer form section css ends here */

/* footer */
footer {
  background: #fbf9f5;
  padding: 50px 0;
}

footer p {
  color: #000;
  font-size: 14px;
  text-align: center;
  margin-bottom: 0px;
  line-height: 26px;
  letter-spacing: 0.1px;
}

footer .mobile-p a {
  color: #000;
  font-size: 14px;
  text-align: center;
  margin-bottom: 0px;
  line-height: 26px;
  letter-spacing: 0.1px;
}

/* modal css starts here */
.modal .btn-wrapper {
  position: relative;
  display: inline-block;
  margin: 30px auto 0;
  width: 100%;
}

.modal .btn-wrapper button {
  background: var(--primary-theme);
  color: var(--text-white);
  padding: 10px;
  border-radius: 9px;
  font-size: 12.38px;
  letter-spacing: 0.32px;
  border: none;
  font-family: var(--first-font);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.52px;
  cursor: pointer;
  text-transform: uppercase;
  width: 100%;
}

.modal .modal-header {
  border-color: var(--primary-theme);
  justify-content: center;
  position: relative;
}

.modal .modal-header .btn-close {
  position: absolute;
  right: 15px;
}

.modal .modal-header h6 {
  text-align: center;
  width: 100%;
}

.modal .modal-header h6 {
  font-family: var(--second-font);
  font-size: 25px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-align: center;
}

.modal input {
  border: none;
  border-radius: 0;
  border-bottom: 1px solid var(--primary-theme);
}

.modal input:focus {
  box-shadow: none;
  border-color: var(--primary-theme);
}

.mobile-section-footer {
  display: none;
}

.d_view{
  display: block;
}
.m_view{
  display: none;
}
.mobile-section-footer {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background: var(--primary-theme);
    color: var(--text-white);
    padding: 5px 0;
}
.fixedIcons {
    position: fixed;
    z-index: 999;
    bottom: 15px;
    padding: 5px;
    background: #FFFCF1;
    border-radius: 50%;
    animation: pulse 1.25s infinite cubic-bezier(0.66,0,0,1);
    box-shadow: 0 0 0 0 #29a71a;
}
.fixedIcons {
    &.whatsapp {
        left: 15px;
    }
}
.fixedIcons {
    &.phone {
        right: 15px;
        background: #d5e1da;
    }
}
.fixedIcons {
  img {
      width: 40px;
      padding: 5px;
  }
}
.contact-form .heading {
    line-height: unset;
    margin-bottom: 0;
    justify-content: center;
}
.slider .owl-carousel1 .owl-nav {
    position: absolute;
    bottom: 40%;
    right: 350px;
    display: flex;
    gap: 10px;
}
.slider .owl-carousel1 .owl-nav button {
    width: 44px;
    height: 44px;
    color: #1a1a1a !important;
    border-radius: 50%;
    border: 0 !important;
    font-size: 18px !important;
    background: #0000005c !important;
}
.slider .owl-carousel1 .owl-nav button img{
  filter: invert();
}

/* upcoming buttons */
.upcoming_projects .slider-wrapper .owl-carousel .owl-nav {
    position: absolute;
    top: 106%;
    right: 40%;
    display: flex;
    gap: 10px;
}
.upcoming_projects .slider-wrapper .owl-carousel .owl-nav button {
    width: 44px;
    height: 44px;
    color: #1A1A1A !important;
    border-radius: 50%;
    border: 0 !important;
    font-size: 18px !important;
    background: #fff !important; /* ADD THIS */
}

/* responsive css starts here */

@media (max-width: 1480px) {
  .header {
    padding: 12px 63px;
  }

  .header.scrolled {
    padding: 8px 63px;
    /* top: 0; */
    /* align-items: center; */
  }

  .content_banner {
    width: 41%;
  }

  .main_banner .form_section {
    top: 23%;
  }

  .border-circle {
    top: 152px;
    height: 60%;
  }

  .catchment_area .featured p {
    min-height: 72px;
  }

  .content_banner h5 {
    font-size: 30px;
    margin-bottom: 13px;
  }

  .content_banner p {
    font-size: 15px;
  }

  .content_banner .ban_price h6 {
    font-size: 18px;
  }

  .content_banner .ban_price {
    margin-top: 10px;
  }

  .content_banner .ban_price h6 span {
    font-size: 30px;
  }


}

@media(max-width:1440px) {
  .border-circle {
    top: 138px;
    height: 65%;
  }
}
@media(min-height:900px){
  .border-circle {
    top: 193px;
    height: 48%;
  }
}

@media (max-width: 1380px) {
  .content_banner {
    width: 47%;
  }

  .main_banner .form_section {
    top: 21%;
  }

  .border-circle {
    top: 110px;
    height: 72%;
  }

  .thumbnails img {
    width: 70px;
    height: 70px;
  }
}

@media(max-width:1280px) {
  .border-circle {
    top: 125px;
    height: 66%;
  }
}

@media (max-width: 767px) {
  .d_view{
    display: none;
  }
  .m_view{
    display: block;
  }

  .container {
    max-width: unset;
  }

  .header {
    padding: 20px 16px;
    top: 0;
  }

  .header.scrolled {
    padding: 12px 13px;
  }

  .header .logo::before {
    display: none;
  }

  .header .logo::after {
    display: none;
  }

  .navbar-brand {
    margin-right: 0;
  }

  .navbar-brand img {
    max-width: 135px;
    margin-left: 20px;
  }

  .hamburger div {
    width: 28px;
  }

  .hamburger .ham_sec {
    width: 18px;
  }

  .enq_nav a {
    font-size: 14px;
    letter-spacing: 0;
    padding: 4px 8px 4px 10px;
  }

  .sidebar {
    width: 100%;
    /* left: -433px; */
  }

  .subheading {
    font-size: 12px;
    margin-bottom: 20px;
  }

  .heading {
    font-size: 18px;
    line-height: 30px;
    display: inline-block;
    text-align: center;
  }
  .heading .line{
    width: 50px;
    height: 1px;
    margin-left: 10px;
    display: inline-block;
    top: -5px;
  }
  .upcoming_projects .heading .line{
    width: 50px;
    height: 1px;
    margin-left: 10px;
    display: inline-block;
    top: -5px;
  }
  .catchment_area .heading .line {
    width: 50px;
    height: 1px;
    margin-left: 10px;
    display: inline-block;
    top: -5px;
  }
  .gallery-section .heading .line {
    width: 50px;
    height: 1px;
    margin-left: 10px;
    display: inline-block;
    top: -5px;
  }
  .contact-form .heading .line {
    width: 50px;
    height: 1px;
    margin-left: 10px;
    display: inline-block;
    top: -5px;
  }

  /* banner */
  .banner_section {
    height: unset;
  }

  .banner_right_section{
    display: unset;
  }
  .banner_right_section img {
    height: unset;
    display: none;
  }

  .content_banner {
    display: none;
  }

  .main_banner .form_section {
    position: unset;
  }
  .form_section.m_view{
    background-image: url("../images/bg-ver.png");
    background-repeat: no-repeat;
    width: 100%;
    border-radius: 0;
    padding: 30px 25px;
  }
  .form_section.m_view .m_border{
    border: 1px solid #D7C49B;
    padding: 10px;
    border-radius: 18px;
  }
  .form_section.m_view .border-relative{
    background-color: #fff;
    padding: 20px;
    border-radius: 18px;
  }

  .banner-img {
    height: unset;
    /* min-height: 616px; */
  }
  .main_banner .form_section p {
    font-size: 11px;
    line-height: 19px;
  }

  .custom-thumbnails button.active {
    opacity: unset;
    border: 0;
  }

  .carousel-indicators [data-bs-target] {
      flex: unset !important;
      width: 30px !important;
      height: 3px !important;
      background: #fff !important;
      text-indent: 0;
      border-bottom: 0;
      border-top: 0;
  }
  .custom-thumbnails {
    bottom: 100px;
    left: 50%;
  }
  .custom-thumbnails img {
    display: none;
  }

  /* overview css */
  .overview_section {
    padding: 70px 0 60px;
  }
  .overview_section::after {
    display: none;
  }
  .overview_section p {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    width: 100%;
    text-align: justify;
  }
  .overview_section .img_section {
    margin-top: 30px;
  }

  .invest_section h6 {
    font-size: 25px;
    line-height: 30px;
    font-weight: 400;
  }

  .invest_section p {
    font-size: 12px;
    line-height: 16px;
    text-transform: capitalize;
  }
  .invest_section .border-right {
    margin-bottom: 25px;
  }

  /* appre table css */
  .appre_table p {
    font-size: 13px;
    line-height: 20px;
    margin: 30px 0 0;
  }

  /* catchment area css */

  .mobile-catchment .grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .mobile-catchment .card {
    background: #7a6a4f;
    padding: 6px;
    border-radius: 0;
  }
  .mobile-catchment .card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    margin-bottom: 10px;
  }
  .mobile-catchment .card h3 {
    font-size: 18px;
    margin: 5px 0;
    line-height: 30px;
    color: var(--text-white);
  }
  .mobile-catchment .card h4 {
    font-size: 14px;
    margin-bottom: 5px;
    line-height: 30px;
    color: var(--text-white);
  }
  .mobile-catchment .card p {
    font-size: 11px;
    line-height: 16px;
    color: var(--text-white);
  }
 
  /* commercial css */
  .stats-list {
    justify-content: center;
    margin-top: 40px;
  }
  .stats-list li {
    width: 33.3%;
  }
  .circle {
    --size: 95px;
  }

  /* chart section css */
  .main-dashboard{
    display: none;
  }
  .chart_container{
    padding: 40px 0;
  }

  .main-box .nav-tabs{
    border-bottom: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  .main-box .custom-tabs .nav-link {
    background: transparent;
    color: #ddd;
    border: 1px solid #aaa;
    /* margin-right: 5px; */
    font-size: 12px;
    border-radius: 0;
    border-bottom: 0;
  }

  .main-box .custom-tabs .nav-link.active {
    background: #73674D;
    color: #fff;
    border: 0;
  }

  /* Title */
  .main-box .title {
    font-size: 16px;
    margin: 30px 0;
    color: var(--text-white);
  }
  .main-box .title span{
    display: block;
    padding-top: 10px;
    font-size: 14px;
  }

  /* Sector */
  .main-box .sector p {
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--text-white);
  }

  .main-box .sector span {
    font-size: 14px;
    color: #D7C49B;
    letter-spacing: 1px;
  }

  /* Progress */
  .main-box .custom-progress {
    height: 10px;
    background: #e5e5e5;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 8px;
  }

  .main-box .custom-progress .progress-bar {
    background: #f4b400;
    border-radius: 20px;
  }

  /* Divider */
  hr {
      margin: 1.5rem 0;
      background-color: rgb(255 255 255);
      border: 0;
      opacity: 0.7;
  }
  .main-box .source_text{
    font-size: 10px;
    margin-bottom: 0;
    color: var(--text-white);
  }

  /* upcoming css */
  .upcoming_projects {
    padding: 60px 0 40px;
  }
  .upcoming_projects .nav-tabs .nav-link {
    font-size: 14px;
    line-height: 30px;
    padding: 10px 25px;
  }
  .upcoming_projects .nav {
    gap: 15px;
    justify-content: center;
  }
  .upcoming_projects .owl-carousel .item img {
    height: 330px;
    object-fit: cover;
  }
  .slider-wrapper {
    margin-top: 30px;
  }
  .overlay {
    width: 94%;
    padding: 25px 20px;
    margin: 0 0 25px 8px;
  }
  .overlay h2 {
    font-size: 14px;
  }
  .overlay p {
    margin: 4px 0;
    font-size: 10px;
  }
  .owl-carousel {
    padding: 20px 0;
  }

  .owl-carousel .owl-item .item {
    transform: scale(0.9);
  }

  .owl-carousel .owl-item.active.center .item {
    transform: scale(1.05); /* 🔥 thoda extra zoom */
  }
  .circle span{
    font-size: 12px;
  }

  /* location section css */
  .location_scetion {
    padding: 60px 0 40px;
  }
  .location_left_main_box .location_main_box {
    flex-direction: row-reverse !important;
  }

  .g_left_line {
    transform: rotate(90deg);
    margin-left: -24px;
    width: 85px !important;
    margin-top: 58px;
  }

  .location_right_main_box .g_right_line {
    transform: rotate(-90deg);
    margin-left: -22px;
    width: 85px !important;
    margin-top: 67px;
  }

  .location_small_box,
  .location_small_box h3 {
    text-align: left;
    font-size: 18px;
  }

  .location_main_box {
    justify-content: start;
    gap: 6px;

  }

  .location_right_small_box,
  .location_small_box {
    margin-left: -19px;
  }

  .location_left_main_box {
    margin-top: 30px;
  }

  .location_right_main_box {
    margin-top: 15px;
  }

  .location_right_main_box .location_main_box:last-child .g_right_line {
    visibility: hidden;
  }

  .location_right_main_box .location_main_box .g_right_line::after {
    content: " ";
    position: absolute;
    /* right: -5px; */
    left: 0%;
    top: 48%;
    transform: translateY(-50%) rotate(46deg);
    width: 5px;
    height: 5px;
    background: #e8d8ac;
  }

  .location_g_left {
    display: none;
  }
  .location_g_right {
    display: none;
  }
  .location_main_box .g_left_line::before {
    border-radius: 0;
  }
  .location_scetion p {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 20px;
  }

  /* footer form css */
  .contact-form {
    padding: 50px 0
  }
  .contact-form .form-box {
    background: #001f0d;
    width: 100%;
    margin-top: 40px;
    padding: 30px 15px;
    z-index: 99;
    position: relative;
  }
  .contact-form p {
    font-size: 14px;
    padding-top: 0;
    text-align: center;
  }
  .buiding_img {
    top: 22%;
    height: 30% !important;
  }
  .border-circle{
    display: none;
  }
  .invest_section .border-right::after{
    position: unset;
  }
  .invest_section .border_mob{
    /* border-right: 1px solid #fff;
    border-bottom: 1px solid #fff; */
    position: relative;
  }
  .invest_section .border_mob::after{
     content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;

    background: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.2),  /* top fade */
      rgba(255, 255, 255, 1)     /* bottom strong */
    );
  }
  .invest_section .border_mob1{
    position: relative;
  }
  .invest_section .border_mob1::before{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;

    background: linear-gradient(
      to right,
      rgba(255, 255, 255, 0.2),  /* left fade */
      rgba(255, 255, 255, 1)     /* right dark */
    );
  }
  .invest_section .border_mob2{
    position: relative;
  }
  .invest_section .border_mob2::before{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;

    background: linear-gradient(
      to right,
      rgba(255, 255, 255, 1),   /* left dark */
      rgba(255, 255, 255, 0)    /* right fade */
    );
  }
  .invest_section .border_mob3{
    position: relative;
  }
  .invest_section .border_mob3::before{
    content: "";
    position: absolute;
    bottom: 0;
    left: -1px;
    width: 1px;
    height: 100%;

     background: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 1),   /* top dark/strong */
      rgba(255, 255, 255, 0)    /* bottom fade */
    );
  }
  /* .invest_section .border_mob1{
    border-right: 1px solid #fff;
  }
  .invest_section .border_mob2{
    border-bottom: 1px solid #fff;
  } */
  .invest_section .mob_mt{
    margin-top: 25px;
  }
  .gallery-wrapper .thumbnails {
    top: unset;
    bottom: 10%;
    flex-direction: row;
    left: 2%;
  }
  .appre_table {
    padding: 60px 0;
    background: #fbf9f5;
  }
  .catchment_area{
    padding: 60px 0;
  }
  .mobile-section-footer {
    display: flex;
    gap: 0 5px;
    justify-content: space-around;
    z-index: 99;
  }
  .mobile-section-footer a{
    color: var(--text-white);
  }
  .upcoming_projects .slider-wrapper .owl-carousel .owl-nav {
    position: absolute;
    top: 94%;
    right: 40%;
    display: flex;
    gap: 10px;
  }
  .upcoming_projects .slider-wrapper .owl-carousel .owl-nav button {
    width: 34px;
    height: 34px;
    font-size: 18px !important;
  }


  .gallery-wrapper .thumbnails {
    top: unset;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: row;
    gap: 8px;
  }

  /* thumbnail size chhoti */
  .thumbnails img {
    width: 60px;
    height: 80px;
  }

  /* 🔥 arrows ko side me le aao */
  .thumb-arrow {
    position: absolute;
    top: -72%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgb(0 0 0 / 65%);
    border-radius: 50%;
    z-index: 999;
  }

  .thumb-arrow.up {
    left: 105px; /* left arrow */
    transform: rotate(
270deg);
    margin-bottom: 0;
  }

  .thumb-arrow.down {
    right: 125px; /* right arrow */
    transform: rotate(270deg);
    margin-top: 0;
  }

  /* arrow icon rotate kar do (optional agar same image use kar rahe ho) */
  .thumb-arrow.up img {
    transform: rotate(-90deg);
  }

  .thumb-arrow.down img {
    transform: rotate(90deg);
  }
  .upcoming_projects .overlay p img{
    max-width: 15px;
    height: 15px !important;
  }

}