html, body {
  overflow-x: hidden;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;        
}

.search-input::placeholder {
  color: white;      
  opacity: 1;        
}


.btn,
.btn:focus,
.btn:active,
.btn:focus-visible,
.btn:hover {
  outline: none !important;
  box-shadow: none !important;
  text-decoration: none !important;
}


:where(h1) {
  font-size: 2.5rem;  
  line-height: 1.2;
  margin-block: 0.67em;
}

:where(h2) {
  font-size: 2rem;     
  line-height: 1.3;
  margin-block: 0.83em;
}


.bar-height {
  height: 32px; 
}


@media (max-width: 991px) {
  /* tablet */
  .bar-height {
    height: 80px;
    display: none;
  }
}

@media (max-width: 767px) {
  /* mobile */
  .bar-height {
    height: 60px;
    display: none;
  }
}

.arrow-fade{ margin-top: 65px}
.arrow-fade img {
  animation: moveDown 5s ease-in-out infinite;
}

@keyframes moveDown {
  0% {
    transform: translateY(0);
    opacity: 0.25;
  }
  50% {
    transform: translateY(25px); 
    opacity: 1;
  }
  75% {
    transform: translateY(50px);
    opacity: 0.5;
  }
  100% {
    transform: translateY(0);
    opacity: 0;
  }
}

@media (max-width: 992px) {
  .arrow-fade {
    margin-top: 70px;
  }
}

@media (min-width: 1200px) {
  .arrow-fade {
    margin-top: 125px;
  }
}





.h3-style{
  font-size: 1.25rem;
}

.navbar-bottom-shadow {
  box-shadow: 0 4px 6px -2px rgba(0, 0, 0, 0.2); /* X-offset, Y-offset, blur, spread, color */
}
.navbar .nav-link {
  color: #fff !important;
}

.navbar-nav .nav-link {
  position: relative;
  display: inline-block; /* Make sure it wraps nicely */
  padding-bottom: 5px; /* Space for the border */
  transition: all 0.3s ease; /* Smooth transition */
}

.navbar-nav .nav-link.active {
  border-bottom: 3px solid #ffffff;
  color: #ffffff !important;
  font-weight: bold;
  border-bottom: 1px color #ffffff;
}

/* Change color when hovering over any nav-link */
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  border-bottom: 3px solid #ffffff;
  color: #ffffff !important; /* Same or different color */
  font-weight: bold;
}

/* Optional: change dropdown items too on hover */

/* Dropdown hover */
.navbar-nav .dropdown-menu .dropdown-item:hover,
.navbar-nav .dropdown-menu .dropdown-item:focus {
  background: rgba(132, 6, 15, 0.5) !important; /* remove Bootstrap blue */
  color: #ffffff !important;                /* your text color */
  font-weight: bold;
}

/* Dropdown active (clicked/selected) */
.navbar-nav .dropdown-menu .dropdown-item.active,
.navbar-nav .dropdown-menu .dropdown-item:active {
  background: rgba(132, 6, 15, 0.5) !important; /* no blue background */
  color: #ffffff !important;               /* keep same text color */
  font-weight: bold;
}



.client-login:hover,
.client-login:focus{
  font-weight: bold;
}


.continuous-slider {
  background-color: #000;
  overflow: hidden;
  width: 100%;
  padding: 10px 0;
}

.slider-track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: scroll-left 25s linear infinite;
}

.slider-track p {
  color: #fff;
  margin: 0 30px;
}

@keyframes scroll-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* Hamburger menu style */

/* 1️⃣ Normal state: custom color + custom border */
.navbar-toggler {
  border-color: #dddbdc !important;

}
.navbar-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%23FFFFFF' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* 2️⃣ Hover state: change border + icon color */
.navbar-toggler:hover {
  border-color: #FFFFFF !important; /* White border on hover */
  font-weight: bold !important;
}

.navbar-toggler:hover .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%23FFFFFF' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}


/* Focus + active (when clicked) */
.navbar-toggler:focus,
.navbar-toggler:active {
  border-color: #ffffff; /* or your hover color if you want it same as hover */
  box-shadow: none;
  outline: none;
}

