/* Import Google Fonts */
/* @import url("https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap"); */
/* CSS Variables for Design System */
:root {
  --primary-black: #000000;
  --primary-red: #fc1817;
  --accent-gold: #f4a261;
  --light-gray: #f8f9fa;
  --medium-gray: #6c757d;
  --dark-gray: #4a4a4a;
  --white: #ffffff;
  --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
  --shadow-heavy: 0 8px 30px rgba(0, 0, 0, 0.2);
  --border-radius: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.highlight {
  color: #fc1817;
}
/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Mulish", sans-serif;
  line-height: 1.5;
  color: var(--dark-gray);
  overflow-x: hidden;
}
p{

}
.text-balance {
  text-wrap: balance;
}

/* Navbar */

.navbar {
  /* background: linear-gradient(rgb(0 0 0 / 70%), transparent); */
  padding: 0px 65px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 111;
  width: 100%;
  transition: background-color 0.2s ease-in-out;
} 

.navbar-active {
  background: #4378b7 !important;
  /* background: linear-gradient(to bottom, #0a2755, #3b6bb1); */
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.6);
}

.nav-link:focus, .nav-link:hover {
    color: var(--white);
}
.navbar-brand img{
  width: 169px;
  /* height: auto; */
  transition: all 0.3s ease;
}
/* .navbar-brand img{
  width: 100%;
  height: auto;

} */

.navbar.scrolled .navbar-brand img {
    width: 120px; 
}

.navbar-nav {
  width: 100%;
  justify-content: flex-end;
}

.nav-item {
  margin-left: 1rem;
}

.nav-item a {
  font-size: 1.2rem;
  color: var(--white);
  font-weight: 400;
}

.navbar-toggler {
  margin-left: 1.5rem;
  border: none;
  font-size: 2.2rem;
  color: white;
}
/* .fa-bars-staggered:before, .fa-reorder:before, .fa-stream:before {
     content: "\f550"; 
     color: var(--white); 
} */


.navbar-toggler:focus {
  box-shadow: none;
}

@media (max-width: 992px) {
  .navbar-nav {
    display: none;
  }
  .navbar-toggler {
    display: none;
  }
  .nav-inner {
    justify-content: center !important;
  }
  .navbar-brand {
    margin: 0;
  }
}

/* off-canvas */

.offcanvas {
  background-color: #4378b7;
  width: 280px !important; /* Set a consistent width for all offcanvases */
}

.cross-btn{
  background-color: transparent;
  border: none;
  font-size: 2rem;
}
.offcanvas-header {
  justify-content: end;
}

.offcanvas-header .btn-close {
  font-size: 2rem;
}

.offcanvas-body .nav-item a {
  color: white;
}

/* carousel */

.carousel {
  height: 100vh;
}
.carousel-inner,
.carousel-item {
  height: 100vh;
}
.carousel-item img {
  height: 100vh;
  width: 100%;
  object-fit: cover; /* Ensures images fill the space without distortion */
}


/* Optional: Hide controls if only auto-play is needed */
.carousel-control-prev,
.carousel-control-next {
  display: none;
}

/* Hero Image Gradient Overlay - Applied to ALL slides */
.carousel-item {
  position: relative;
}

.carousel-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 300px;
  background: linear-gradient(180deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
  z-index: 1;
  transition: height 0.4s ease, opacity 0.4s ease;
  pointer-events: none;
}

/* When scrolled, remove gradient */
.carousel-item.scrolled::before {
  height: 0;
  opacity: 0;
}

.slide-content {
    position: absolute;
    bottom: 5%;
    left: 5%;
    background-color: #ffffffe0;
    color: black;
    margin-right: 1rem;
    font-weight: 700;
    font-size: 2rem;
    z-index: 1;
    padding: 1rem;
    max-width: 600px;
}
.offcanvas-backdrop {
  
    background-color: #00000000 !important;
}

.slide-content p {
  margin-bottom: 0;
}

@media (max-width: 1365px) {
  .slide-content p {
    font-size: 1rem;
  }
}

/* home-about */

.home-about {
  overflow: hidden;
  padding: 90px 0px 64px;
}

.home-about-left {
  position: relative;
}

