@font-face {
    font-family: 'AEDCurrencySymbol';
    src: url('../font/aed-regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

.aed-currency-display {
    font-family: 'AEDCurrencySymbol', sans-serif;
    white-space: nowrap;
}

.about-margin-top {
    margin-top: 4%;
}

@media (max-width: 767px) {
    .nav-margin-top {
        margin-top: 0% !important;
    }

    .mob-margin {
        margin-top: 0%;
    }
}

.bg-footer {
    background-color: #003C51 !important;
}



.video-background-index {
    position: relative;
    /* not fixed */
    width: 100%;
    height: 100vh;
    /* full viewport height */
    overflow: hidden;
    background: black;
    /* fill background if video doesn't cover */
}

.video-background {
    position: relative;
    /* not fixed */
    width: 100%;
    height: 50vh;
    /* full viewport height */
    overflow: hidden;
    background: black;
    /* fill background if video doesn't cover */
}

.video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.content {
    position: relative;
}

.home-search-margin {
    margin-top: 35%;
}

.img-thumbnail {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 5px;
    width: 100%;
    height: auto;
}



.text-listing,
.c-white {
    color: #fff !important;
}

.c-heading-2 {
    font-size: 14px;
}



.swiper {
    width: 100%;
    padding-bottom: 40px;
    /* To make space for pagination dots if they overlap content */
}

.swiper-button-prev,
.swiper-button-next {
    color: #fff;
    /* Example: make arrows white */
}


.swiper-slide img {
    object-fit: cover !important;
}

.subtle-loc-top-margin {
    padding-top: 0px !important;
}

.pagination .page-item .page-link {
    color: black;
    background-color: white;
    border-color: #dee2e6;
}

.pagination .page-item .page-link:hover {
    color: white;
    background-color: #808080;
    border-color: #808080;
}

.pagination .page-item.active .page-link {
    color: white;
    background-color: black;
    border-color: black;
}

.pagination .page-item.active .page-link:hover {
    color: white;
    background-color: #333333;
    border-color: #333333;
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    background-color: #e9ecef;
    border-color: #dee2e6;
    cursor: not-allowed;
}

.full-screen {
    height: 100vh !important;
}

.agent-font-size {
    font-size: 18px !important;
    margin-bottom: 10px !important;
}

.agent-det-font-size {
    font-size: 14px !important;
}

.search-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    padding: 20px;
    border-radius: 8px;
}

.search-overlay form {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.navigation {
    position: fixed;

}


.navbar {
    position: fixed;
    /* Your desired positioning */
    top: 0;
    /* Stick to the top of the viewport */
    left: 0;
    /* Align to the left edge */
    width: 100%;
    /* *** CRITICAL: Make it span the full width of the viewport *** */
    z-index: 1030;
    /* A common high z-index for Bootstrap navbars to ensure it's on top */
    transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out, backdrop-filter 0.3s ease-in-out;
    margin-top: -10px;
}

.navbar.navbar-scrolled {
    background-color: #003C51;
    /* Semi-transparent black */


}

.watsapp-font {
    font-size: 16px;
}

.phone-font {
    font-size: 12px;
}

@media (min-width: 1400px) {
    .mt-xxl-5 {
        margin-top: 15rem !important;
    }
}

.emirate-font-size {
    font-size: 16px;
}

.agent-card-wrapper {
    position: relative;
    /* Essential for positioning children and pseudo-elements */
    width: 100%;
    height: 560px;
    overflow: hidden;
    display: flex;
    /* Keeping flex for the content alignment you had */
    align-items: flex-end;
    /* Keeps content at the bottom */
}

/* This is your image */
.agent-card-image {
    position: absolute;
    /* Allows it to be behind other content */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures the image fills the space */
    z-index: 1;
    /* Place the image below the gradient and content */
}

/* This is the gradient overlay */
.agent-card-wrapper::before {
    content: '';
    /* Necessary for pseudo-elements */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* This creates the gradient from bottom (opaque) to top (transparent) */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 2;
    /* Make sure the gradient is above the image */
}


.agent-card-content {
    position: relative;
    z-index: 5;
    padding: 20px;
    color: white;

}

.set-content-left-right {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: -10px;

}




.property-card-wrapper {
    position: relative;
    width: 100%;
    height: 512px;
    overflow: hidden;
    display: flex;
    /* Keep as flex to allow align-items: flex-end for content */
    align-items: flex-end;
    /* Keeps property-card-content at the bottom */
}

.property-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.property-card-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
}

.property-card-content {
    position: relative;
    z-index: 5;
    padding: 20px;
    color: white;
    width: 100%;
    text-align: left;
    margin-bottom: -38px;
}

.property-developer {
    font-size: 1.2em;
    /* Adjust as needed */
    color: white;
    /* Ensure text color is white as it's now outside property-card-content */
    top: 20px;
    /* Adjust top spacing as needed */
    left: 50%;
    /* Center horizontally */
    transform: translateX(-50%);
    /* Adjust for true center */
    z-index: 10;
    /* Ensure it's above other elements like image and overlay */
    text-align: center;
    /* Ensure the text itself is centered */
    width: 100%;
    /* Allows translateX to work consistently */
    text-transform: uppercase;
    /* This line makes the text all caps */

}

.property-project {
    font-size: 18px;
    font-weight: bold;
}

.property-details-line {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 5px;
}

.property-price {
    font-size: 18px;
    font-weight: bold;
}

.property-location {
    font-size: 1.1em;
    margin-bottom: 20px;
}

.property-details-button {
    display: inline-block;
    padding: 5px 13px;
    background-color: transparent;
    border: 1px solid white;
    color: white;
    text-decoration: none;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-size: 10px;
}

.property-details-button:hover {
    background-color: white;
    color: black;
}

.property-title-price-row {
    display: flex;
    justify-content: space-between;
    /* Pushes items to opposite ends */
    align-items: baseline;
    /* Aligns content based on text baseline */
    margin-bottom: 10px;
    margin-top: 10px;
}

.property-border {
    border-bottom: 1px solid rgba(255, 255, 255, 0.858);
    transition: 0.4s;
}

.offcanvas-body {
    overflow-y: visible !important;
    background-color: transparent;

    backdrop-filter: blur(10px);
    /* Apply blur effect */
    -webkit-backdrop-filter: blur(5px);
}

.offcanvas-header {
    padding: 13px;
}

.eliminate-swiper-width {
    max-width: 100% !important;
}


/* Container for the image and overlay/content */
.banner-container {
    position: relative;
    /* Essential for positioning children absolutely */
    width: 100%;
    height: 600px;
    /* Or whatever fixed height you want for your banner */
    overflow: hidden;
    /* Ensures image and overlay don't spill out */
}

/* The actual image tag for the banner */
.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures the image covers the container without distortion */
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    /* Puts the image behind the overlay and content */
}