.text-gold {
  background: linear-gradient(90deg, #987200, #D8A301);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* for Firefox */
  color: transparent;    /* fallback */
}

.text-mute-dark{
  color: #4B5563;
}

.h1hero{
  width: 70%;
}

@media (min-width: 768px) {  /* tablets and up */
  .shift-up_little {
    position: relative;
    top: -20px; /* move up */
  }
}

.h2here{
  width: 60%;
  font-weight: 500;
  font-style: italic;
  font-size: 1.1em;
}

/* Apply only on mobile (less than Bootstrap's lg breakpoint) */
@media (max-width: 991.98px) {
  .navbar-collapse {
    margin-left: 10px; 
  }
  .navbar-brand {
    margin-left: 10px;
  }
  .navbar-toggler {
    margin-right: 10px;
  }

  .h1hero{
  width: 100%;
  font-size: 1.8em;
  line-height: 1.8;
}

.h2here{
  width: 100%;
  font-size: 1.1em;
  line-height: 1.6;
}
}

.bg-dark-red{
  background: linear-gradient(90deg, #c60100, #9e0000);
}


.text-reddish {
  background: linear-gradient(90deg, #c60100, #9e0000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent; 
}


.text-greenish {
  background: linear-gradient(90deg, #00211F, #016635);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;   
}

.bg-dark-green {
  background: linear-gradient(90deg, #00211F, #016635) !important;
  color: #fff; 
}



.video-background-container {
  position: relative;
  width: 100%;
  height: 100vh;              
  min-height: 600px;
  overflow: hidden;

  display: flex;
  flex-direction: column;    
  justify-content: center;    
  align-items: center;       
  text-align: center;
}

.video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;                
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(8, 7, 7, 0.45); /* dark overlay for readability */
  background: rgba(18, 0, 0, 0.45);
  z-index: 2;              
}

.container.text-white {
  position: relative;
  z-index: 3;            
  max-width: 1200px;
}

.blur-box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 20px;
  margin-top: 2rem;
  z-index: 3;
  max-width: 900px;    
  width: 90%;          
  margin: 2rem auto 0;  
}

.blur-box_colorless {
  background: rgba(229, 231, 235, 0.1);
  border-radius: 15px;
  padding: 4px;
  z-index: 3;
  width: 100%;
  text-align: center; 
}

@media (max-width: 767.98px) {
  .video-background-container {
    min-height: auto !important;
    height: 75vh !important;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .video-background-container {
    padding-top: 200px; 
    padding-bottom: 200px;
  }
}


.general_overlay_dark{
  position:absolute;
      top:0;
      left:0;
      width:100%;
      height:100%;
      /*background: linear-gradient(to right, rgba(46, 63, 165, 0.3), rgba(0, 0, 0, 0.2)); */
      background: linear-gradient( 360deg, rgba(46, 63, 165, 0.3) 40%, rgba(0, 0, 0, 0.2) 100%);
      z-index:1;">
}


.section2_image {
    height: 270px;
    width: 270px;
    float: center;
  }

/* Then your custom mobile/tablet breathing space */
@media (max-width: 767.98px) {
  .section2_image {
    height: 200px;
    width: 200px;
    float: center;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .section2_image {
    height: 250px;
    width: 250px;
    float: center;
  }
}

.font_optimize{
  font-size: 32px;
}


/* Then your custom mobile/tablet breathing space */
@media (max-width: 767.98px) {
  .font_optimize {
    font-size: 20px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .font_optimize {
    font-size: 17px;
  }
}


/* full Image slider */
 /* slider image sizing */
.slider-img {
  width: 100%;
  max-height: 750px;       /* adjust as needed */
  object-fit: cover;
  display: block;
  position: relative;      /* required for overlay */
}

/* add subtle black overlay to all carousel items *
  background: rgba(0, 0, 0, 0.25); /* overlay opacity */
.carousel-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}


/* caption positioned top-left with responsive left offset */
.caption-box {
  position: absolute;
  top: 20px;
  left: 16px;               /* mobile default */
  margin-left: -40px;
  z-index: 2;               /* ensure above overlay */
  padding: 8px 12px;
  gap: 1rem;
}

/* Tablet and below (≤ 991px) → stay centered */
@media (max-width: 991.98px) {
  .caption-box {
    left: 50%;
    transform: translateX(-50%);
  }
  .logo-img {
    max-width: 100px;
  }
  .caption-box h3 {
    font-size: 1rem; /* smaller text */
  }
}

/* Desktop (≥ 992px) → restore left alignment */
@media (min-width: 992px) {
  .caption-box {
    left: 250px;
    transform: none; /* cancel centering */
  }
}



/* logo sizes responsive */
.logo-img { max-width: 60px; height: auto; }
@media (min-width: 768px) { .logo-img { max-width: 100px; } }
@media (min-width: 992px) { .logo-img { max-width: 150px; } }

/* stroke + readability */
.text-stroke {
  color: #fff;
  -webkit-text-stroke: 0.5px #000;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
  line-height: 1.05;
  font-size: clamp(1rem, 2.4vw, 1.9rem);
}

/* indicator style */
#not_heroSlider .carousel-indicators { bottom: 15px; }
#not_heroSlider .carousel-indicators button {
  width: 12px; height: 12px; border-radius: 50%;
}

#not_heroSlider .carousel-indicators {
  bottom: -15px;   /* push bullets further down */
}

/* your default desktop style */
.custom-dark-box {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.6);
  padding: 10px 16px;
  border-radius: 12px;
  z-index: 5;

  display: inline-flex;       /* shrink-wrap content */
  align-items: center;        /* vertical align */
  gap: 8px;                   /* space between icon and text */
  text-align: center;
  max-width: 90%;             /* prevent overflow on small screens */
  white-space: nowrap;        /* keep linear layout */
  overflow: hidden;           /* prevent spilling text */
}

.custom-dark-box a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #fff;
}

.custom-dark-box img {
  width: 25px;                /* arrow size */
  height: auto;
  flex-shrink: 0;             /* icon does not shrink */
}

.custom-dark-box span {
  font-size: 1rem;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;    /* truncate long text */
}

@media (max-width: 575.98px) {
  .custom-dark-box {
    padding: 6px 10px;
    max-width: 95%;
  }
  .custom-dark-box span {
    font-size: 0.85rem;
  }
}



.custom-gold-box {
  background: rgba(152, 114, 0, 0.7); /* gold with transparency */
  color: #fff;
  /* remove fixed height */
}

/* Overlay hidden by default */
.overlay-card {
  position: absolute;
  inset: 0; /* match the image container size */
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.5s ease-in-out;
  visibility: hidden;
  z-index: 2;
}

/* Show overlay if parent OR overlay is hovered */
.position-relative:hover .overlay-card,
.overlay-card:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}


/* Dark inner box */
.custom-dark-box2 {
  background: rgba(0, 0, 0, 0.6);
  border-radius: 0.75rem;
  display: inline-block;
  padding: 0.75rem 1.25rem;
}


@media (max-width: 767.98px) {
  .custom-dark-box2 {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
  }
}

    .swiper {
    padding-bottom: 50px; /* space for pagination below slides */
    }

    /* Dash-style pagination */
    .swiper-pagination-bullet {
      width: 20px;          /* inactive dash length */
      height: 6px;          /* thickness */
      background: #E11D48;     /* inactive dash color */
      opacity: 0.4;
      border-radius: 3px;   /* slightly rounded */
      margin: 0 6px !important; /* spacing between dashes */
      transition: all 0.3s ease; /* smooth transition when active */
    }

    /* Active dash grows wider */
    .swiper-pagination-bullet-active {
      width: 40px;          /* active dash length */
      background: #84060F;  /* active color */
      opacity: 1;
    }



  /* Signature font class */
.signature-font {
  font-family: 'Great Vibes', cursive; /* replace with your CDN font name */
  font-size: 2rem;   /* adjust */
  font-weight: normal;
  letter-spacing: 1px; /* optional */
}


ul.d-flex img {
  width: clamp(14px, 1.5vw, 16px); /* scales icons */
}

ul.d-flex span {
  font-size: clamp(12px, 1.5vw, 14px); /* scales text */
}


.feature-bg-section-overlay_new {
  position: relative;
  display: flex;
  justify-content: center; /* horizontal center */
  align-items: center;     /* vertical center */
  text-align: center;      /* centers text inside */
  background: url('../images/nwww_11zon.webp') no-repeat center center;
  background-size: cover;
  height: 800px;           /* adjust as needed */
}

.feature-bg-section-overlay_new::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6); /* overlay */
}

.feature-bg-section-overlay_new .container {
  position: relative; /* so content is above overlay */
  z-index: 1;
  width: 65%;        /* your w-65 */
}

/* V-shaped overlay on top of section */
.masked-section .v-shape {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 50vw solid transparent;
  border-right: 50vw solid transparent;
  border-bottom: 120px solid white; /* initial V height */
  pointer-events: none;
  z-index: 2;
  opacity: 1;
  transition: all 0.3s ease-out;
}

/* Initially hide content */
.masked-section .container {
  opacity: 0;
  transition: opacity 0.6s ease-out;
}



.feature-bg-section-overlay_team {
  background: rgba(0, 0, 0, 0.49) url('../images/newwww_11zon.webp') no-repeat center center;
  background-size: cover;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 500px;
  padding: 5rem 1rem;
  transition: all 0.6s ease-in-out;
}