.blur-head {
  position: absolute;
  top: -30%;
}

.home-about-left h3 {
  font-size: 1.325rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.home-about-left h2 {
  color: black;
  font-weight: 700;
  font-size: 42px !important;
  line-height: 48px !important;
}

.home-about-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.devider{
  margin-right: 3rem;
  position: relative;
}
.devider::after{
    background-color: #ccc;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    right: 0;
    content: "";
    transform: rotate(14deg);
}

@media (max-width:768px) {
  .home-about-right h2 {
    font-size: 1.8rem !important;
    font-weight: bolder;
    margin-right: 0rem !important;
    margin: 0 !important;
}
      .home-about-right {
        justify-content: space-between;
        align-items: start;
        flex-direction: column;
    }
  .devider{
    margin-right: 0 ;
  }
  .devider::after{
    display: none;
  }
  .text-1{
    width: 100% !important;
    padding: 10px 0 !important;
  }
   .text-2{
    width: 100% !important;

    padding: 10px 0 !important;
    border-top:    1px solid #ccc !important;
    border-bottom:    1px solid #ccc !important;
  }
   .text-3{
    width: 100% !important;

    padding: 10px 0 !important;
  }
  .text-1 p{
    margin-bottom: 0 !important;
  }
  .text-2 p{
    margin-bottom: 0 !important;
  }
  .text-3 p{
    margin-bottom: 0 !important;
  }
  
}

.home-about-right h2 {
  font-size: 3rem;
  font-weight: 900;
  margin-right: 3rem;
  color: #000;
  text-align: center;
  display: flex;
  align-items: flex-end;
  line-height: 1;
}

.home-about-right span {
  font-size: 1.3rem;
  margin-left: 1rem;
  white-space: nowrap;
  padding-bottom: 0.3rem;
}

@media (max-width: 1450px) {
      .home-about-left h3 {
        font-size: 1rem;
        margin: 0;
    }
  .home-about-left h2 {
    font-size: 1.6rem;
    line-height: 2rem;
  }
  .our-projects-head h3 {
    font-size: 1rem !important;
  }
      .our-projects-head h2 {
        font-size: 1.4rem !important;
        line-height: 2rem !important;
    }
    .nav-item {
    margin-left: 30px !important;
}
#projectTabs{
  display: flex;
  flex-direction: column !important;
  gap: 10px;
}
#offcanvasMobile .navbar-nav {
        display: block !important;
    }
.nav-tabs .nav-link {
    background: #FFf;
    width: 100%;
    align-items: start;
    text-align: left;
    border: none;
    color: var(--medium-gray);
    font-weight: 700;
    padding: 10px;
}
.nav-tabs .nav-link.active {
    color: #4c83c3;
    border-bottom: 2px solid #4c83c3;
    background-color: #fff !important;
}
}
@media (max-width: 1550px) {
  .blur-head-1 {
    top: -40% !important;
  }
}

