/* Fonts  */




html,
body {
  width: 100%;
  overflow-x: hidden;
 
}

/* colours  */

:root {
  --primary: #D1B371;
  --secondary: #000000;
  --prim-font: #656565;
  --accent-color: #3498db;
  
}

/* Basic css */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
}
h1, h2, h3, h4, h5, h6{
  font-family: "Playfair", serif;
  text-transform: uppercase;
  color:var(--primary);
}
h1{
  font-size: calc(2.8rem + 0.5vw);
}
h2{
  font-size: calc(2.5rem + 0.5vw);
}
h3{
  font-size: calc(2.2rem + 0.5vw);
}
h4{
  font-size: calc(1.9rem + 0.5vw);
}
h5{
  font-size: calc(1.6rem + 0.5vw);
}
h6{
  font-size: calc(1.3rem + 0.5vw);
}
p {
  
  line-height: 1.7rem;
  font-size: 0.9rem;
  color: var(--prim-font);
  
}
ul{
  margin: 0px;
}
a{
  text-decoration: none!important;
}
.header-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  padding: 10px 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: auto;
}
.custom-nav-menu {
  list-style: none;
  display: flex;
  gap: 20px;
  position: relative;
}
.custom-nav-menu li {
  position: relative;
}
.custom-nav-menu li a.active{
  color:var(--primary);
  font-weight: 600;
}
.custom-nav-menu li a {
  text-decoration: none;
  color: #000000;
  transition: color 0.3s;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  font-weight: 500;
}
.custom-nav-menu li a:hover {
  color: var(--primary);
}
.custom-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  z-index: 800;
}
.custom-nav-menu li:hover > .custom-dropdown-menu {
  display: block;
}
.custom-dropdown-menu li {
  display: block;
  position: relative;
}
.custom-dropdown-menu li a {
  padding: 8px 13px;
  display: block;
  color: black;
}
.custom-dropdown-menu li a:hover {
  background: lightgray;
}
.custom-dropdown-menu .custom-dropdown-menu {
  left: 100%;
  top: 0;
}
.custom-nav-menu li:hover > .custom-dropdown-menu li:hover > .custom-dropdown-menu {
  display: block;
}
.social-icons {
  display: flex;
  gap: 15px;
}
.icon svg {
  width: 24px;
  height: 24px;
  fill: black;
  transition: fill 0.3s;
}
.icon:hover svg {
  fill: blue;
}
.custom-menu-toggle {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease;
}
/* .custom-menu-toggle:hover {
  transform: rotate(90deg);
} */
 .custom-menu-toggle img{
  width: 30px;
  height: 30px;

 }
 .custom-close-menu img{
  width: 30px;
  height: 30px;
 }
.custom-mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 250px;
  height: 100vh;
  background: white;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  transition: left 0.3s ease-in-out;
  z-index: 9999;
}
.custom-mobile-menu.active {
  left: 0;
}
.custom-mobile-menu ul {
  list-style: none;
  padding-top: 20px;
}
.custom-mobile-menu ul li {
  margin: 15px 0;
}
.custom-mobile-menu ul li a {
  text-decoration: none;
  color: black;
  font-size: 1rem;
}
.custom-close-menu {
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  display: block;
  margin-left: auto;
}
.head-sm{
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0px 20px;
  border-left: 1px solid #D6D6D6;
}
.head-sm a {
  margin: 0 10px;
}
.head-sm a img{
  width: 80%;
}
.logo img{
  width: 60%;
}
@media (max-width: 768px) {
  .custom-nav {
      display: none;
  }
  .custom-menu-toggle {
      display: block;
  }
}
.grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(4, 1fr);
  height: 100vh;
}
.grid-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-transform: uppercase;
  cursor: pointer;
  background-size: cover;
  background-position: center;
}
.grid-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  transition: background 0.3s ease-in-out;
}
.grid-item:hover .overlay {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
}
.grid-item .overlay span{
  font-size: 1.4rem;
  font-weight: 500;
  font-style: italic;
  clip-path: polygon(15% 0, 100% 0%, 85% 100%, 0% 100%);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  padding: 0.5rem 1.5rem;
  display: block;
  position: relative;
  color:#fff;
}
.grid-item .overlay span::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 2px; /* Border thickness */
  height: 100%;
  background: var(--primary); /* Border color */

  clip-path: polygon(15% 0, 100% 0%, 85% 100%, 0% 100%);
}
.grid-item .description {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  font-size: 0.9rem;
  max-width: 80%;
  color:#FFFFFF;
  text-transform: capitalize;
}
.grid-item:hover .description {
  opacity: 1;
}

/* Grid Layout Adjustments */
.item1 { background-image: url('../new-img/our-story.jpg'); }
.item2 { background-image: url('../new-img/India.jpg'); }
.item3 { background-image: url('../new-img/Global2.jpg'); }
.item4 { background-image: url('../new-img/residential-1.jpg'); }
.item5 { background-image: url('../new-img/Dubai.jpg'); grid-row: span 3; }
.item6 { background-image: url('../img/connect.jpg'); grid-row: span 1; }