/* On hover: stretch container like container-fluid */
.container.feature-bg-section-overlay_team:hover {
  max-width: 100% !important;  /* override Bootstrap's max-width */
  width: 100% !important;
  border-radius: 0;
}
.team-section {
  background: #F1F2F4;
  padding: 0; /* reset */
}

.feature-bg-section-overlay_team {
  padding: 5rem 2rem;   /* top/bottom + left/right spacing */
}


@media (max-width: 767.98px) {
  .feature-bg-section-overlay_team {
    min-height: 350px;
  }
}



.feature-bg-section-overlay_team_mobile {
  background: rgba(0, 0, 0, 0.49) url('../images/newwww_11zon.webp') no-repeat center center;
  background-size: cover;
  background-attachment: scroll;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 500px;
  padding: 5rem 2rem;
  transition: all 0.6s ease-in-out;
}

.team-section {
  background: #F1F2F4;
  padding: 0; /* reset */
}

/* 📱 Mobile view adjustments */
@media (max-width: 767.98px) {
  .feature-bg-section-overlay_team_mobile {
    min-height: 100vh; /* Take full viewport height on mobile */
    background-position: center top;
    background-size: cover;
    padding: 4rem 1rem;
  }
}





/* Team card image zoom on hover */
.team-card img {
  transition: transform 0.3s ease;
}

.team-card:hover img {
  transform: scale(1.05);
}

/* Caption overlay */
.team-caption {
  background: rgba(0,0,0,0.2); /* semi-transparent black */
}

.team-caption h5,
.team-caption p {
  margin-bottom: 0.25rem;
  text-align: left;
}

/* Social icons */
.team-caption .d-flex a {
  font-size: 1rem;
  transition: color 0.3s;
}

.team-caption .d-flex a:hover {
  color: #f7c000;
}



/* Move indicators a bit below the carousel */
  #ambassadorCarousel .carousel-indicators {
    bottom: -60px;
  }

  /* Style indicators */
  #ambassadorCarousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #aeabab;
    opacity: 0.8;
  }

  #ambassadorCarousel .carousel-indicators .active {
    background-color: #987200;
    opacity: 1;
  }

  /* Adjust prev/next icons outside */
  #ambassadorCarousel .carousel-control-prev,
  #ambassadorCarousel .carousel-control-next {
    top: 50%;
    transform: translateY(-50%);
    width: auto;
  }

  #ambassadorCarousel .carousel-control-prev i,
  #ambassadorCarousel .carousel-control-next i {
    font-weight: bold;
  }


   .ambassador-img {
    max-width: 150px; /* make smaller images */
    height: auto;
    object-fit: cover;
  }

  .carousel-indicators [data-bs-target] {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #ffffff; /* dark dots */
    margin: 0 6px;
  }

  .carousel-indicators .active {
    background-color: #f1c40f; /* gold/yellow for active */
  }
  
.feature-bg-section-overlay_lastbg {
  position: relative;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden; /* hide video overflow */
}

/* Background video */
.feature-bg-section-overlay_lastbg video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover; /* make sure video covers entire section */
  transform: translate(-50%, -50%);
  z-index: 0; /* keep video behind everything */
}

/* Dark overlay */
.feature-bg-section-overlay_lastbg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* black overlay */
  z-index: 1;
}

/* Content */
.feature-bg-section-overlay_lastbg .container {
  position: relative;
  z-index: 2; /* ensure content sits above overlay */
}



/* Push mobile carousel indicators further down */
#ambassadorCarouselMobile .carousel-indicators {
  bottom: -70px;   /* adjust as needed */
}


@media (min-width: 992px) {
  .team_name_size {
    font-size: 14px;
    font-weight: bold;
  }

  .team_name_size2 {
    font-size: 12px;
  }
}



/* Submenu wrapper */
.dropdown-submenu {
  position: relative;
}

/* Desktop: submenu flies out to the right */
@media (min-width: 992px) {
  .dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -0.125rem;
  }
}

/* Optional arrow indicator */
.dropdown-submenu > .dropdown-toggle::after {
  content: "▸";
  float: right;
  margin-left: 5px;
}

.dropdown-item.active {
  background: none !important;
  color: #84060F !important;
  font-weight: 600; /* optional for emphasis */
}




/*management */
.manage_overlay{
  position:absolute;
      top:0;
      left:0;
      width:100%;
      height:100%;
      background:rgba(247,0,0,0.06);
      z-index:1;"
}


.manage-hero-section {
  position: relative;
  background-image: url('../images/teams_mem.webp');
  background-size: cover;
  background-position: center 5%; /* focus on top, cut bottom */
  background-repeat: no-repeat;
  overflow: hidden;
  min-height: 25vh; /* adjust height */
}

.manage-hero-section::before {
  content: "";
  position: absolute;
  inset: 0;                 /* covers full parent */
  background: rgba(0, 0, 0, 0.5); /* default dark overlay */
  z-index: 1;
  pointer-events: none;      /* ensures clicks go through */
}

@media (max-width: 768px) {
  .manage-hero-section {
    min-height: 30vh;
  }
}

@media (max-width: 576px) {
  .manage-hero-section {
    min-height: 50vh;
  }
}

/* Overlay */
.manage-hero-section .overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 0, 0, 0.65);
  z-index: 1;
}

/* Content always above overlay */
.manage-hero-section .container {
  position: relative;
  z-index: 2;
}


/* Overlay transparency utilities */
.overlay-25::before { background: rgba(0, 0, 0, 0.25); }
.overlay-50::before { background: rgba(0, 0, 0, 0.50); }
.overlay-75::before { background: rgba(0, 0, 0, 0.75); }
.overlay-90::before { background: rgba(0, 0, 0, 0.90); }

/* Overlay color variations */
.overlay-red::before  { background: rgba(247, 0, 0, 0.1); }
.overlay-gold::before { background: rgba(255, 215, 0, 0.5); }
.overlay-blue::before { background: rgba(0, 123, 255, 0.5); }

/* Responsive heights */
@media (min-width: 576px) { .manage-hero-section { min-height: 50vh; } }
@media (min-width: 768px) { .manage-hero-section { min-height: 60vh; } }
@media (min-width: 992px) { .manage-hero-section { min-height: 70vh; } }
@media (min-width: 1200px) { .manage-hero-section { min-height: 80vh; } }




/* Overlay transparency utilities */
.overlay-25::before { background: rgba(0, 0, 0, 0.25); }
.overlay-50::before { background: rgba(0, 0, 0, 0.50); }
.overlay-75::before { background: rgba(0, 0, 0, 0.75); }
.overlay-90::before { background: rgba(0, 0, 0, 0.90); }

/* Overlay color variations */
.overlay-red::before  { background: rgba(247, 0, 0, 0.1); }
.overlay-gold::before { background: rgba(255, 215, 0, 0.5); }
.overlay-blue::before { background: rgba(0, 123, 255, 0.5); }