@media (max-width: 1200px) {
}
@media (max-width: 992px) {
  .blur-head {
    top: -65%;
  }

  .home-about-right {
    padding-top: 1.1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

.our-projects {
  padding: 90px 0px 64px;
  background-color: #f2f2f2;
}

.our-projects-head {
  position: relative;
}

.blur-head-1 {
  position: absolute;
  top: -65%;
}

.our-projects-head h3 {
  font-size: 1.3rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.our-projects-head h2 {
  color: black;
  font-weight: 700;
  font-size: 42px !important;
  line-height: 48px !important;
}

.our-projects-head a {
  font-weight: 700;
  text-decoration: none;
  color: #4c83c3;
}

.our-projects-head i {
  color: #4c83c3;
}

@media (max-width: 768px) {
  .blur-head-1 {
    top: -25% !important;
  }
  .our-projects-head br {
    display: none;
  }
}

.project-card {
  position: relative;
  background: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.project-card::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom , rgba(0,0,0,0), rgba(0,0,0,0.5));
  z-index: 1;
}

.project-card-inner {
  position: absolute;
  bottom: 0;
  padding: 0 1.5rem;
  width: 100%;
  z-index: 11;
}

.project-card-inner h6 {
  font-size: 1.2rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: white;
  width: 100%;
}


.pro-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.project-details p {
  font-size: 0.8rem;
  color: white;
  margin-bottom: 0;
  text-align: start;
}

.project-card img {
  width: 100%;
  height: 18rem;
  object-fit: cover;
  /* filter: contrast(0.7); */
}

.project-card .btn {
  font-size: 0.8rem;
  padding: 4px 8px;
}

.btn-group {
  gap: 5px;
  margin-bottom: 0.4rem;
  display: flex;
  flex-direction: column;
}

.project-btn{
  color: #fff;
  font-weight: 600;
  background-color: rgb(0 90 171 / 69%);
  transition: all 0.3s ease;
}

.project-btn:hover{
  color: #fff;
  background-color: #4c83c3;
}

.btn-group button {
  border-radius: 5px !important;
}

.nav-tabs .nav-link {
  border: none;
  color: var(--medium-gray);
  font-weight: 700;
}

.nav-tabs .nav-link.active {
    color: #ffffff !important;
    border-bottom: none !important;
    background-color: #4378b7 !important;
}
    #projectTabs {
        display: flex;
        flex-direction: row !important;
        gap: 20px;
    }
.tab-content {
  padding-top: 20px;
}

.brand-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.section-title {
  font-size: 2rem;
  font-weight: bold;
  text-align: left;
  margin-bottom: 2.5rem;
  color: #000;
}

.pillar-card {
  position: relative;
  overflow: hidden;
  background: white;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pillar-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}
.pillar-card h5 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.3rem;
}

.brand-pillar-carousel .owl-nav{
  margin-top: 1.5rem;
  display: flex;
  text-align: start;
}

.brand-pillar-carousel .owl-nav button.owl-next,
.brand-pillar-carousel .owl-nav button.owl-prev {
  display: flex;
  justify-content: center;
  align-items: center;
}
.brand-pillar-carousel .owl-nav button.owl-prev, 
.brand-pillar-carousel button.owl-dot {
    background: #4378b7;
    color: #fff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit;
}
.brand-pillar-carousel .owl-nav button.owl-next, 
.brand-pillar-carousel button.owl-dot {
    background: #4378b7;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit;
}
.brand-pillar-carousel .owl-nav button.owl-prev span ,
.brand-pillar-carousel .owl-nav button.owl-next span {
  color: #fff;
}


@media (max-width: 768px) {
  .pillar-card img {
    height: 200px;
  }
  .section-title {
    font-size: 2rem;
  }
}


.brand-text{
  position: absolute;
  text-align: left;
  padding: 2rem;
  top: 15.5rem;
  transition: all 0.5s ease;
}

.brand-text .line{
  width: 5rem;
  height: 0.15rem;
  background-color: white;
  display: block;
  margin-bottom: 2.5rem;
}

.brand-text p{
  color: white;
}

.pillar-card:hover .brand-text{
  top: 1rem;
  height: 100%;
  background: rgba(0,0,0,0.4);
}