/* The overlay for the gradient effect */
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    z-index: 2;
    /* Puts the overlay on top of the image */
}

/* Container for all the text content and navigation */
.banner-content {
    position: relative;
    /* Or absolute, depending on desired layout, relative keeps it in flow */
    z-index: 3;
    /* Puts content on top of image and overlay */
    height: 100%;
    /* Ensures it fills the container for alignment */
    display: flex;
    /* Helps with aligning nav and text */
    flex-direction: column;
    /* Stacks nav and text vertically */
}

/* Styling for the text content area (home > property detail, h1) */
.banner-text-area {
    flex-grow: 1;
    /* Allows it to take up available space */
    padding-bottom: 50px;
    /* Adjust as needed for spacing from bottom */
}

.footer-heading {
    color: white;
}

.margin-property-listing {
    padding-top: 20px !important;
}




.half-screen {
    height: 50vh;

}


.listing-search-margin {
    margin-top: 15% !important;
}

.blog-banner-heading {
    font-size: 58px !important;
    margin-top: 40% !important;
}

.service-heading {
    font-size: 14px;
    font-weight: 800;
}

.large-icon {
    width: 40px !important;
}

.service-description {
    font-size: 14px !important;
}

.blog-subtitle {
    color: rgb(0, 0, 0);
    font-family: var(--font-1);
    opacity: 0.8;
}

.c-black {
    color: rgb(0, 0, 0);
}

.blog-padding {
    padding-top: 20px !important;
    padding-bottom: 0px !important;
}

.blog-img-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;

}

.data-why-choose-us {
    font-size: 30px;
}

.home-emirate-nav {
    color: black !important;
}

.heading-ceo-font {
    font-size: 46px !important;
}

.description-ceo-font {
    font-size: 14px !important;
}

.remove-top {
    padding-top: 0px !important;
}

.paragraph-clss-remv {
    font-size: 45px !important;
    font-weight: 0 !important;
    line-height: 0.5em !important;
}

.min-vh-74 {
    min-height: 74vh !important;
}

.about-us-heading {
    font-size: 45px !important;
}

.c-gold {
    color: #b59350;
}

.footer-content {
    font-size: 14px !important;
}

.bg-subtle {
    font-size: 14px !important;
}

/* .contact-form {
    border: 1px solid black; 
} */
.c-offwhite {
    color: #b5b5b5;
}