.hero-overlay_meet_md {
  position: relative;
  background-image: url('../images/md_hero.webp');
  background-size: cover;
  background-position: center;
   background-repeat: no-repeat;
  background-size: 100% 100%; /* fill 100% width and 100% height */
  overflow: hidden;
  min-height: 160vh; /* full screen */ 
}

 /*Large desktops */
@media (min-width: 1200px) {
  .hero-overlay_meet_md {
  }
}

 /*Extra-large monitors */
@media (min-width: 1600px) {
  .hero-overlay_meet_md {
    min-height: 137vh;
  }
}


@media (max-width: 768px) {
  .hero-overlay_meet_md {
    min-height: 285vh; 
  }
}

@media (max-width: 576px) {
  .hero-overlay_meet_md {
    min-height: 150vh; 
  }
}

/* Overlay */
.hero-overlay_meet_md .overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 0, 0, 0.65);
  z-index: 1;
}

/* Content always above overlay */
.hero-overlay_meet_md .container {
  position: relative;
  z-index: 2;
}


.hero-overlaylagos_map_area {
  position: relative;
  background-image: url('../images/lagos_map_11zon.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%; /* fill 100% width and 100% height */
  overflow: hidden;
  min-height: 90vh; /* always at least full screen height */
}

@media (max-width: 768px) {
  .hero-overlaylagos_map_area {
    min-height: 90vh; /* still fills screen */
  }
}

@media (max-width: 576px) {
  .hero-overlaylagos_map_area {
    min-height: 90vh; /* still fills screen */
  }
}

/* Overlay */
.hero-overlaylagos_map_area .overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 0, 0, 0.65);
  z-index: 1;
}

/* Content always above overlay */
.hero-overlaylagos_map_area .container {
  position: relative;
  z-index: 2;
}



.hero-contact_overlay {
  position: relative;
  background-image: url('../images/conatc_bg_11zon.webp');
  background-size: cover;
  background-position: center;
   background-repeat: no-repeat;
  background-size: 100% 100%; /* fill 100% width and 100% height */
  overflow: hidden;
  min-height: 180vh; /* always at least full screen height */
}

/* Extra-large monitors */
@media (min-width: 1600px) {
  .hero-contact_overlay {
    min-height: 137vh;
  }
}


/* Extra-large monitors */
@media (min-width: 1200px) {
  .hero-contact_overlay {
    min-height: 120vh;
  }
}


@media (max-width: 768px) {
  .hero-contact_overlay {
    min-height: 260vh; /* still fills screen */
  }
}

@media (max-width: 576px) {
  .hero-contact_overlay {
    min-height: 265vh; /* still fills screen */
  }
}

/* Overlay */
.hero-contact_overlay .overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 0, 0, 0.65);
  z-index: 1;
}

/* Content always above overlay */
.hero-contact_overlay .container {
  position: relative;
  z-index: 2;
}


.location_style {
    margin-top: -80px;          /* pull up to overlap previous section */
    position: relative; 
    z-index: 10;        
  }

  @media (max-width: 991.98px) {
    .location_style {
    margin-top: -150px;          /* pull up to overlap previous section */
    position: relative; 
    z-index: 10;     
  }
  }

  .btn-danger {
    background: linear-gradient(90deg, #84060F, #E11D48) !important;
    border: none !important;
  }

  .btn-danger:hover {
    background: linear-gradient(90deg, #E11D48, #84060F) !important;
    transform: scale(1.05);
    transition: all 0.3s ease;
  }

  .bg-casa {
  background: linear-gradient(90deg, #84060F, #E11D48);
}

.btn-casa {
  background: linear-gradient(90deg, #84060F, #E11D48);
  border-radius: 8px;
  padding: 8px 16px;
  font-weight: 500;
  color: #fff;
}

.btn-casa:hover {
  background: #ffffff;
  color: #252526;    /* fallback */
}

.btn-light {
  background: #f8f9fa;
  color: #161A1D;
  font-weight: 500;
}

.btn-light:active,
.btn-light:hover {
  background: linear-gradient(90deg, #84060F, #E11D48);
  color: #ffffff;    /* fallback */
}



.btn-casa-hover:hover {
  background: linear-gradient(90deg, #84060F, #E11D48);
  padding: 8px 16px;
  font-weight: 500;
  color: #fff;
  border: none;
}


.tab-btn {
  cursor: pointer;
  color: #B5C6D5;
  padding: 10px 20px;
  font-weight: 600;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
}
@media (max-width: 450px){
    .tab-btn{
        padding: 5px 0px;
    }
}

.tab-btn.active {
  color: #000;
  border-bottom: 3px solid #820401;
}

.tab-content { display: none; }
.tab-content.active { display: block; }

.amenity-card {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  min-height: 175px;
}


  .estate-card {
    width: 320px;
  }
}
.form-title {
  font-size: 1.5rem;
  font-weight: 400;
  color: #333;
  margin-bottom: 10px;
}



.btn-outline-casa {
  position: relative;
  border: 2px solid transparent;
  z-index: 1; 
}

.btn-outline-casa::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px; /* border thickness */
  background: linear-gradient(90deg, #84060F, #E11D48);
  mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);;
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  z-index: -1;
}

.layout-img {
  display: none;
  width: 100%;
  height: auto;
}

.layout-img.active {
  display: block;
}
.layout {
  background-color: #f9f9f9;
}

.sectionDuoMap {
  box-shadow: 0 0 8px rgb(223, 221, 221);
  border-radius: 0.5rem;
}

.map-card {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  font-size: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.map-card h4{
  font-size: 18px;
}


#for_custom_bungalow .form-subtitle {
  color: #666;
  font-size: 1rem;
  margin-bottom: 30px;
  text-align: right;
}

#for_custom_bungalow .form-control {
  border: 2px solid #e0e0e0;
  border-radius: 4px;
  padding: 12px 16px;
  font-size: 14px;
  margin-bottom: 20px;
  transition: border-color 0.3s ease;
}

#for_custom_bungalow .form-control:focus {
  border-color: #007bff;
  box-shadow: none;
}

#for_custom_bungalow .form-select {
  border: 2px solid #e0e0e0;
  border-radius: 4px;
  padding: 12px 16px;
  font-size: 14px;
  margin-bottom: 20px;
}

#for_custom_bungalow .form-select:focus {
  border-color: #007bff;
  box-shadow: none;
}

#for_custom_bungalow textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

#for_custom_bungalow .submit-btn {
  border: none;
  color: white;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 4px;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background-color 0.3s ease;
  background-color: #84060F; /* optional default background */
}

#for_custom_bungalow .submit-btn:hover {
  background-color: #95832F;
}

#for_custom_bungalow .submit-btn::after {
  content: "→";
  margin-left: 10px;
  font-weight: bold;
}




.content-on-video {
  flex: 1;
  z-index: 3;
  height: 100%;
}