@media (max-width: 768px) {
  .grid-container {
      grid-template-columns: 1fr;
      grid-template-rows: auto;
  }
  .item5 { grid-row: span 1; }
}
.awrd-section{
  width: 100%;
  height: auto;
  padding: 50px 40px;
  background-image: url('../img/awards-bg-01.jpg');
  background-position: center;
  background-size: cover;

}
.award-sub-title{
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
}
.award-sub-title span{
  color: var(--primary);
}
.award-cont-sec{
  padding-top: 40px;
}
.award-cont-sec h3{
  text-align: left;
  margin-bottom: 8px;
  line-height: 2.2rem;
}
.ft-sec{
  width:100%;
  min-height:40px;
  background-color: var(--secondary);
  padding: 5px 40px;
  
}
.ft-sec ul{
  list-style: none;
  padding-left: 0px;
  
}
.ft-sec h6{
  margin-top: 30px;
  font-size: 1.5rem;
}

.ft-sec ul li{
  margin:8px 0px;
  padding-left: 0px;
}
.ft-link a{
  color: #dddddd;
  border-right: 1px solid #fff;
  font-size: 0.9rem;
}
.ft-link a:last-child{
  border-right: none;
}
.cp-rght{
  width: 100%;
  text-align: center;
  color: #dddddd;
  font-size: 0.9rem;
  padding: 8px 40px;
  background-color: #1a1a1a;
}
.india-map-sec{
  width: 100%;
  height: auto;
  padding: 50px 40px;
  background-image: url('../img/world-map.png');
  background-position: center;
  background-size: cover;
}
.bcd-logo-xl{
  width: 30%;
  margin: 15px auto;
  opacity: 0.5;
}
.bcd-logo-xl img{
  width: 100%;
}
.counter-list{
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.counter-wr{
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 60px;
}
.counter-list li{
  width: 50%;
  padding: 2rem;
  text-align: center;
}
.count-det{
  font-family: "Playfair", serif;
  text-transform: uppercase;
  font-size: 1.2rem;
  line-height: 1.3rem;
}
.digit-inner-bx{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.counter-list li:first-child{
  border-right: 1px solid #E2DADA;
  border-bottom: 1px solid #E2DADA;
}
.counter-list li:last-child{
  border-left: 1px solid #E2DADA;
  border-top: 1px solid #E2DADA;
}
.bcd-num-sec{
  padding-top: 40px;
}
.num-bx{
   margin-top: 60px;
}

.india-grid {
  display: grid;
  grid-template-rows: repeat(7, auto);
  width: 100%;
  margin: auto;
}
.india-box {
  
  color: white;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 150px;
}
.india-box h2 {
  margin-bottom: 5px;
  font-size: 1.5em;
}
.india-box p {
  font-size: 0.9rem;
  line-height: 1.2rem;
}

.india-row-1 { grid-template-columns: 1fr; }
.india-row-2 { grid-template-columns: repeat(3, 1fr); }
.india-row-3 { grid-template-columns: repeat(2, 1fr); }
.india-row-4, .india-row-5, .india-row-6, .india-row-7 { grid-template-columns: 1fr; }

.india-row {
  display: grid;
}
.india-row-1 .india-box{
  min-height: 450px;
}
.india-row-2 .india-box{
  min-height: 300px;
}
.india-row-3 .india-box{
  min-height: 350px;
}
.india-grd-cnt{
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.india-grd-cnt h2{
  text-transform: uppercase;
  font-size: 2.2rem;
  font-weight: 500;
}
.india-grd-cnt h3{
  text-transform: uppercase;
  font-size: 1.9rem;
  font-weight: 500;
}
.india-grd-cnt p{
  color:#fff;
  max-width: 75%;
}
.prim-btn{
  padding:0.4rem 1rem;
  background-color: var(--primary);
  color:#fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor:pointer;
  text-transform: uppercase;
  font-weight:500;
  transition: 0.3s all ease-in-out;
}
.prim-btn:hover{
  background-color:#caa34e;
}
.prim-btn-brd{
  padding:0.4rem 1rem;
  background-color: transparent;
  color:var(--primary);
  display: inline-flex;
  transform: translateX(-50%);
  position: relative;
  left: 50%;
  align-items: center;
  justify-content: center;
  cursor:pointer;
  text-transform: uppercase;
  font-weight:500;
  transition: 0.3s all ease-in-out;
  border: 1px solid var(--primary);
}
.india-row-4 .india-box, .india-row-5 .india-box, .india-row-6 .india-box, .india-row-7 .india-box{
  min-height: 545px;
}
.inner-banner{
  width:100%;
  height:auto;
  min-height: 400px;
  background-position: center;
  background-size: cover;
 
}
.inner-banner-ov{
  width: 100%;
  height: 100%;
  min-height: 400px;
  padding:50px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: rgb(0,0,0);
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%); 
  flex-grow: 1;
}
.inner-banner-ov h2{
  font-weight: 500;
  color:#fff;
  text-transform: capitalize;
}
.inner-banner-ov p{
  color: #fff;
  max-width: 50%;
  text-align: center;
}
.bas-sec{
  width: 100%;
  height: auto;
  padding: 50px 40px;
}
.b-list{
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  text-align: left;
}
.b-list li{
  width: 48%;
  margin: 10px 0px;
  padding-left: 2%;
  position: relative;
  color:var(--prim-font)
}
.b-list li:before{
  content: url('../img/check_circle.svg');
  position: absolute;
  top: 6%;
  left:-10px;
}
.b-list-xl{
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  text-align: left;
}
.b-list-xl li{
  width: 100%;
  margin: 10px 0px;
  padding-left: 1%;
  position: relative;
  color:var(--prim-font);
  font-weight: 600;
}
.b-list-xl li:before{
  content: url('../img/check_circle.svg');
  position: absolute;
  top: 6%;
  left:-10px;
}
.b-list-single-line{
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
}
.b-list-single-line li{
  width: 46%;
  margin: 10px 15px;
  padding:1.3rem 2rem 1.3rem 2.5rem;
  position: relative;
  color:#fff;
  background-color:var(--primary);
  border-radius: 60px;
  line-height: 1.3rem;
  
}
.b-list-single-line li:before{
  content: url('../img/check_circle-white.svg');
  position: absolute;
  top: 40%;
  left:25px;
  transform: translateX(-50%);
}
.bas-img-plcehld{
  width: 70%;
  margin: 10px auto;
}
.grey-sec{
  width:100%;
  height:auto;
  padding: 50px 40px;
  background-color: #F5F5F5;
}
.grey-sec h3{
  text-align: center;
}
.mid-width{
  width:70%;
  margin: 10px auto;
  text-align: center;
}
.cmt{
  margin-top: 30px;
}
.bas-he b{
  color:#656565;
}
.bas-he{
  margin-top: 10px;
}
.vrtln{
  border-right:1px solid #D4D4D4;
}
.init-list{
  padding-top: 40px;
}
.init-list h5{
  text-align: center;
}
.init-img{
  width: 50%;
  margin: 10px auto;
}
.init-box{
  text-align: center;
  margin-bottom: 15px;
}
.bas-tit{
  font-weight: 600;
  font-size: 1.2rem;
  line-height: 1.5rem;
  color:#656565;
}
.dec-sec{
  width: 100%;
  height: 100%;
  background-image: url('../img/decorative.png');
  background-position: center;
  background-size: cover;
}
.tour-sec{
  width: 100%;
  height: 600px;
  padding: 130px 30px 0px 30px;
  background-image: url('../img/religious-bg.jpg');
  background-position: center;
  background-size: cover;
  margin-bottom: 250px;
}
.tour-sec h3{
  text-align: center;
}
.tour-sec p{
  color: #fff;
}
.init{
  width: 100%;
  height: auto;
  border-radius: 10px;
  overflow: hidden;
  background-color: #F5F5F5;
  margin-top: 50px;
  margin-bottom: -200px;
  position: relative;
}
.init-head{
  width: 100%;
  height: auto;
  padding: 1rem 1.3rem;
  background-color: var(--primary);
  color: #fff;
  font-family: "Playfair", serif;
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  
}
.init-box{
  padding: 25px 0px;
  margin: 35px 0px;
  
}
.brd-line{
  border-right: 1px solid #D9D9D9;
}
.init-box .init-sub-tit{
  line-height: 1.1rem;
  font-family: "Montserrat", sans-serif;
  color: var(--prim-font);
  text-transform: capitalize;
  font-weight: 600;
  font-size: 1.1rem;
  margin: 5px 0px;
}
.init-box img{
  width: 55%;
}
.rel-india{
  width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: center;
}
.rel-india-left img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.rel-india-left{
  width: 50%;
}
.rel-india-right{
  width: 50%;
  background-color: #F5F5F5;
  padding: 2rem 1.5rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}
.sec-list{
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  text-align: left;
}
.sec-list li{
  width: 98%;
  margin: 10px 0px;
  padding-left: 5%;
  position: relative;
  color:var(--prim-font)
}
.sec-list li:before{
  content: url('../img/round-angle.svg');
  position: absolute;
  top: 6%;
  left:0px;
}
.sar-bharath{
  width:100%;
  height: auto;
  padding: 50px 30px;
  background-image: url('../img/sarva-bharath-bg.jpg');
  background-position: center;
  background-size: cover;
}
.sar-bharath h5{
  color: #fff;
  line-height: 1.8rem;
}

.sar-bharath .sec-list li{
  padding-left: 8%!important;
  color: #fff;
}
.invest-opp{
  width:100%;
  height:auto;
  padding: 50px 30px;
  background-image: url('../img/invest-opp.jpg');
  background-position: center;
  background-size: cover;
}
.invest-opp h3{
  text-align: center;
}
.invest-opp .b-list li{
  width: 100%;
  color: #fff;
}
.inv-num-bx{
  width:100%;
  min-height:120px;
  padding: 1.3rem;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction:column;
  margin-bottom: 30px;
}
.inv-numb{
  font-size: 2.2rem;
  font-weight:600;
  color: #fff;
}
.inv-num-tit{
  color: #fff;
  font-family: "Playfair", serif;
  text-transform: uppercase;
  font-size:1.1rem;
  text-align: center;
  line-height: 1.1rem;
  font-weight: 500;
}
.phase-sec{
  width:100%;
  height:auto;
  padding: 50px 30px;
  background-image: url('../img/phase-bg.jpg');
  background-position: center;
  background-size: cover;
}
.ph-bx-tit{
  background-color: var(--primary);
  color: #fff;
  padding: 0.5rem 1.5rem;
  font-weight: 600;
  font-size:1.3rem;
}
.phase-list{
  list-style: none;
}
.phase-list li{
  margin: 10px 0px;
  color: var(--prim-font);
  font-weight: 600;
}
.phase-bx{
  margin-bottom: 40px;
}
.profile-tit-bx{
  position: relative;
  display: block;
  width: 50%;
  text-align: center;
  padding: 100px 0px 100px 0px;
  float: left;
}
.profile-tit-bx::before{
  content: url('../img/backdrop.png');
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: -1;
  opacity: 0.7;
 
}
.fl-right{
  float:right;
  width: 47%;
  margin-left: 2%;
  margin-bottom: 2%;
}
.amr-singh-bh-sec .fl-right{
  width: 30%;
}
.amr-singh-bh-sec .profile-tit-bx{
  width: 68%;
}
.prof-cont-sec{
  width: 100%;
  float: none;
}
.prof-tag-line{
  color: var(--primary);
  font-family: "Playfair", serif;
  font-style: italic;
  font-size: 2rem;
  line-height: 2.5rem;
  margin-top: 60px;
  width: 100%;
  display: block;
  text-align: center;
  font-weight: 600;
}
.profile-tit-bx h2{
  color:#000;
  line-height: 1.5rem;
}
.prof-desg{
  font-weight: 600;
}
.prof-cont-sec h6{
  color:var(--prim-font);
  margin-top:30px;
}
.prof-cont-sec h6 span{
  font-family: "Playfair", serif;
  text-transform: uppercase;
  color:var(--primary);
  font-size: calc(1.9rem + 0.5vw);
}
.half-wid{
  width: 50%;
  float: left;
}

.cpd{
  padding-right: 1%;
}
.clear-float{
  float: clear;
}
.cpdl{
  padding-left: 1%;
}
.slider-sec{
  position: relative;
}
.left-btn{
  width: 50px;
  height: 50px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
  position: absolute;
  top: 50%;
  left:-25px;
  z-index: 99;
  border-radius:50%;
  cursor: pointer;
}
.left-btn img{
  width:100%;
}
.right-btn{
  width: 50px;
  height: 50px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
  position: absolute;
  top: 50%;
  right:-25px;
  z-index: 99;
  border-radius:50%;
  cursor: pointer;
}
.right-btn img{
  width:100%;
}
.grey-sec{
  width:100%;
  height:auto;
  padding:50px 30px;
  background-color:#F3F3F3;
}
.prof-cont{
  width: 100%;
  padding-top: 100px;
}
.prof-cont h3{
  text-align: left;
}
.prof-list{
  list-style: none;
  color: var(--prim-font);
  font-size: 0.9rem;
  margin-top: 30px;
}
.prof-list li{
  margin: 15px 0px;
  padding-left: 5%;
  position:relative;
  line-height: 1.6rem;
}
.prof-list li:before{
  content:url('../img/angle-gold.svg');
  position: absolute;
  top: 0px;
  left: 0px;
}
.tag-line{
  color: var(--primary);
  font-family: "Playfair", serif;
  font-style: italic;
  font-size: 1.5rem;
  line-height: 2.5rem;
  width: 100%;
  display: block;
  text-align: center;
  font-weight: 600;
}
.edu-desc-sec{
  background-color: #000;
  padding: 40px 30px;
}
.ed-txt{
  font-size:4.5rem;
  font-family: "Playfair", serif;
  text-transform: uppercase;
  color:var(--primary);
  font-weight: 600;
  line-height: 50px;
  margin-top:45px;
}
.edu-subtit{
  color:#fff;
  letter-spacing:0.02rem;
}
.edu-city .b-list li{
  width:100%;
  padding-left: 5%;
  color:#ffff;
}
.amenities-sec{
  width:100%;
  height:auto;
  padding:50px 30px;
  background-color:var(--primary);
}
.amenities-sec h3{
  text-align: center;
  color:#fff;
}
.amen-tit{
  width: 100%;
  font-size: 1.2rem;
  font-weight: 500;
  margin: 10px 0px;
  line-height: 1.3rem;
  text-align: center!important;
}
.amenities-box{
  width: 60%;
  padding-left: auto;
  padding-right: auto;
  text-align:center;
  padding: 0px 8px;
  margin-bottom:30px;
}
.amenities-box img{
  width: 70%;
}
.edu-live-sec{
  width:100%;
  height:auto;
  padding: 40px 30px;
  background-image: url('../img/stud-bg-01.jpg');
  background-position: center;
  background-size:cover;
}
.edu-live-sec h2{
  text-align: center;
  margin-bottom: 0px;
}
.h-width{
  width:60%;
  height: auto;
  margin: 5px auto;
  text-align: center;
}
.left-btn2{
  width: 50px;
  height: 50px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
  position: absolute;
  top: 50%;
  left:-25px;
  z-index: 99;
  border-radius:50%;
  cursor: pointer;
}
.left-btn2 img{
  width:100%;
}
.right-btn2{
  width: 50px;
  height: 50px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
  position: absolute;
  top: 50%;
  right:-25px;
  z-index: 99;
  border-radius:50%;
  cursor: pointer;
}
.right-btn2 img{
  width:100%;
}
.floor-plan-sec{
  width: 100%;
  height: auto;
  padding:50px 30px;
  background-color: #000;
}
.floor-plan-sec h2{
  text-align:center;
  
}
.floor-plan-sec .prim-btn-brd{
  margin-top: 40px;
}
.edu-learn{
  width:100%;
  height:auto;
  display: flex;
  align-items:stretch;
  justify-content:center;
}
.ed-learn-left{
  width:50%;
}
.ed-learn-right{
  width:50%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}
.ed-learn-left img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}
.ed-learn-right .tag-line{
  text-align: left;
}
.ed-learn-right h2{
  margin-bottom: 0px;
}
.ed-learn-txt-contbx{
  width:100%;
  padding: 50px 30px 0px 30px;
}
.ed-learn-txt-highlight{
  width:100%;
  height:auto;
  background-color:var(--primary);
}
.ed-learn-txt-highlight ul{
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ed-learn-txt-highlight ul li{
  width: 33.33%;
  padding: 1rem 1.5rem;
  border-right: 1px solid #ffff ;
}
.ed-learnbx{
  width:100%;
  height:auto;
  text-align:center;
}
.ed-learn-txt{
  font-weight:500;
  font-size: 1.1rem;
  color:#fff;
  margin: 5px 0px;
  line-height: 1.3rem;
}
.eth-sec h2{
  text-align:center;
}
.launch-proj{
  width:100%;
  height:auto;
  padding:50px 30px;
}
.launch-proj h3{
  text-align: center;
}
.proj-tit{
  text-align:center;
  font-weight:600;
  font-size: 1.2rem;
  margin: 10px 0px;
}
.proj-bx{
  margin-bottom:40px;
}
.feat-title{
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--prim-font);
}
.feat-bx img{
  width: 32%;
}
.feat-bx{
  text-align: center;
  margin-bottom:50px;
}
.feat-sec h4{
  text-align: center;
}
.senior-live-intro{
  padding-top:50px;
}
.fullstretch-wr{
  width: 100%;
  height: auto;
  display: flex;
  align-items: stretch;
  justify-content: center;
}
.stretch-left{
  width: 50%;
}
.stretch-left img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.stretch-right{
  width: 50%;
  padding: 1.5rem;
  background-color: #F5F5F5;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}
.res-sec{
  width:95%;
  margin: 0px auto;
  height: auto;
  background-image: url('../img/residential.jpg');
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.reside-bx{
  width: 45%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 1.5rem;
 
}
.proj-area-lst{
  list-style: none;
  display: inline-flex;
  flex-wrap: wrap;
}
.proj-area-lst li{
  margin: 10px;
  border: 1px solid var(--primary);
  border-radius: 30px;
  padding: 0.5rem 1rem;
  font-weight: 600;
}
.com-sec{
  width:95%;
  margin: 40px auto 30px auto;
  height: auto;
  background-image: url('../img/commercial.jpg');
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.com-bx{
  width: 45%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 1.5rem;
 
}
.rec-projbx{
  width: 100%;
  height: 400px;
  margin-bottom: 40px;
  position: relative;
  transition: 0.3s all ease-in-out;
  overflow: hidden;
  cursor: pointer;
}
.rec-projbx:hover img{
  transform: scale(1.1);
}
.rec-projbx-tit{
  width: 100%;
  min-height: 60px;
  background-color: rgba(255, 255, 255, 0.9);
  position: absolute;
  bottom: 0px;
  left: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--prim-font);
  font-weight:600;
  z-index: 1;
}
.rec-projbx img{
  width: 100%;
  height: 100%;
  object-fit: center;
  object-position: center;
  transition: 0.3s all ease-in-out;
}
.recent-proj{
  width:100%;
  height:auto;
  padding:50px 30px
}
.recent-proj h3{
  text-align: center;
}
.serv-imgbx{
  margin: 10px 0px;
}
.serv-imgbx img{
  width: 100%;
  height: 100%;
  object-fit: center;
  object-position: center;
}
.more-link{
  color: var(--primary);
  font-weight: 600;
}
.serv-bx{
  margin-bottom: 40px;
}
.world-map-sec{
  width: 100%;
  height: auto;
  padding: 50px 40px;
  
}
.global-list{
  width: 60%;
  margin: 50px auto 10px auto;
}
.global-list ul{
  list-style: none;
  padding-left: 6%;
}
.global-list ul li{
  padding-left: 6%;
  position: relative;
  margin: 15px 0px;
  text-transform: uppercase;
  color:var(--primary);
  font-weight: 600;
}
.global-list ul li::before{
  content: url('../img/bcd-list.png');
  position: absolute;
  top: 0px;
  left: -20px;

}
.global-list h5{
  font-weight: 600;
  color: var(--prim-font);
}
.global-grid{
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}
.glb-grid-bx{
  height: 500px;
  position: relative;
}
.db{
  background-image:url('../new-img/Dubai.jpg');
  background-position: center;
  background-size: cover;
}
.us{
  background-image:url('../img/global/us.jpg');
  background-position: center;
  background-size: cover;

}
.sa{
  background-image:url('../img/global/saudi.jpg');
  background-position: center;
  background-size: cover;

}
.afr{
  background-image:url('../img/global/africa.jpg');
  background-position: center;
  background-size: cover;
}
.global-grid .glb-grid-bx .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  transition: background 0.3s ease-in-out;
}
.global-grid .glb-grid-bx:hover .overlay {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
}
.global-grid .glb-grid-bx .overlay span{
  font-size: 1.4rem;
  font-weight: 500;
  font-style: italic;
  clip-path: polygon(15% 0, 100% 0%, 85% 100%, 0% 100%);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  padding: 0.5rem 1.5rem;
  display: block;
  position: relative;
  color: #ffff;
}
.media-img{
  width: 100%;
  height: auto;
  overflow: hidden;
}
.media-img:hover img{
  transform: scale(1.1);
}
.media-img img{
  width: 100%;
  height:100%;
  object-fit: center;
  object-position: center;
  transition: 0.3s all ease-in-out;
}
.media-tit{
  font-size:1.1rem;
  font-weight:600;
  margin: 10px 0px;
  color: #000;
}
.media-bx{
  margin-bottom: 40px;
}
.mid-head{
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--prim-font);
}
.fund-bx{
  text-align: center;
  margin-bottom: 40px;
}
.fund-bx-tit{
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--prim-font);
  margin: 15px 0px;
}
.fund-sp{
  width:100%;
  height:auto;
  padding: 50px 40px;
}
.fund-sp h3{
  text-align: center;
}
.spons-bx{
  width:100%;
  min-height:300px;
  border-radius: 30px;
  border: 1px solid #707070;
  background-color: #ffff;
  padding: 1.5rem;
  text-align: center;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction: column;
}
.spons-bx img{
  width:50%
}
.spn-tit{
  font-size: 1.1rem;
  font-weight: 600;
  margin: 15px 0px;
}
.stake-hlders{
  width:100%;
  height:auto;
  padding: 50px 40px;
}
.stake-hlders h3{
  text-align: center;
}
.stk-img-wr img{
  width: 60%;
  margin: 10px auto;
}
.fund-bx-img img{
  width:25%
}
.why-real-estate-fund{
  width:100%;
  height:auto;
  padding:50px 40px;
  background-image:url('../img/special-fund-bg.jpg');
  background-position:center;
  background-size: cover;
}
.why-real-estate-fund h3{
  text-align:center;
}
.fund-list{
  width:100%;
  list-style:none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.fund-list li{
  width: 48%;
  margin: 20px 1%;
  color: #fff;
  position: relative;
 
}
.fund-list li:nth-child(1), .fund-list li:nth-child(4), .fund-list li:nth-child(5){
  background-color: var(--primary);
  padding: 1.5rem 1rem 1.5rem 2rem;
}
.fund-list li:nth-child(1)::before, .fund-list li:nth-child(4)::before, .fund-list li:nth-child(5)::before{
  content: url('../img/check_circle-white.svg');
  position: absolute;
  top: 50%;
  left:10px;
  transform: translateY(-50%);
}
.fund-list li:nth-child(2), .fund-list li:nth-child(3), .fund-list li:nth-child(6){
  border:1px solid #fff;
  padding: 1.5rem 1rem 1.5rem 2rem;
}
.fund-list li:nth-child(2)::before, .fund-list li:nth-child(3)::before, .fund-list li:nth-child(6)::before{
  content: url('../img/check_circle.svg');
  position: absolute;
  top: 50%;
  left:10px;
  transform: translateY(-50%);
}
.invest-graph{
  width:100%;
  height:auto;
  padding:50px 40px;
}
.invest-graph h3{
  text-align:center;
}
.inv-gra{
  width: 90%;
  margin: 60px auto 50px auto;
}
.table tr th{
  background-color:var(--primary);
  color:#fff;
}
.table{
  background-color: #fff;
}

 /* Navigation */
 .year-nav {
  position: sticky;
  -webkit-position:sticky;
  top: 0;
  background: white;
  padding: 1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 100;
  display: flex;
  flex-wrap: wrap;
}
.sticky{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  overflow-x: auto;
  flex-wrap: nowrap;
}

.year-nav-item {
  padding: 0.8rem 1.5rem;
  margin:0.5rem;
  border:1px solid var(--primary);
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.year-nav-item:hover {
  background: var(--primary);
  color: white;
}

/* Timeline Container */
.timeline {
  position: relative;
  max-width: 100%;
  margin: 4rem auto;
  padding: 0 20px;
}

/* Central Line */
.timeline::after {
  content: '';
  position: absolute;
  width: 4px;
  background: var(--primary);
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* Timeline Items */
.timeline-item {
  position: relative;
  width: 100%;
  margin: 4rem 0;
}

/* Timeline Dot */
.timeline-item::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: #fff;
  border: 3px solid var(--primary);
  border-radius: 50%;
  left: 50%;
  top: 50px;
  transform: translateX(-50%);
  z-index: 2;
}

/* Content Box */
.timeline-card {
  width: 45%;
  background: white;
  border-radius: 10px;
  box-shadow: 0 3px 20px rgba(0,0,0,0.1);
  overflow: hidden;
  display: flex;
  min-height: 200px;
}

/* Alternate sides */
.timeline-item:nth-child(odd) .timeline-card {
  margin-left: auto;
  flex-direction: row-reverse;
}

.image-container {
  flex: 1;
  background: #ddd;
  min-width: 150px;
}

.content-container {
  flex: 2;
  padding: 1.5rem;
}

.year-header {
  color: var(--primary);
  margin: 0 0 1rem 0;
}

.description {
  color: #666;
  line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .timeline::after {
      left: 20px;
  }

  .timeline-card {
      width: 100%;
      margin-left: 40px !important;
      flex-direction: column;
  }

  .timeline-item::after {
      left: 20px;
  }

  .image-container {
      height: 150px;
  }
}
.vision{
  width:100%;
  height:auto;
  padding:50px 40px;
  text-align: center;
}
.vision h3{
  text-align: center;
}
.vision h6{
  color:var(--prim-font)
}
.bcd-grp h3{
  text-align:center!important;
}
.gen-sec{
  width:100%;
  height:auto;
  padding:50px 40px;
  position: relative;
  background-color: #F5F5F5;
  margin-top: 80px;
}
.gen-sec::before{
  content: 'Genesis';
  position: absolute;
  top: -60px;
  left: 0;
  width: 20%;
  min-height: 60px;
  z-index: 0;
  background-color: #F5F5F5;
  border-top-right-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  font-weight: 600;
  color:var(--prim-font)
}
.gen-row{
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  padding: 30px 0px;
}
.gen-sec-le{
  width: 30%;
  height: auto;
}
.gen-sec-rgt{
  width:70%;
  height: auto;
}
.gen-year{
  font-size: 1.8rem;
  color:var(--prim-font);
  font-weight: 600;
}
.year-desc{
  font-weight:600;  
}
.gen-row::before{
  content: '';
  position: absolute;
  top: -10px;
  width: 100%;
  border-top: 2px dotted #707070;
  z-index: 0;
}
.gen-row:first-child::before{
  border-top:0px;
}
.project-list-sec{
   width:100%;
   height:auto;
   padding:40px;
}
.project-bx{
  width:100%;
  height: 360px;
  overflow: hidden;
  position:relative;
  margin-bottom: 30px;
}
.project-bx img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  transition: all 0.3s ease-in-out;
}
.project-bx:hover img{
  transform: scale(1.1);
}
.proj-ov{
  position: absolute;
  top:0px;
  left:0px;
  width:100%;
  height:100%;
  background-color: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction:column;
  transition: all 0.3s ease-in-out;
  padding: 1.5rem;
  color:#fff;
  text-align: center;
}
.proj-ov-tit{
  font-family: "Playfair", serif;
  text-transform: uppercase;
  font-size: 1.6rem;
  font-weight:600;
  transition: all 0.3s ease-in-out;
}
.proj-ov-detail{
  font-size:0.9rem;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease-in-out!important;
}
.project-bx:hover .proj-ov-detail{
  opacity: 1;
  transform: translateY(0px);
}
.project-list-sec .prim-btn{
  display: inline-block;
}
.project-list-sec .prim-btn:hover{
  color: #fff;
}
.before-start{
  background-color: #F5F5F5;
  width: 100%;
  ;
}
.early-bx{
  width:100%;
  height:auto;
  background-color: #fff;
  border-top-right-radius: 40px;
  padding:40px
}
.early-bx h5{
  color:var(--prim-font);
  font-weight:600;
  font-family: "Montserrat", sans-serif;
}
.gen-shift-start{
  width: 100%;
  height:auto;
  padding:40px;
  background-color: var(--primary);
  border-top-right-radius: 40px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.vertical-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  transform-origin: center;
  display: inline-block;
  color: #fff;
  font-size: 3rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing:0.3rem;
  white-space: nowrap;
  position: relative;
}
.vertical-text::before {
  content: 'Generational Shift';
  position: absolute;
  top: 50%;
  left: 120px;
  width: 2px;
  background-color: #fff;
  transform: translateY(-50%);
  opacity: 0.2;
}
.gen-shift-start-left{
  border-left: 1px solid #fff;
  width:6%;
}
.gen-shift-start-right{
  width: 94%;
  padding-left: 2%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-top: 80px;
}
.gen-shift-tit{
  color:#fff;
  font-size: 2.8rem;
  font-weight: 600;
  letter-spacing: 0.2rem;
}
.gen-shift-sub-tit{
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  display: inline-block;
  position: relative;
}
.gen-shift-sub-tit:before{
  content: '------------';
  position: absolute;
  top: 0px;
  left:-120px;
  z-index: 0;
}
.b-list li{
  font-size: 0.9rem;
}

.gen-shift-sub-tit:after{
  content: '------------';
  position: absolute;
  top: 0px;
  right:-120px;
  z-index: 0;
}
.genshift-tit-cont{
  width:100%;
  height:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 50px 0px 30px 0px;
  border-bottom: 2px dotted #ffff;
}
.genshift-tit-cont .gen-year{
  color:#ffff;
}
.gen-shift-det{
  margin-top: 50px;
}
.gen-shift-det p{
  color: #000;
}

.group-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 40px;
}