.about-us-heading {
    font-size: 50px !important;
}

.c-heading-2 .ceo-strong {
    font-family: Arial, sans-serif !important;

    font-weight: 700 !important;
    /* Use 700 for a stronger bold if 600 isn't visible */
}

.social-fixed {
    position: fixed;
    top: 85%;
    /* Middle vertically */
    right: 20px;
    /* Push away from right edge */
    transform: translateY(-50%);
    /* Center align */
    display: flex;
    flex-direction: column;
    /* Stack icons vertically */
    gap: 15px;
    /* Space between icons */
    z-index: 1100;
    /* Stay above other elements */
}

.service-details {
    width: 52%;
}
/* Flex container for content */
.content-bottom-mobile {
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* top by default */
    height: 100vh; /* full viewport height so content can move */
}

/* Mobile layout */
@media (max-width: 767px) {
    .content-bottom-mobile {
        justify-content: flex-end; /* move content to bottom */
        padding-bottom: 70px; /* optional spacing from bottom */
    }
    .set-content-up{
        margin-top: -40px;
    }
       .mob-font{
        font-size: 30px !important;
    }
    .min-vh-74 {
        min-height: 28vh !important; /* or any value you prefer for mobile */
      }
}

.hero-form-select {
    font-weight: 700;            /* strong bold text */
 
}

.hero-form-select option {
    font-weight: 600; 
           
}

.social-icon-32 {
    font-weight: 700;

}

@media (min-width: 1400px) {
    .community-width{
        max-width: 1000px !important;
    }
}
@keyframes marquee-scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
  .marquee-logo {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
  }
  
  .marquee-logo-content {
    display: flex;
    gap: 30px;
    animation: marquee-scroll 50s linear infinite;
    width: max-content;
  }
  
  .marquee-logo-item img {
    width: 200px;
    height: auto;
    display: block;
  }
.eliminate-padding-bottom{
    padding-bottom: 0px !important;
}

.attachment__caption {
    display: none !important;
  }

  @media (max-width: 767px) {
    .nav-tabs {
      flex-wrap: nowrap;           /* prevent wrapping */
      white-space: nowrap;         /* keep text inline */
    }
  
    .nav-tabs .nav-item {
      flex: 1 0 auto;              /* each tab fits its content */
      text-align: center;
    }
  }

  .img-height {

    height: 200px !important;
}

.no-radius {
 
    border-radius: 0px !important;
}

  


.community {
    position: relative;
    display: block;
    overflow: hidden;
  }
  
  .community img {
    width: 100%;
    height: 500px;
    display: block;
    transition: transform 0.3s ease;
  }
  
  .community-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* grey overlay */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease;
  }
  
  .community-overlay .overlay-text {
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    pointer-events: none; /* allows clicking the image */
  }
  
  /* Hover effects */
  .community:hover img {
    transform: scale(1.05);
  }
  
  .community:hover .community-overlay {
    background-color: rgba(128, 128, 128, 0.6); /* darker on hover */
  }
  
  figure.attachment,
figure[data-trix-content-type^="image/"] {
  display: flex;
  justify-content: center;
  margin: 1.5rem 0;
  width: 100%;
}

figure.attachment img {
  max-width: 100%;      /* Responsive within container */
  height: auto;         /* Maintain aspect ratio */
  border-radius: 10px;  /* Optional styling */
  object-fit: cover;    /* If you want cropped fit */
}

/* Optional: Style captions */
figure.attachment figcaption {
  font-size: 0.9rem;
  color: #666;
  text-align: center;
  margin-top: 0.5rem;
}
.header-find{
font-size: 14px !important;
}

.margin-inc{
padding-top: 150px !important;
}

/* General form layout */
.form-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Dropdowns */
.hero-form-select {
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 14px;
    min-width: 150px;
}

/* Search button */
.search-btn {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 10px 14px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background-color: #333;
}

/* 🌟 Mobile Optimization */
@media (max-width: 768px) {
    .form-container {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .hero-form-select {
        width: 100%;
    }

    .search-btn {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        margin: 0 auto;
        display: block;
    }
}

/* 💻 Desktop tweak: keep button aligned to end of "Type" */
@media (min-width: 769px) {
    .form-container {
        flex-wrap: nowrap;
        justify-content: flex-start;
    }

    .hero-form-select {
        flex: 1;
        max-width: 200px;
    }

    .search-btn {
        margin-left: 0.5rem;
    }
}
.details-margin-left{
    margin-left: 0.5%;
}


element.style {
    margin-left: 27%;
}

.swiper-button-next, .swiper-button-prev {
   
    width: 4% !important;
}