.button-bar-wrapper {
  position: absolute;
  top: -3%;         
  left: 50%;           
  transform: translate(-50%, -50%);
  background: rgba(212, 5, 0, 0.1);
  padding: 12px 20px;
  border-radius: none;
  z-index: 4;
  width: 100%;
  margin-top: 60px !important;
}

.button-bar .btn {
  white-space: nowrap;
}


@media (max-width: 768px) {
  .button-bar-wrapper {
  display: none;    
}
}

@media (max-width: 1024px) and (min-width: 768px) {
  .button-bar-wrapper {
  display: none;              
}
}

@media (max-width: 576px) {
  .button-bar-wrapper {
  display: none;             
}
}


#faq .card{
  margin: 20px auto;
}
#faq .card .sub{
  background-color: #f9f9f9;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  color: #00272e;
  padding: 0px 20px;
}
.icon {
  margin-left: 10px;
  transition: transform 0.2s ease;
}
#faq .card .active, #faq .card .sub:hover {
  color: #111;
}
#faq .card .description{
  background: rgba(71, 159, 72, 0.08);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
#faq .card p{
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #00272e;
  padding: 20px 40px;
  width: 80%;
}

.faq-card {
  border-radius: 12px;
  padding: 13.5px;
  text-align: center;
  font-size: 12px;
  min-height: 225px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.faq-card i{
  font-size: 35px;
  margin-bottom: 5px;
}




.hero-graduate_overlay_handover {
  position: relative;
  background-image: url('../images/handover_pro.webp');
  background-position: center 5%;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  min-height: 65vh;                /* adjust height */
}



@media (max-width: 768px) {
  .hero-graduate_overlay_handover {
    min-height: 30vh;
  }
}

@media (max-width: 576px) {
  .hero-graduate_overlay_handover {
    min-height: 50vh;
  }
}

/* Overlay */
.hero-graduate_overlay_handover .overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 0, 0, 0.55);
  z-index: 1;
}

/* Content always above overlay */
.hero-graduate_overlay_handover .container {
  position: relative;
  z-index: 2;
}


 .fa-gold-bullets {
    list-style: none; /* remove default bullets */
    padding-left: 0;
  }
  .fa-gold-bullets li {
    position: relative;
    padding-left: 25px; /* space for icon */
    margin-bottom: 8px;
  }
  .fa-gold-bullets li::before {
    content: "\f111"; /* Font Awesome icon (solid circle) */
    font-family: "Font Awesome 5 Free";
    font-weight: 900; /* required for solid icons */
    color: gold;
    position: absolute;
    left: 0;
    top: 0.3em;
    font-size: 0.6em; /* size of the icon */
  }

.hero-graduate_overlay_plotland {
  position: relative;
  background-image: url('../images/hero_graduate_11zon.webp');
  background-position: center 5%;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  min-height: 65vh;                /* adjust height */
}



@media (max-width: 768px) {
  .hero-graduate_overlay_plotland {
    min-height: 30vh;
  }
}

@media (max-width: 576px) {
  .hero-graduate_overlay_plotland {
    min-height: 50vh;
  }
}

/* Overlay */
.hero-graduate_overlay_plotland .overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 0, 0, 0.55);
  z-index: 1;
}

/* Content always above overlay */
.hero-graduate_overlay_plotland .container {
  position: relative;
  z-index: 2;
}



.hero-graduate_overlay {
  position: relative;
  background-image: url('../images/carreee_11zon.webp');
  background-size: cover;
  background-position: center;
   background-repeat: no-repeat;
  background-size: 100% 100%; /* fill 100% width and 100% height */
  overflow: hidden;
  min-height: 55vh; /* still fills screen */
}




@media (max-width: 768px) {
  .hero-graduate_overlay {
    min-height: 30vh;
  }
}

@media (max-width: 576px) {
  .hero-graduate_overlay {
    min-height: 50vh;
  }
}

/* Overlay */
.hero-graduate_overlay .overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 0, 0, 0.65);
  z-index: 1;
}

/* Content always above overlay */
.hero-graduate_overlay .container {
  position: relative;
  z-index: 2;
}





.hero-terms_conditions_bg_img_plotland {
  position: relative;
  background-image: url('../images/terms_policy.webp');
  background-size: cover;
  background-position: center;
   background-repeat: no-repeat;
  background-size: 100% 100%; /* fill 100% width and 100% height */
  overflow: hidden;
  min-height: 45vh; /* still fills screen */
}




@media (max-width: 768px) {
  .hero-terms_conditions_bg_img_plotland {
    min-height: 30vh;
  }
}

@media (max-width: 576px) {
  .hero-terms_conditions_bg_img_plotland {
    min-height: 50vh;
  }
}

/* Overlay */
.hero-terms_conditions_bg_img_plotland .overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 0, 0, 0.65);
  z-index: 1;
}

/* Content always above overlay */
.hero-terms_conditions_bg_img_plotland .container {
  position: relative;
  z-index: 2;
}




.hero-careers_overlay_plotland {
  position: relative;
  background-image: url('../images/pltland_11zon.webp');
  background-size: cover;
  background-position: center;
   background-repeat: no-repeat;
  background-size: 100% 100%; /* fill 100% width and 100% height */
  overflow: hidden;
  min-height: 75vh; /* still fills screen */
}




@media (max-width: 768px) {
  .hero-careers_overlay_plotland {
    min-height: 30vh;
  }
}

@media (max-width: 576px) {
  .hero-careers_overlay_plotland {
    min-height: 50vh;
  }
}

/* Overlay */
.hero-careers_overlay_plotland .overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 0, 0, 0.65);
  z-index: 1;
}

/* Content always above overlay */
.hero-careers_overlay_plotland .container {
  position: relative;
  z-index: 2;
}



.hero-careers_overlay {
  position: relative;
  background-image: url('../images/carreee_11zon.webp');
  background-size: cover;
  background-position: center;
   background-repeat: no-repeat;
  background-size: 100% 100%; /* fill 100% width and 100% height */
  overflow: hidden;
  min-height: 55vh; /* still fills screen */
}




@media (max-width: 768px) {
  .hero-careers_overlay {
    min-height: 30vh;
  }
}

@media (max-width: 576px) {
  .hero-careers_overlay {
    min-height: 50vh;
  }
}

/* Overlay */
.hero-careers_overlay .overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 0, 0, 0.65);
  z-index: 1;
}

/* Content always above overlay */
.hero-careers_overlay .container {
  position: relative;
  z-index: 2;
}




.hero-careers_overlay2 {
  position: relative;
  background-image: url('../images/budiding_11zon.webp');
  background-size: cover;
  background-position: center;
   background-repeat: no-repeat;
  background-size: 100% 100%; /* fill 100% width and 100% height */
  overflow: hidden;
  min-height: 60vh; /* always at least full screen height */
}