.pillar-card::before {
    background: #404040;
    background: linear-gradient(0deg, #000000 0%, rgb(60 60 60 / 67%) 39%, #fff0 89%);
    opacity: .81;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    content: "";
    height: 70%;
}


/* footer */


footer{
  background-color: #545454;
}

footer h4{
  color: white;
  font-size: 1.3rem;
  font-weight: 600;
}
.footer-box i{
  color: white;
  font-size:17px;
  margin-right: 8px;
}
footer a{
  color: #fff;
  display: block;
  margin-bottom: .7rem;
  text-decoration: none;
}


footer p{
  color: #fff;
  display: block;
  margin-bottom: .7rem;
  text-decoration: none;
}

.ft-h-link{
  font-size: 1.3rem;
  font-weight: 600;
}

.copyright span{
  color: white;
  font-size: 1rem;
  opacity: 0.8;
}

.copyright p{
  font-size: 1rem;
  padding-top: 1rem;
  color: white;
  border-top: 1px solid #5E5E5E;
  display: inline-block;
  opacity: 0.8;
}





/* OFFICE */


.ccr-section{
  margin-top: 12rem;
  padding: 65px 0px;
}
.ccr-section .text-content h1{
    color: #4C83C3;
    font-size: 1.25rem !important;
    font-weight: 700;
    position: relative;
    display: inline-block;
}
.ccr-section .text-content h1::before{
  position: absolute;
  top: 50%;
  left: 103%;
  content: "";
  width: 80px;
  height: 2px;
  background-color: #4378b7;
}

@media (max-width:767px){
  .ccr-section .text-content h1::before {
    display: none;
  }
}
.ccr-section .text-content p{
  margin-top: 50px;
  font-weight: 500;
  line-height: 1.5;
  font-size: 18px;
  color: var(--dark-gray);
}

.text-black{
  color: #000;
}
.office-card a{
  text-decoration: none !important;
}
.office-card-img{
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
}

.ofc-badge {
    position: absolute;
  top: 5%;
  right: 5%;
  color: var(--white);
  text-decoration: none;
  padding: 0.5rem 0.8rem;
  border-radius: 5px;
  background-color: #00C507;
}
.office-card-img img{
  width: 100%;
  height: 100%;
  transform: scale(1);
  transition: all 0.3s ease;
}
.office-card-img:hover img{
  transform: scale(1.2);
}
.office-card-content p{
  position: relative;
  margin-bottom: 30px;
  color: #7B7B7B;
}
.office-card-content p::before{
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  height: 3px;
  width: 100px;
  background-color: #4378b7;
}


/* about us page  */
.about-tabs{
  margin-top: 10rem;
}
.about-tabs .nav-tabs .nav-item .nav-link{
  font-size: 1rem;
}
.about-tabs .nav-tabs .nav-item .link-active{
  color: #4378b7;
}
.company-overview-title h1{
  font-size: 1.2rem;
  color: #4378b7;
}
.company-overview-car{
  height: 80vh !important;
}


.overview-second-section{
  background-color: #4C83C3;
}
.overview-content{
  padding: 2rem;
  background-color: var(--light-gray);
}
.mission-img{
  padding: 2rem;
  width: 80%;
  height: auto;
}
.mission-img img{
  width: 100%;
  height: auto;
}
.mission-content{
  padding: 2rem;
  background-color: #4c83c3;
}
.value-card{
  background-color: #F8F8F8;
  padding: 2rem;
  height: 100%;
}


/* about us // leadership page  */
.leaders-card {
  position: relative;
  overflow: hidden;
  background: white;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.leaders-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}
.leaders-card h5 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.3rem;
}

@media (max-width: 768px) {
  .leaders-card img {
    height: 200px;
  }
}


.leader-name{
  position: absolute;
  text-align: left;
  padding: 2rem;
  width: 100%;
  top: 100%;  
  transition: all 0.5s ease;
}

.leader-name p{
  color: white;
}

.leaders-card:hover .leader-name{
  top: 60%;
  height: 100%;
  width: 100%;
  background: #fff0 linear-gradient(218deg, #4C83C300 0%, #4C83C3 100%) ;
}


/* about us page  */
.partner-card{
  border: 1px solid rgb(201, 201, 201);
  padding: 2rem 0.5rem;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}
.partner-card img{
  max-width: 80%;
  height: 80px;
  object-fit: scale-down
}

/* about us / client page  */
.our_client_list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    padding: 0;
    list-style: none;
    flex-wrap: wrap;
    grid-gap: 15px;
}
.our_client_list li {
    padding: 40px 35px;
    border: 1px solid #e2e2e2;
}
.our_client_list li a {
    display: block;
    padding: 0 20px;
}



/* =========================================== blog page ========================================= */

.blog-hero{
  padding-top: 150px;
}
.blog-hero-banner-img{
  width: 100%;
  object-fit: cover;
}
.blogs-head{
  position: relative;
  margin-bottom: 0;
  display: inline-block;
}
.blogs-head::before{
  content: "";
  position: absolute;
  left: 115%;
  top: 50%;
  transform: translateY(-50%);
  height: 3px;
  width: 60px;
  background-color: #4c83c3;

}

