

html, body {
  overflow-x: hidden;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;   /* Adjust base font size if needed */
  color: #333;       /* Default text color */
}

/* Only affect this search bar placeholder */
.search-input::placeholder {
  color: white;       /* placeholder text color */
  opacity: 1;         /* make sure it's fully visible */
}


/* navbar color and hover */
/* Change color of the active nav-link */


/* Reset deprecated H1 behavior inside section/article/etc. */
:where(h1) {
  font-size: 2.5rem;   /* same as Bootstrap display-5 */
  line-height: 1.2;
  margin-block: 0.67em;
}

:where(h2) {
  font-size: 2rem;     /* or match Bootstrap’s h2 size */
  line-height: 1.3;
  margin-block: 0.83em;
}


@media (max-width: 576px) {
}

.bar-height {
  height: 32px; /* default (desktop) */
}

@media (max-width: 991px) {
  /* tablet */
  .bar-height {
    height: 80px;
  }
}

@media (max-width: 767px) {
  /* mobile */
  .bar-height {
    height: 60px;
  }
}



.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; /* adjust as needed */
  }
  .navbar-brand {
    margin-left: 10px; /* adjust as needed */
  }
  .navbar-toggler {
    margin-right: 10px; /* adjust as needed */
  }

  .h1hero{
  width: 100%;
  font-size: 1.8em;
  line-height: 1.8;
}

.h2here{
  width: 100%;
  font-size: 1.1em;
  line-height: 1.6;
}
}


.video-background-container {
  position: relative;
  width: 100%;
  height: 100vh;              /* always full screen */
  min-height: 600px;
  overflow: hidden;

  display: flex;
  flex-direction: column;     /* stack text + form vertically */
  justify-content: center;    /* center vertically */
  align-items: center;        /* center horizontally */
  text-align: center;
}

.video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;                 /* bottom layer */
}

.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;                 /* above video */
}

.container.text-white {
  position: relative;
  z-index: 3;                 /* above overlay */
  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;     /* desktop */
  width: 90%;           /* relative on smaller screens */
  margin: 2rem auto 0;  /* top + centered */
}

/* Your blur box */
.blur-box_colorless {
  background: rgba(229, 231, 235, 0.1);
  border-radius: 15px;
  padding: 4px;
  z-index: 3;
  width: 100%;
  text-align: center; /* optional: center text inside */
}


/* Then your custom mobile/tablet breathing space */




/* Apply safe space below navbar */
.video-background-container {
  padding-top: 100px; /* adjust to actual navbar height */
}

/* Then your custom mobile/tablet breathing space */
@media (max-width: 767.98px) {
  .video-background-container {
    padding-top: 410px; /* 70px navbar + 240px spacing */
    padding-bottom: 260px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .video-background-container {
    padding-top: 410px; /* 70px navbar + 240px spacing */
    padding-bottom: 260px;
  }
}


.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;      /* stack h3, h4, p, etc vertically */
  justify-content: center;     /* vertical centering */
  align-items: center;         /* horizontal centering */
  text-align: center;          /* text inside is centered */
  min-height: 500px;           /* adjust as needed for vertical space */
  padding: 5rem 1rem;          /* preserves your py-5 padding */
}

@media (max-width: 767.98px) {
  .feature-bg-section-overlay_team {
    min-height: 350px;
  }
}


/* 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; /* always at least full screen height */
}

/* 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: 260vh; /* still fills screen */
  }
}

@media (max-width: 576px) {
  .hero-overlay_meet_md {
    min-height: 265vh; /* still fills screen */
  }
}

/* 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;
}


.content-on-video {
  flex: 1;
  z-index: 3;
  height: 100%;
}

.button-bar-wrapper {
  position: absolute;
  top: 22%;             /* vertical center */
  left: 50%;            /* horizontal center */
  transform: translate(-50%, -50%);
  background: rgba(212, 5, 0, 0.35);
  padding: 12px 20px;
  border-radius: none;
  z-index: 4;
  width: 100%;          /* prevent full viewport width */
}

.button-bar .btn {
  white-space: nowrap; /* prevent breaking mid-word */
}



.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-section {
  padding: 2rem 1rem;
}

.estates-scroll-container {
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 1rem;
  white-space: nowrap;
  width: 100vw ;
  margin-left: -1rem;
  margin-right: -1rem;
  width: calc(100vw - var(--bs-gutter-x, 0)); 
  margin-left: calc(-1 * var(--bs-gutter-x, 0));
  margin-right: calc(-1 * var(--bs-gutter-x, 0));
  -ms-overflow-style: none;  
  scrollbar-color: #D40500 #f1f1f1; /* thumb color | track color */
}

/* Chrome, Safari, Edge (WebKit/Blink) */
.estates-scroll-container::-webkit-scrollbar {
  height: 8px; /* height of horizontal scrollbar */
}

.estates-scroll-container::-webkit-scrollbar-track {
  background: #f1f1f1; /* track color */
  border-radius: 10px;
}

.estates-scroll-container::-webkit-scrollbar-thumb {
  background: #D40500; /* scrollbar thumb */
  border-radius: 10px;
}

.estates-scroll-container::-webkit-scrollbar-thumb:hover {
  background: #D40500; /* darker on hover */
}

.estates-wrapper {
  display: inline-flex;
  gap: 1rem;
  padding: 0 1rem;
  scroll-snap-type: x mandatory;
}

.estate-card {
  flex: 0 0 auto;
  width: 80vw;
  max-width: 425px;
  scroll-snap-align: start;
  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 h4{
  font-size: 18px;
}

.card-content p {
  margin: 0.3rem 0;
  font-size: 12px;
  color: #000;
} 






/* 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: 128px;
}

/* Tablet view: usually 768px - 1024px */
@media (max-width: 1024px) and (min-width: 768px) {
  .about_custom_margin_contact {
    margin-top: 145px;
  }
}

/* Mobile view: below 768px */
@media (max-width: 767px) {
  .about_custom_margin_contact {
    margin-top: 125px;
  }
}


.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: Desktop */
.about_custom_margin {
  margin-top: 128px;
  height: 540px;
}

/* Tablet view: usually 768px - 1024px */
@media (max-width: 1024px) and (min-width: 768px) {
  .about_custom_margin {
    margin-top: 145px;
    height: 440px;
  }
}

/* Mobile view: below 768px */
@media (max-width: 767px) {
  .about_custom_margin {
    margin-top: 125px;
    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;
  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%);
}