@media (max-width: 768px) {
  .hero-careers_overlay2 {
     min-height: 30vh;
  }
}

@media (max-width: 576px) {
  .hero-careers_overlay2 {
    min-height: 30vh;
  }
}

/* Overlay */
.hero-careers_overlay2 .overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 0, 0, 0.65);
  z-index: 1;
}

/* Content always above overlay */
.hero-careers_overlay2 .container {
  position: relative;
  z-index: 2;
}




.hero-careers_overlay_hire {
  position: relative;
  background-image: url('../images/testimoniee.webp');
  background-size: cover;
  background-position: center;
   background-repeat: no-repeat;
  background-size: 100% 100%; /* fill 100% width and 100% height */
  overflow: hidden;
}



@media (max-width: 768px) {
  .hero-careers_overlay_hire {
     min-height: 30vh;
  }
}

@media (max-width: 576px) {
  .hero-careers_overlay_hire {
    min-height: 30vh;
  }
}

/* Overlay */
.hero-careers_overlay_hire .overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 0, 0, 0.65);
  z-index: 1;
}

/* Content always above overlay */
.hero-careers_overlay_hire .container {
  position: relative;
  z-index: 2;
}




.no-bg2 {
  background-color: transparent !important;
}
.no-bg2:focus,
.no-bg2:hover,
.no-bg2:active {
  background-color: transparent !important;
  box-shadow: none !important; /* remove blue focus glow */
  color: #ffffff;
  font-weight: bold;
}


  /* Active button gradient */
  .btn-group .btn.active {
    background: linear-gradient(90deg, #84060F, #E11D48) !important;
    border: none !important;
    box-shadow: none !important; /* remove blue focus glow */
    color: #fff !important;
    font-weight: bold;
  }

  /* Non-active buttons (custom white with dark text) */
  .btn-group .btn.no-bg {
    background: #fff !important;
    color: #000 !important;
    /*border: 1px solid #ddd !important; */

  }

  /* Hover effect */
  .btn-group .btn.no-bg:focus,
  .btn-group .btn.no-bg:hover {
    /* background: #f8f9fa !important; */
    background: linear-gradient(90deg, #84060F, #E11D48) !important;
    box-shadow: none !important; /* remove blue focus glow */
    color: #fff !important;
    font-weight: bold;
  }



.no-bg {
  background-color: transparent !important;
}
.no-bg:focus,
.no-bg:hover,
.no-bg:active {
  background-color: transparent !important;
  box-shadow: none !important; /* remove blue focus glow */
  color: #000;
}


/* Change radio button color when checked */
.form-check-input:checked {
  background-color: #84060F; /* Bootstrap secondary */
  border-color: #84060F;
}

/* Optional: focus glow */
.form-check-input:focus {
  box-shadow: 0 0 0 0.2rem rgba(132, 6, 15, 0.25); /* secondary with opacity */
}

/* Apply custom focus glow for all form inputs */
.form-control:focus {
  border-color: #84060f; /* custom border color */
  box-shadow: 0 0 0 0.2rem rgba(132, 6, 15, 0.25); /* same glow as radio */
}

./* Estates Cards */
.estates-section {
  position: relative;
}

.estates-swiper {
  padding-bottom: 40px;
}

.estate-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.estate-card:hover {
  transform: translateY(-5px);
}

.estate-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.card-content {
  padding: 1rem;
}

.card-content p{
    font-size: 14px;
}

.swiper-pagination {
  position: relative;
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  opacity: 1;
  transition: background 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: red;
}
 






/* Ensure accessibility for icons */
[aria-hidden="true"] {
  speak: none;
}


/* Custom H1 */
.hero-title {
  font-size: clamp(1.5rem, 5vw, 2.2rem); /* responsive scaling */
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5); /* readability on video */
  margin-bottom: 1rem;
}

/* Custom H2 */
.hero-subtitle {
  font-size: clamp(0.7rem, 3vw, 0.9rem);
  font-weight: 400;
  line-height: 1.4;
  color: #ffffff; /* gold/yellow accent */
  margin-bottom: 2rem;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}

/* Optional: extra responsiveness for small screens */
@media (max-width: 576px) {
  .hero-title {
    font-size: 1.5rem;
  }
  .hero-subtitle {
    font-size: 0.7rem;
  }
}




.client-login {
  position: relative;
  display: inline-block; /* Make sure it wraps nicely */
  padding-bottom: 5px; /* Space for the border */
  transition: all 0.3s ease; /* Smooth transition */
}



/* Change color when hovering over any nav-link */
.client-login:hover,
.client-login:focus {
  color: #ffffff !important; /* Same or different color */
  font-weight: bold;
}



.client-login-tou {
  position: relative;
  display: inline-block; /* Make sure it wraps nicely */
  padding-bottom: 5px; /* Space for the border */
  transition: all 0.3s ease; /* Smooth transition */
}
/* Change color when hovering over any nav-link */
.client-login-tour:hover,
.client-login-tour:focus {
  font-weight: bold;
}

@media (max-width: 576px) {
  .client-login-tour {
    width: 100% !important;
  }
}

.bottom-shadow_hero {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2) !important; /* X Y Blur Color */
}

.small-form-text {
  font-size: 0.8rem !important; /* or any size you want */
}