.blog_content .date {
    color: #000;
    font-weight: 700;
    opacity: .5;
    font-size: .8rem;
    display: block;
}
.blog_content h1 {
    margin: .4rem 0 .7rem;
    font-size: 22px;
    font-weight: bold;
}
.blog_content h1 a {
    color: #000;
    text-decoration: none;
}
.blog-search{
  background: #FCFCFC 0% 0% no-repeat padding-box;
  box-shadow: 0 14px 24px #0000000D;
  border: 1px solid #EEE;
  padding: 2rem;
}
.blog-search-btn{
  color: #fff;
  background-color: #4378b7;
  border: 1px solid #4378b7;
  transition: all;
}
.blog-search-btn:hover{
  background-color: #ffffff;
  color: #4378b7;
  border: 1px solid #4378b7;
}

.blogs-link{
  color: gray;
  transition: all;
}
.blogs-link:hover{
  color: #4378b7;
}


/* =========================================== blog detail page ========================================= */
.blog-detail-hero{
  background-color: #F5F5F5;
  margin-top: 150px;
  padding: 3rem 0;
}
.blog-detail-hero h1{
  font-size: 28px;
    color: #000;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.1;
}
.blog-detail-hero h6{
  color: #4C83C3;
  font-size: 0.8rem;
  font-weight: 600;
}
.blog-social-icon-list{
  gap: 20px;
}
.blog-social-icon{
  color: #000;
  font-size: 1.8rem;
}
.comment-submit-btn{
  background-color: #4378b7;
  border: 2px solid #4378b7;
  color: #fff;
  float: right;
  transition: all;
}
.comment-submit-btn:hover{
  background-color: #fff;
  color: #4378b7;
  border: 2px solid #4378b7;
  font-weight: 600;
}
.previous-btn{
  background-color: #4378b7;
  border: 2px solid #4378b7;
  color: #fff;
  transition: all;
}
.previous-btn:hover{
  background-color: #fff;
  color: #4378b7;
  border: 2px solid #4378b7;
  font-weight: 600;
}
.related-card span{
  color: #5E5E5E;
  font-size: 0.8rem;
}

/* =========================================== good earth bay II page ====================================== */

.goodearth-hero{
  height: 100vh;
}
.goodearth-hero-img img{
  height: 100vh;
  width: 100%;
  object-fit: cover;
  position: relative;
}
.goodearth-hero-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(to bottom , rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0));
  z-index: 1;            
}
.goodearth-hero-content{
  position: absolute;
  left: 10%;
  bottom: 10%;
  z-index: 11;
}
@media (max-width:475px){
  .goodearth-hero-content{
    width: 80%;
  }
}
.goodearth-hero-content h1{
  font-size: 24px;
    background-color: #ffffffe6;
    margin: 0;
    font-weight: 700;
    padding: 12px 18px;
}
.goodearth-hero-content h2{
      background-color: #4C83C3;
    font-size: 18px;
    display: inline-block;
    padding: .5rem 1rem;
    font-weight: 600;
    color: #fff;
    width: 100%;
}

.good-location{
  background-color: #313131;
}
.good-location p{
  font-size: 0.9rem;
}
.btn-good-earth{
  background-color: #4378b7;
  color: #fff;
  transition: all;
}
.btn-good-earth:hover{
  background-color:  rgb(76, 131, 195);
  color: #fff;
}

.building{
  background-color: #F2F2F2;
}
.building-img{
  width: 60px;
  height: auto;
  margin: auto;
}
.building-card{
  background-color: #ffffff;
  padding: 2rem;
  height: 100%;
}
.amenties-list{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 40px;
}
.amenties-list li{
  border-bottom: 1px solid #efefef ;
}
.amenties-img{
  width: 25px;
  height: auto;
}


.about-project{
  background-color: #4C83C3;
}
.about-320k{
  display: grid;
  place-items: center;
}