.group-grid > .group-item:nth-child(2),
.group-grid > .group-item:nth-child(3),
.group-grid > .group-item:nth-child(4),
.group-grid > .group-item:nth-child(5),
.group-grid > .group-item:nth-child(8),
.group-grid > .group-item:nth-child(9) {
  grid-column: span 1;
}

@media(min-width: 768px) {
  .group-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .group-grid > .group-item:nth-child(1),
  .group-grid > .group-item:nth-child(6),
  .group-grid > .group-item:nth-child(10),
  .group-grid > .group-item:nth-child(11),
  .group-grid > .group-item.group9 {
    grid-column: span 2;
  }
}

.group-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-transform: uppercase;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  aspect-ratio: 16 / 6;
  overflow: hidden;
}

.group-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  transition: background 0.3s ease-in-out;
}

.group-item:hover .group-overlay {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
}

.group-overlay span {
  font-size: 1.4rem;
  font-weight: 500;
  font-style: italic;
  clip-path: polygon(15% 0, 100% 0%, 85% 100%, 0% 100%);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  padding: 0.5rem 4.5rem;
  display: block;
  position: relative;
  color: #fff;
  
}

.group-overlay span::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 100%;
  background: var(--primary);
  clip-path: polygon(15% 0, 100% 0%, 85% 100%, 0% 100%);
}