.feature-bg-section-overlay {
  background: 
    linear-gradient(90deg, rgba(152, 114, 0, 0.7), rgba(216, 163, 1, 0.7)),
    url('../images/bg_section.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* motion slider */

:root {
  --animate-duration: 2000ms;
  --animate-delay: 0.09s;
}

.horizontal-bullets li {
  position: relative;
  padding-left: 0.5rem;
  margin-right: 0.5rem;
}

.horizontal-bullets li:not(:first-child)::before {
  content: "•"; /* Unicode bullet */
  position: absolute;
  left: 0;
  color: #000; /* Change bullet color if needed */
}


.custom-card {
  position: relative;
  border: none; /* remove default border */
  border-radius: 8px; /* apply card rounding */
  overflow: hidden; /* ensure gradient doesn't overflow rounded corners */
}

.custom-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px; /* thickness of the border */
  background: linear-gradient(90deg, #987200, #D8A301);
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.card-img-top{
  width: 45px;
  height: 45px;
  margin: 30px 30px 30px 15px;
  border-radius: 5px;
}

.bg-grey-white{
  background: #F9F9F9;
}

.custom-carousel-btn {
  width: 50px;
  height: 50px;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0,0,0,0.2);
  border-radius: 50%;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 10;
}

.carousel-control-prev.custom-carousel-btn { left: -60px; }
.carousel-control-next.custom-carousel-btn { right: -60px; }

.custom-carousel-btn i {
  font-size: 1.5rem;
  background: linear-gradient(90deg, #987200, #D8A301);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 767px) {
  .carousel-control-prev.custom-carousel-btn { left: -10px; }
  .carousel-control-next.custom-carousel-btn { right: -10px; }
}

.footer-copy-right{
  color: #d0cece;
  text-decoration: none;
}

.footer-copy-right a{
  color: #d0cece;
}

.w-65 {
  width: 65% !important;
}
@media (max-width: 767px) {
.w-65 {
  width: 100% !important;
}
.text-mobile-smaller {
    font-size: 18px;
  }
.image-footer{
  max-width: 100%;
  height: auto;
  width: 120px; /* Adjust size as needed */
}
.footer-copy-right{
  color: #d0cece;
}
.footer-copy-right a{
  color: #d0cece;
}

}


/* Mobile view: below 768px */
@media (max-width: 767px) {
  .homeslidermobilefont {
    font-size: 13px !important; 
  }
}




.svg-icon {
  max-width: 100%;
  height: auto;
  width: 20px; /* Adjust size as needed */
}

.bg-black{
  background-color: #000000;
}
.footer-title{
  font-size: 18px;
}

.footer-text{
  font-size: 14px;
}



/* Force Font Awesome chevrons to white (covers font glyphs, pseudo-elements and injected SVGs) */
.footer-title .fa-chevron-down,
.footer-title .fa-chevron-down::before,
.footer-title .fa-chevron-down::after,
.footer-title i.fa-chevron-down,
.footer-title svg,
.footer-title svg * {
  color: #fff !important;
  fill:  #fff !important;
  stroke: #fff !important;
}

/* Make button border white on focus */
.footer-title:focus {
  border-color: #fff !important;
  box-shadow: none !important; /* optional: remove blue glow */
}



.about_custom_margin_contact {
  margin-top: 0px;
}


/* Tablet view: usually 768px - 1024px */
@media (max-width: 1024px) and (min-width: 768px) {
  .about_custom_margin_contact {
    margin-top: 45px;
  }
}

/* Mobile view: below 768px */
@media (max-width: 767px) {
  .about_custom_margin_contact {
    margin-top: 2px;
  }
}


.social-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(90deg, #c60100, #9e0000);
  color: #fff;
  font-size: 18px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-circle:hover {
  transform: scale(1.1);
  opacity: 0.85;
  text-decoration: none;
  color: #fff;
}



/* About Us Style */
/* Default: Desk-50op */
.about_custom_margin {
  margin-top: -50px;
  height: 540px;
}

/* Tablet view: usually 768px - 1024px */
@media (max-width: 1024px) and (min-width: 768px) {
  .about_custom_margin {
    margin-top: -50px;
    height: 440px;
  }
}

/* Mobile view: below 768px */
@media (max-width: 767px) {
  .about_custom_margin {
    margin-top: -50px;
    height: 440px;
  }
}

.property_scroll {
  display: flex;                   /* horizontal row */
  gap: 10px;                       /* space between items */
  overflow-x: auto;                /* enable horizontal scroll */
  -webkit-overflow-scrolling: touch; /* smooth scroll on iOS */
  scroll-snap-type: x mandatory;   /* optional snap */
  padding-bottom: 10px;            /* give space for scrolling */
}

.property_item {
  flex: 0 0 auto;                  /* prevent shrinking */
  width: 50%;                       /* adjust width */
  scroll-snap-align: start;        /* optional snap */
}

/* optional: hide scrollbar for cleaner look */
.property_scroll::-webkit-scrollbar {
  display: none;
}
.property_scroll {
  -ms-overflow-style: none;  /* IE 10+ */
  scrollbar-width: none;     /* Firefox */
}



.property_search {
    margin-top: -250px;          /* pull up to overlap previous section */
    position: relative; 
    z-index: 10;                /* make sure it’s above previous section */
  }

  @media (max-width: 991.98px) {
    .property_search {
    margin-top: -150px;          /* pull up to overlap previous section */
    position: relative; 
    z-index: 10;     
  }
  }



.about_custom_margin_set2 {
  height: 540px;
}

/* Tablet view: usually 768px - 1024px */
@media (max-width: 1024px) and (min-width: 768px) {
  .about_custom_margin_set2 {
    height: 480px;
  }
}

/* Mobile view: below 768px */
@media (max-width: 767px) {
  .about_custom_margin_set2 {
    height: 900px;
  }
}


.about_custom_margin_set4 {
  height: 440px;
}

/* Tablet view: usually 768px - 1024px */
@media (max-width: 1024px) and (min-width: 768px) {
  .about_custom_margin_set4 {
    height: 480px;
  }
}

/* Mobile view: below 768px */
@media (max-width: 767px) {
  .about_custom_margin_set4 {
    height: 650px;
  }
}




.gold-divider {
  width: 180px;               /* length of the divider */
  height: 3px;                /* thickness */
  background: linear-gradient(190deg, #FFD700, #D8A301);  /* gold color */
  border: none;               /* remove default border */
  margin: 0.5rem 0;           /* spacing above/below */
  display: block;             /* ensures height applies */
}


.bg-light2{
  background: #F1F2F4;
}


.who_are_e{
   width: 60%;
   margin-top: -250px;          /* pull up to overlap previous section */
  position: relative; 
  z-index: 10;
}
@media (max-width: 767px) {
  .who_are_e{
    width: 90%;
    margin-top: -200px;          /* pull up to overlap previous section */
    position: relative; 
    z-index: 10;
  }
}


.white-divider {
  width: 180px;               /* length of the divider */
  height: 1px;                /* thickness */
  background: #fff;  /* gold color */
  border: none;               /* remove default border */
  margin: 0.5rem 0;           /* spacing above/below */
  display: block;             /* ensures height applies */
}

.center_left{
  margin-top: 300px;
}

.bubble-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 40px;
}

.bubble {
  background: white;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  margin-bottom: 10px;
}

/* sizes */
.bubble-sm { width: 40px; height: 40px; margin-left: 0; }
.bubble-md { width: 70px; height: 70px; margin-left: 10px; }
.bubble-lg { width: 85px; height: 80px; margin-left: 70px; }


/* Toggle icon down ↔ up when collapse is open */
button[aria-expanded="true"] .fa-chevron-down::before {
  content: "\f077"; /* Font Awesome chevron-up */
}


/* Makes sure all clickable items meet touch target size */
.touch-target {
  padding: 2px; /* increases clickable area */
  text-decoration: none;
}

/* Cookie Banner */
/* Cookie Banner */
.cookie-banner {
  display: none; /* Show via JS if not accepted */
  z-index: 1050; /* Above Bootstrap elements */
  background-color: rgba(0, 0, 0, 0.6); /* semi-transparent black */
}

.text-justify {
  text-align: justify;
}



@media (max-width: 767px) {
  .cookiemargin{
    margin-top: 20px;
    margin-bottom: 10px;
  }
}


/* Scroll-to-Top Button */
.scroll-top-btn {
  position: fixed;
  bottom: 40px;
  left: 20px;   /* ✅ changed from right: 20px */
  display: none;
  border-radius: 50%;
  padding: 10px 12px;
  font-size: 18px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  z-index: 1050;
}
.scroll-top-btn:hover {
  background-color: #e0b800;
  color: #000;
}



/* Custom 14-column grid */
.custom-grid {
  display: flex;
  flex-wrap: wrap;
}

.custom-col-2-14 {
  flex: 0 0 calc((2 / 14) * 100%);
  max-width: calc((2 / 14) * 100%);
}

.custom-col-3-14 {
  flex: 0 0 calc((3 / 14) * 100%);
  max-width: calc((3 / 14) * 100%);
}


@media (max-width: 767px) {
  .w-65 {
    width: 100% !important;
  }
  .text-mobile-smaller {
      font-size: 18px;
    }
  .image-footer{
    max-width: 100%;
    height: auto;
    width: 120px; /* Adjust size as needed */
  }
  .footer-copy-right{
    color: #d0cece;
  }
  .footer-copy-right a{
    color: #d0cece;
  }
}

@media (max-width: 768px) {
  .form-container {
    margin: 20px;
    padding: 20px;
  }
  
  .form-title {
    font-size: 1.5rem;
  }

  .estate-card {
    width: 320px;
  }
}

@media (max-width: 575.98px) {
  .video-bg {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
  }
  #residential p{
    font-size: 12px;
  }
  #commercial p{
    font-size: 12px;
  }
  .amenity-card {
  min-height: 181px;
  }
  .layout p{
    font-size: 14px;
  }
  .layout h2{
    text-align: center;
  }
  .layout img{
    padding-top: 15px;
  }
  #faq .card .sub {
    font-size: 17px;
    padding: 20px;
  }
  .ctaP p{
    font-size: 16px !important;
  }
}

/* Modal base */
.modal {
  display: none;
  position: fixed;
  z-index: 1050;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0,0,0,0.1);
  justify-content: center;
  align-items: center;
  overflow: auto;
}