.about-proect-tab{
  background-color: #4C83C3;
}


    .img-tab-nav {
      display: flex;
      flex-wrap: nowrap;
      overflow-x: auto;
      padding-bottom: 0;
      border-bottom: none;
      gap: 0.5rem;
      justify-content: space-evenly;
    }

    /* Each tab item */
    .img-tab-item {
      flex: 0 0 auto;
    }

    /* The button that holds the image */
    .img-tab-btn {
      padding: 0.25rem;
      border: none;
      background: transparent;
      border-radius: 0;
      transition: all 0.2s ease;
    }

    .img-tab-btn:hover {
      background-color: rgba(13, 110, 253, 0.1);
    }

    .img-tab-btn.active {
      background-color: rgb(255, 255, 255);
    }
   

    /* The small image inside the tab */
    .img-tab-img {
      height: 80px;
      width: auto;
      object-fit: cover;
      border-radius: 6px;
      transition: border 0.2s ease;
    }

    .img-tab-btn.active .img-tab-img {
      border-color: #0d6efd;
    }

    /* Optional: hide default focus outline, use custom */
    .img-tab-btn:focus-visible {
      outline: 2px solid #0d6efd;
      outline-offset: 2px;
    }

    /* Tab content area */
    .img-tab-content {
      margin-top: 1.5rem;
    }

    .download-chart{
      text-align: center;
    }
    .download-chart-btn{
    background: #e7f9fe;
    border-radius: 4px;
    padding: 13px 25px;
    color: #000;
    font: 0.8rem;
    font-weight: 700;
    z-index: 1;
    transition: all;
    }
    .download-chart-btn:hover{
      background-color: #4378b7;
      color: #fff;
    }

    .site-plan-img{
      margin: auto;
      width: 60%;
      height: auto;
    }
.contact-us{
  padding-top: 150px !important;
}
    .floor-plan-list {
    background: #F5F5F5;
    display: flex;
    gap: 10px;
    /* gap: 15px; */
    justify-content: space-between;
    padding: 0px 24px;
    margin-bottom: 10px;
    padding-right: 24px;
    line-height: 4;
}
    .floor-plan-list .floors{
      font-size: 1rem;
    }
    .floor-plan-list .floor-pdf{
      font-size: 1.5rem;
    }

    .tenant-grid{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    width: 100%;
    grid-gap: 15px;
    list-style: none;
    padding-left: 0;
}
@media (max-width:768px){
  .tenant-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}
   
   .tenant-img-box{
    border: 1px solid #e2e2e2;
    padding: 40px 36px;
   }
    .tenant-img-box img{
      width: 60%;
      object-fit: contain;
    }


  .tabs-gallery-carousel .item img {
      display: block;
      width: 100%;
      height: auto;
      object-fit: cover;
    }


    .whatsapp {
    position: fixed;
    z-index: 99999;
    bottom: 60px;
    right: 10px;
    height: 70px;
    text-align: center;
    width: 70px;
    cursor: pointer;
    background: #FFF;
    border-radius: 50%;
}
a.whatsapp img {
    padding: 13px;
}

/* Contact Page */
.contact-form-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.contact-details h3,
.contact-form-container h3 {
    color: #4C83C3;
    font-weight: 700;
    margin-bottom: 2rem;
}

.contact-details p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.contact-details a {
    color: #4a4a4a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #4C83C3;
}