.group-description {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  font-size: 0.9rem;
  max-width: 80%;
  color: #FFFFFF;
  text-transform: capitalize;
}

.group-item:hover .group-description {
  opacity: 1;
}

/* Background image samples */
.group1  { background-image: url('../img/our-story.jpg'); }
.group2  { background-image: url('../img/india.jpg'); }
.group3  { background-image: url('../img/global.jpg'); }
.group4  { background-image: url('../img/services.jpg'); }
.group5  { background-image: url('../img/world-of-bcd.jpg'); }
.group6  { background-image: url('../img/connect.jpg'); }
.group7  { background-image: url('../img/team.jpg'); }
.group8  { background-image: url('../img/careers.jpg'); }
.group9  { background-image: url('../img/insights.jpg'); }
.group10 { background-image: url('../img/support.jpg'); }
.invest-graph .mid-head{
  margin:10px auto;
  text-align: center;
}
.cnct-with h3{
  text-align:center;
}
.sm-con{
  margin-top: 50px;
}
.sm-con h4{
  text-align: center;
}
.sm-cont-flex{
  display: flex;
  align-items: center;
  justify-content: center;
}
.sm-cont-flex a{
  margin: 5px 8px;
}
.menu-link-with-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dropdown-toggle {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  padding: 5px;
}
.custom-mob-dropdown-menu {
  overflow: hidden;
  max-height: 0;
  display: none; /* hide completely when closed */
  transition: all 0.4s ease; 
}