.modal.active{
    display: flex;
}

/* Modal Content Card */
.modal-content {
  background-color: #fff;
  padding: 20px;
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  height: auto;           
  min-height: 425px;
  max-height: 625px;
  display: flex;
  flex-direction: column; 
  animation: fadeIn 0.3s ease-in-out;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Header, body, footer */
.modal-header, .modal-footer {
  padding: 10px 20px;
  background: #f5f5f5;
  border-radius: 8px 8px 0 0;
}

.modal-footer {
  border-top: 1px solid #ddd;
  border-radius: 0 0 8px 8px;
  text-align: center;
  margin-top: auto; /* pushes footer down */
}

/* Close button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
}

/* Fade animation */
@keyframes fadeIn {
  from {opacity: 0; transform: scale(0.9);}
  to {opacity: 1; transform: scale(1);}
}

/* Input and button */
.modal-body input[type="email"] {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.modal-body button {
  margin-top: 15px;
  width: 100%;
}

/* Custom display utilities for ≥2000px */
@media (min-width: 2000px) {
  .d-lm-none {
    display: none !important;
  }
  .d-lm-block {
    display: block !important;
  }
  .d-lm-flex {
    display: flex !important;
  }
  .d-lm-inline {
    display: inline !important;
  }
  .d-lm-inline-block {
    display: inline-block !important;
  }
}


.property-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
}

.property-table th,
.property-table td {
    border: 1px solid #ddd;
    padding: 8px 10px;
    text-align: left;
}

.property-table th {
    background-color: #f5f5f5;
    font-weight: 600;
}

.property-table tr:nth-child(even) {
    background-color: #fafafa;
}

.property-table tr:hover {
    background-color: #f0f8f5;
}



/* whatsapp widget */

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: all 0.3s ease;
}

.whatsapp-float i {
  margin-top: 15px;
  color: #fff;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #20ba5a;

}



/*** Lead Gen Style ***/
#welcomeModalDesktop .modal-dialog {
  max-width:1100px !important;
  width: 90% !important;
}

#welcomeModalDesktop .modal-content {
  border-radius: 15px;
  overflow: hidden;
  max-width: none !important;
  width: 100% !important;
  min-height: 350px;
}

#welcomeModalDesktop .col-md-6:first-child {
  min-height: 350px;
}

#welcomeModalDesktop .left-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#welcomeModalDesktop .right-content {
  min-height: 350px;
  display: flex;
  flex-direction: column;
}

#welcomeModalDesktop .logo-image {
  max-width: 180px;
  height: auto;
}

#welcomeModalDesktop .form-wrapper {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

#welcomeModalDesktop .row {
  margin: 0;
  min-height: 350px;
}

#welcomeModalMobile .modal-dialog {
  max-width: 500px;
}

#welcomeModalMobile .logo-image {
  max-width: 180px;
  height: auto;
}

#welcomeModalMobile .left-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#welcomeModalMobile .modal-content {
  max-width: none !important;
  width: 100% !important;
}

/* ── Fix tourModal — override generic .modal-content conflict ── */
#tourModal.modal {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1055;
  overflow-x: hidden;
  overflow-y: auto;
}

#tourModal .modal-dialog {
  max-width: 620px;
  width: 90%;
  margin: 2rem auto;
}

#tourModal .modal-content {
  /* reset the broken generic styles */
  width: 100% !important;
  max-width: 100% !important;
  min-height: unset !important;
  max-height: unset !important;
  height: auto !important;
  display: block !important;
  flex-direction: unset !important;
  padding: 0 !important;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border: none;
  overflow: hidden;
}

#tourModal .modal-body {
  padding: 2rem;
  overflow-y: auto;
  max-height: 90vh;
  position: relative;
}

#tourModal .btn-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
}

#tourModal h4 {
  font-size: 20px;
  font-weight: 700;
  color: #161A1D;
}

#tourModal .section-card {
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 1.25rem;
  margin-bottom: 1rem;
  background: #fff;
}

#tourModal .section-card h6 {
  font-size: 14px;
  font-weight: 700;
  color: #161A1D;
  margin-bottom: 2px;
}

#tourModal .section-card p {
  font-size: 12px;
  color: #6c757d;
  margin-bottom: 1rem;
}

#tourModal .form-label {
  font-size: 13px;
  font-weight: 500;
  color: #161A1D;
  margin-bottom: 4px;
}

#tourModal .form-control,
#tourModal .form-select {
  background-color: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-size: 13px;
  padding: 10px 14px;
  color: #161A1D;
}

#tourModal .form-control:focus,
#tourModal .form-select:focus {
  background-color: #fff;
  border-color: #C0392B;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.1);
}

#tourModal .btn-submit {
  background: linear-gradient(90deg, rgba(132, 6, 15, 1), rgba(225, 29, 72, 1));
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 14px;
  width: 100%;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

#tourModal .btn-submit:hover {
  opacity: 0.9;
}