.contact-form-container {
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-form-container .form-label {
    color: #4a4a4a;
    font-weight: 600;
}

.contact-form-container .form-control {
    background-color: #f8f9fa;
    border: 1px solid #ced4da;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.contact-form-container .form-control:focus {
    background-color: #fff;
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.contact-form-container .btn-submit {
    background-color: #4C83C3;
    color: #fff;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.contact-form-container .btn-submit:hover {
    background-color: #4378b7;
}

/* Mobile Offcanvas Menu Styling */
@media (max-width: 991px) {
    .offcanvas-menu-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .offcanvas-menu-list .nav-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .offcanvas-menu-list .nav-link {
        padding: 18px 20px;
        font-size: 18px;
        color: #ffffff;
        text-decoration: none;
        display: block;
        transition: background-color 0.3s ease, padding-left 0.3s ease;
    }

    .offcanvas-menu-list .nav-link:hover {
        background-color: rgba(255, 255, 255, 0.1);
        padding-left: 30px;
    }

    .nav-divider {
        height: 20px;
        background: transparent;
        border-bottom: 2px solid rgba(255, 255, 255, 0.2);
        margin: 10px 0;
    }
}


/* Mobile Offcanvas Menu Styling */
@media (max-width: 991px) {
    .offcanvas-menu-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .offcanvas-menu-list .nav-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .offcanvas-menu-list .nav-link {
        padding: 18px 20px;
        font-size: 18px;
        color: #ffffff;
        text-decoration: none;
        display: block;
        transition: background-color 0.3s ease, padding-left 0.3s ease;
    }

    .offcanvas-menu-list .nav-link:hover {
        background-color: rgba(255, 255, 255, 0.1);
        padding-left: 30px;
    }

    .nav-divider {
        height: 20px;
        background: transparent;
        border-bottom: 2px solid rgba(255, 255, 255, 0.2);
        margin: 10px 0;
    }
}


/* Offcanvas Menu Styling */
.offcanvas-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.offcanvas-menu-list .nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.offcanvas-menu-list .nav-link {
    padding: 18px 20px;
    font-size: 18px;
    color: #ffffff;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s ease, padding-left 0.3s ease;
}

.offcanvas-menu-list .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    padding-left: 30px;
}

.nav-divider {
    height: 20px;
    background: transparent;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    margin: 10px 0;
}

/* Mobile styles */
@media (max-width: 991px) {
    /* Show mobile footer */
    .mobile-footer {
        display: block;
        background-color: #5a5a5a;
        color: #ffffff;
        padding: 0;
    }

    .mobile-footer .container {
        padding: 20px 15px 70px;
    }

    /* Accordion Items */
    .footer-accordion-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-accordion-header {
        width: 100%;
        background: none;
        border: none;
        color: #ffffff;
        padding: 18px 0;
        text-align: left;
        font-size: 16px;
        font-weight: 400;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
    }

    .footer-accordion-header:focus {
        outline: none;
        box-shadow: none;
    }

    .footer-accordion-header i {
        transition: transform 0.3s ease;
        font-size: 14px;
    }

    .footer-accordion-header[aria-expanded="true"] i {
        transform: rotate(180deg);
    }

    .footer-accordion-content {
        padding-bottom: 10px;
    }

    .footer-accordion-content a {
        display: block;
        color: #ffffff;
        text-decoration: none;
        padding: 8px 0;
        font-size: 14px;
        opacity: 0.9;
        transition: opacity 0.2s ease;
    }

    .footer-accordion-content a:hover {
        opacity: 1;
    }

    /* Simple Links */
    .footer-simple-link {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-simple-link a {
        display: block;
        color: #ffffff;
        text-decoration: none;
        padding: 18px 0;
        font-size: 16px;
        transition: opacity 0.2s ease;
    }

    .footer-simple-link a:hover {
        opacity: 0.8;
    }

    /* Copyright Section */
        .mobile-footer-copyright {
        text-align: center;
        margin-top: -8px;
        padding-top: 20px;
        /* border-top: 1px solid rgba(255, 255, 255, 0.1); */
    }

    .mobile-footer-copyright p {
        margin: 8px 0;
        font-size: 14px;
        color: #ffffff;
    }

    .mobile-footer-credits {
        font-size: 13px;
        opacity: 0.8;
    }

    /* Bottom Navigation Bar */
      .mobile-bottom-nav {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: #363636;
        display: flex;
        justify-content: space-around;
        align-items: center;
        padding: 10px 0;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .bottom-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        color: #ffffff;
        background: none;
        margin: 0;
        border: none;
        padding: 5px 15px;
        cursor: pointer;
        flex: 1;
        transition: color 0.2s ease;
    }

    .bottom-nav-item:focus {
        outline: none;
        box-shadow: none;
    }

    .bottom-nav-item i {
        font-size: 22px;
        margin-bottom: 4px;
    }

    .bottom-nav-item span {
        font-size: 12px;
    }

    .bottom-nav-item:hover,
    .bottom-nav-item:active {
        color: #000000;
    }

   
}

/* Desktop - ensure no bottom padding */
@media (min-width: 992px) {
    body {
        padding-bottom: 0;
    }
    .mobile-footer {
        display: none;
    }
    .desktop-footer {
        display: block;
    }
    .mobile-bottom-nav {
        display: flex; /* Show on desktop too */
        /* Additional styling for desktop if needed */
    }
}