.custom-mob-dropdown-menu.open {
  display: block;     /* only show when open */
  transition: all 0.4s ease; 
}

.ft-sec .sm-cont-flex img{
  width: 100%;
}
.ft-sec a{
  transition: 0.3s all ease-in-out;
}
.ft-sec a:hover{
  color: var(--primary);
}
.ft-sec .sm-cont-flex{
  justify-content: flex-start;
  align-items: flex-start!important;
}
.ft-sec .sm-cont-flex a{
  margin: 10px 10px 10px 0px;
  width: 9%;
}
.ft-logo{
  margin-top: 45px;
}
.profile-tit-bx span{
  font-family: "Playfair", serif;
  text-transform: uppercase;
  font-size: calc(2rem + 0.5vw);
}
.more-prof-data{
  width: 100%;
  height: auto;
  padding: 50px 40px;
  background-color: #F5F5F5;
}
.more-prof-data h4{
  text-align: center;
}
.diver-bx{
  margin-bottom: 35px;
  
}
.diver-bx h6{
  padding: 5px 8px;
  border: 1px solid var(--primary);
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  margin-bottom: 0px;
  background-color: var(--primary);
  color: #ffff;
}
.diver-bx p{
  padding: 3%;
  border-left: 1px solid var(--primary);
  border-right: 1px solid var(--primary);
  border-bottom: 1px solid var(--primary);
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  background-color: #fff;
  min-height: 80px;
  
}
.award-bx{
  border-radius: 10px;
  overflow: hidden;
  height: auto;
  position: relative;
}
.aw-tit-bx{
  width: 100%;
  height:100%;
  background-color: rgba(209, 179, 113, 0.9);
  position: absolute;
  top: 0px;
  left: 0px;
  transform: translateY(20px);
  opacity: 0;
  transition: 0.3s all ease-in-out;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding:1rem;
  text-align:center;
}
.award-bx img{
  transition: 0.3s all ease-in-out;
}
.owl-carousel-awards .item:hover .aw-tit-bx{
  opacity: 1;
  transform: translateY(0px);
} 

.b-list-xl{
  font-size: 0.9rem;
  color: var(--prim-font);
  padding-left: 1%;
}
.b-list-xl li{
  margin: 10px 0px;
}
.saf-comp-sec h6{
  color: var(--prim-font);
}


.cr-values .sec-list li{
  padding-left: 2%!important;
}
.cr-values .sec-list li p{
  margin-bottom: 0px;
}

/* Tab Styling */
.project-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 10px 20px;
  background: #f0f0f0;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s;
}
.tab-btn.active {
  background: var(--primary);
  color: white;
}

/* Timeline Styling */
.project-timeline {
  position: relative;
  margin: 0 30px;
}
.project-timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 0;
  height: 100%;
  width: 2px;
  background: var(--secondary);
}
.project-item {
  position: relative;
  margin: 25px 0;
  padding-left: 30px;
}
.project-item::before {
  content: '';
  position: absolute;
  left: 0px;
  top: 5px;
  width: 16px;
  height: 16px;
  background: var(--primary);
  border-radius: 50%;
  border: 3px solid white;
  z-index: 1;
}
.project-year {
  font-weight: bold;
  color: var(--primary);
  margin-bottom: 5px;
}

/* Popup Styling */
.project-popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 0 25px rgba(0,0,0,0.2);
  width: 88%;
  max-height: 90vh;
  overflow-y: auto;
  z-index: 1000;
  
}
.tab-content{
  display: none;
}
.tab-content.active{
  display: block;
}
.project-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 999;
}
/* .timeline-btn {
  padding: 12px 25px;
  background: #007BFF;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin: 20px;
  font-size: 16px;
} */

.project-details {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 6px;
  margin: 10px 0;
}

@media (max-width: 768px) {
  .project-popup {
      width: 95%;
      padding: 15px;
  }
}

.bcd-bx{
  width: 100%;
  min-height: 130px;
  padding: 1rem;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 20px;
  transition: 0.3s all ease-in-out;
}
.bcd-bx h6{
  color: #fff;
}
.bcd-bx:hover{
  transform: translateY(-5px);
}
.franchise-sec{
  width: 100%;
  height: auto;
  padding: 50px 30px;
  background-color: var(--primary);
}
.franchise-sec h4{
  color: #fff;
}
.franchise-sec p{
  color: #fff;
}
.fr-part-bx{
  width: 100%;
  min-height: 380px;
  border: 1px solid #fff;
  border-radius: 10px;
  padding: 1rem;
}
.brand-eq-img-bx{
  width: 40%;
  margin: 10px 0px;
}
.brand-eq-img-bx img{
  width: 100%;
}
.fr-part-bx h6{
  color: #fff;
  margin-bottom: 0px;
}
.real-estate-brand{
  width: 100%;
  height: auto;
  padding: 50px 30px;
}