










/* Container link styling */
.logo-link {
    display: inline-block;
    text-decoration: none;
}

/* Logo image styling */
img.logo {
    max-width: 180px;
    /* Set your preferred max width */
    height: auto;
    /* Maintains aspect ratio */
    display: block;
    /* Removes unwanted bottom spacing */
    object-fit: contain;
    /* Keeps logo clean inside container */
    transition: transform 0.3s ease, opacity 0.3s ease;
    background-color: transparent;
}

/* Optional hover effect */
.logo:hover {
    transform: scale(1.05);
    opacity: 0.9;
}




/* Our Services */
img.our-services-image {
    width: 100%;
    height: 260px;
}


/* Builder Floor For Sale */
img.Builder-Floor-image {
    width: 100%;
    height: 250px;
}



/* services */
/* General container styling */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}



/* Image Styling */
.services-image {
    width: 100px;
    height: 100px !important;
    object-fit: cover;
    display: block;
    margin: 0 auto 15px;
}

/* Title Styling */
.heading-title {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0px 10px;
    color: #333;
    text-align: center;
}

/* Button Styling */
.btns {
    display: inline-block;
    margin: 10px auto 20px;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btns:hover {
    background-color: #0056b3;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .col-6 {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 576px) {
    .col-6 {
        flex: 1 1 100%;
    }

    .heading-title {
        font-size: 14px;
    }
}













/* header */
/* Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
}

header#masthead {
    background: #fff;
    border-bottom: 1px solid #ddd;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
}

/* Logo */
.logo img {
    max-height: 50px;
    width: auto;
}

/* Navigation */
nav.main-navigation {
    position: relative;
}

/* Menu toggle button (mobile) */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.screen-reader-text {
    position: absolute;
    left: -9999px;
}

ul.menu {
    list-style: none;
    display: flex;
    gap: 20px;
}

ul.menu li {
    position: relative;
}

ul.menu>li>a {
    text-decoration: none;
    color: #333;
    padding: 10px 5px;
    display: inline-block;
    font-size: 18px;
}

/* Submenu */
ul.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #ddd;
    display: none;
    min-width: 180px;
    z-index: 1000;
}

ul.sub-menu li a {
    padding: 10px 15px;
    display: block;
    color: #333;
    font-size: 18px;
}


ul.menu li:hover>ul.sub-menu,
ul.menu li:focus-within>ul.sub-menu {
    display: block;
}

/* Responsive styles */
@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .menu-toggle {
        display: block;
    }

    ul.menu {
        flex-direction: column;
        width: 100%;
        display: none;
        /* Hidden by default on mobile */
        margin-top: 10px;
        border-top: 1px solid #ddd;
        padding-top: 10px;
    }

    ul.menu.active {
        display: flex;
    }

    ul.menu li {
        width: 100%;
    }

    ul.menu>li>a {
        padding: 12px 10px;
        border-bottom: 1px solid #eee;
    }

    /* Submenu styling on mobile */
    ul.sub-menu {
        position: static;
        border: none;
        background: #f9f9f9;
        padding-left: 20px;
        display: none;
    }

    ul.menu li.open>ul.sub-menu {
        display: block;
    }
}







/* header scroller*/

.carousel-item {
    height: 80vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.carousel-caption {
    bottom: 20%;
}

.carousel-caption h2 {
    color: black;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
    font-size: 30px;
}


.carousel-caption p {
    color: black;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
    font-size: 25px;
}

.carousel-caption.text-center {
    bottom: 60px;
}

/* Responsive text adjustments */
@media (max-width: 768px) {
    .carousel-caption h2 {
        font-size: 1.5rem;
    }

    .carousel-caption p {
        font-size: 1rem;
    }

    .carousel-caption {
        bottom: 10%;
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .carousel-item {
    height: 30vh;
    min-height: 235px;
    background-size: cover;
    background-position: center;
    position: relative;
}

    .carousel-caption h2 {
        font-size: 1.25rem;
    }

    .carousel-caption p {
        font-size: 0.95rem;
    }

    .carousel-caption {
        bottom: 20% !important;
        padding: 0 10px;
    }
}




/* ===================================================== */


















/* Builder Floor */


.builder-floor-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    padding: 30px 20px;
    background-color: #f8f8f8;
    border-radius: 10px;
}

.builder-logo img {
    width: 100px;
    height: auto;
    object-fit: contain;
}

.builder-heading h2 {
    font-size: 28px;
    color: #222;
    margin: 10px 0 0;
    font-weight: 600;
}

.builder-heading h3 {
    font-size: 18px;
    color: #555;
    font-weight: 400;
    margin: 5px 0 0;
}

/* Responsive tweaks */
@media (max-width: 600px) {
    .builder-heading h2 {
        font-size: 24px;
    }

    .builder-heading h3 {
        font-size: 16px;
    }
}

 /* Flex container with space-between */
  .form-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    flex-wrap: wrap;
  }

  /* Shared link button styling */
  .form-bottom a {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
  }

  /* Price Request button (left) */
  .request-link {
    background-color: #007bff;
    color: #fff;
  }

  .request-link:hover {
    background-color: #0056b3;
  }

  .whatsapp {
    margin-top: 15px;
  }

  /* WhatsApp button (right) */
  .whatsapp-link {
    background-color: midnightblue;
    color: #fff;
  }

  .whatsapp-link:hover {
    background-color: #128C7E;
  }

  .whatsapp-link i {
    margin-right: 8px;
    font-size: 18px;
    color: #25D366;
  }

  /* Responsive behavior: stack vertically on small screens */
  @media (max-width: 600px) {
    .form-bottom {
      flex-direction: column;
      align-items: stretch;
      gap: 10px;
    }

    .form-bottom .Request,
    .form-bottom .whatsapp {
      width: 100%;
      display: flex;
      justify-content: center;
    }

    .form-bottom a {
      width: 100%;
      justify-content: center;
    }

    .form-bottom a {
    display: inline-flex;
    align-items: center;
    padding: 5px 5px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  }






/* ====== Base Reset & Container Setup ====== */


.container {
    max-width: 1200px;
    margin: auto;
    padding: 1rem;
}

section.Builder.Floor {
    padding: 20px 0;
}

/* ====== Responsive Grid ====== */
/* .row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
} */

/* .col-6,
.col-sm-6,
.col-md-4,
.col-lg-4 {
  flex: 1 1 calc(33.333% - 20px);
} */

@media (max-width: 992px) {
    .col-md-4 {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 600px) {

    .col-md-4,
    .col-sm-6 {
        flex: 1 1 100%;
    }
}

/* ====== Card Styles ====== */
.property_card_ele_stylish {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    margin: 10px;
}

.property_card_ele_stylish:hover {
    transform: translateY(-5px);
}

.thumbnail_wrapper {
    position: relative;
}

.thumbnail_wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 16/9;
}

/* ====== Status Tag ====== */
.bottom_tags_box {
    position: absolute;
    top: 10px;
    left: 10px;
}

.prop_status_sty {
    padding: 6px 12px;
    font-size: 13px;
    border-radius: 4px;
    background-color: midnightblue;
    color: white;
    font-weight: bold;
    display: inline-block;
}

/* ====== Property Details ====== */
.detail_wrapper {
    padding: 20px;
}

h1.heading_stylish {
    font-size: 18px;
}

.heading_stylish a:hover {
    color: midnightblue;
}

.address_sty {
    margin: 10px 0;
    font-size: 14px;
    color: #555;
    display: flex;
    align-items: center;
}

.address_sty i {
    margin-right: 5px;
}

/* ====== Property Meta Info ====== */
.prop_card_meta_wrap_stylish {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    gap: 10px;
    flex-wrap: wrap;
}

.prop_card__meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.meta_titles {
    font-size: 12px;
    color: #777;
    margin-bottom: 5px;
}

.meta_icon_wrapper {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #333;
}

.meta_icon_wrapper i {
    margin-right: 5px;
    color: #444;
}

.meta_icon_wrapper .figure {
    font-weight: bold;
    font-size: 14px;
}

.meta_icon_wrapper .label {
    margin-left: 2px;
    font-size: 13px;
    color: #666;
}

/* ====== Request Button/Link ====== */
.Request {
    margin-top: 15px;
}

.Request a {
    display: inline-block;
    background-color: midnightblue;
    color: white;
    padding: 10px 16px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.Request a:hover {
    background-color: #2c2c72;
}

.elementor-widget-container {
    font-size: 15px;
}


/* ====== Responsive Grid ====== */
/* .row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.col-6,
.col-sm-6,
.col-md-4,
.col-lg-4 {
  flex: 1 1 calc(33.333% - 20px); 
} */

/* Tablet (max-width: 992px) – show 2 per row */
@media (max-width: 992px) {
    .col-md-4 {
        flex: 1 1 calc(50% - 20px);
    }
}

/* Mobile (max-width: 600px) – show 2 per row */
@media (max-width: 600px) {

    .col-md-4,
    .col-sm-6 {
        flex: 1 1 calc(50% - 20px);
    }

    img.Builder-images {
        width: 100%;
        height: 150px;
    }

    h1.heading_stylish {
        font-size: 14px;
    }

    .detail_wrapper {
        padding: 5px;
    }

    .Request a {
        display: inline-block;
        background-color: midnightblue;
        color: white;
        padding: 5px 5px;
        border-radius: 5px;
        text-decoration: none;
        font-size: 14px;
        transition: background-color 0.3s ease;
        text-align: center;
    }

    .prop_status_sty {
        padding: 3px 3px;
        font-size: 12px;
        border-radius: 4px;
        background-color: midnightblue;
        color: white;
        font-weight: bold;
        display: inline-block;
    }

    .property_card_ele_stylish {
        background: #fff;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease;
        margin: 0px;
    }

}


/* our services */
.section-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.learn-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.learn-btn:hover {
    background-color: #0056b3;
}





/* Clients Testimonials */
/* Wrapper */
.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 15px;
    box-sizing: border-box;
}

/* Inner Content Box */
.swiper-slide-inner {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    max-width: 700px;
    width: 100%;
    padding: 30px;
    transition: transform 0.3s ease;
}

.swiper-slide:hover .swiper-slide-inner {
    transform: translateY(-5px);
}

/* Testimonial Container */
.single-testimonial-slider {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Commentor Bio */
.commentor-bio {
    display: flex;
    align-items: center;
    gap: 15px;
}

.commentor-image img {
    border-radius: 50%;
    object-fit: cover;
    width: 70px;
    height: 70px;
    border: 3px solid #f0f0f0;
}

/* Profile Info */
.profile-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.author-des {
    font-size: 14px;
    color: #888;
}

/* Testimonial Content */
.commentor-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 10px;
    text-align: justify;
}

/* Stars */
.commentor-content span {
    color: #FFD700;
    font-size: 22px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .swiper-slide-inner {
        padding: 25px 20px;
    }

    .commentor-content p {
        font-size: 15px;
    }

    .author-name {
        font-size: 16px;
    }

    .commentor-image img {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .swiper-slide-inner {
        padding: 20px 15px;
    }

    .single-testimonial-slider {
        gap: 15px;
    }

    .commentor-content p {
        font-size: 14px;
    }

    .author-name {
        font-size: 15px;
    }

    .author-des {
        font-size: 13px;
    }

    .commentor-image img {
        width: 50px;
        height: 50px;
    }
}

/* Navigation Arrows */
.swiper-button-next,
.swiper-button-prev {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    top: 70%;
    transform: translateY(-50%);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 24px;
    /* Adjust this to change arrow size */
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.05);
}

.swiper-button-next {
    right: 10px;
}

.swiper-button-prev {
    left: 10px;
}

/* Pagination container */
.swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
    gap: 20px;
}

.swiper-pagination {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    z-index: 10;
}



/* Default bullets */
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #db1919;
    opacity: 0.7;
    border-radius: 50%;
    margin: 0 6px;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

/* Active bullet */
.swiper-pagination-bullet-active {
    background-color: #FFD700;
    /* Gold */
    opacity: 1;
    transform: scale(1.4);
}


/* Responsive positioning for smaller screens */
@media (max-width: 768px) {

    .swiper-button-next,
    .swiper-button-prev {
        width: 36px;
        height: 36px;
    }

    .swiper-button-next {
        right: 5px;
    }

    .swiper-button-prev {
        left: 5px;
    }
}





/* scroll card section */
section.scroller {
    place-items: center;
}

.scroller-container {
    --slide-width: clamp(150px, 20vw, 300px);
    --slide-gap: calc(var(--slide-width) * 0.06);
    --slide-border-radius: calc(var(--slide-width) * 0.06);

    overflow: hidden;
    width: 90vw;
    position: relative;

    &::before {
        position: absolute;
        content: "";
        width: var(--slide-width);
        left: 0;
        top: 0;
        bottom: 0;
        z-index: 1;

        background: linear-gradient(90deg, var(--background-color), transparent);
    }

    &::after {
        position: absolute;
        content: "";
        width: var(--slide-width);
        right: 0;
        top: 0;
        bottom: 0;
        z-index: 1;

        background: linear-gradient(90deg, transparent, var(--background-color));
    }
}

.scroller-wrapper {
    display: flex;
    justify-content: flex-start;
    gap: var(--slide-gap);
    width: calc((var(--slide-width) + var(--slide-gap)) * 3);

    animation: moveLeft 8s linear infinite;
}

.scroller-slide {
    flex: none;
    width: var(--slide-width);
    aspect-ratio: 9/16;
    background: #eee;
    border-radius: var(--slide-border-radius);
    overflow: hidden;
    cursor: pointer;
    height: 400px;
}

@keyframes moveLeft {
    from {
        transform: translatex(0);
    }

    to {
        transform: translatex(-100%);
    }
}

img.scroll-image {
    width: 100%;
    height: 300px;
}

.scroller-slide {
    position: relative;
    display: inline-block;
}

.slide-text {
    position: absolute;
    left: 10px;
    color: black;
    font-size: 18px;
    font-weight: bold;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}


/* Responsive Design */
@media (max-width: 768px) {
    img.scroll-image {
        width: 100%;
        height: 200px;
    }

    .slide-text {
        position: absolute;
        left: 10px;
        color: black;
        font-size: 14px;
        /* font-weight: bold; */
        /* text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7); */
    }

    .scroller-slide {
        flex: none;
        width: var(--slide-width);
        aspect-ratio: 9 / 16;
        background: #eee;
        border-radius: var(--slide-border-radius);
        overflow: hidden;
        cursor: pointer;
        height: 300px;
    }


}

@media (max-width: 480px) {
    img.scroll-image {
        width: 100%;
        height: 200px;
    }

    .slide-text {
        position: absolute;
        left: 10px;
        color: black;
        font-size: 14px;
        font-weight: normal;
        text-shadow: 0 0 0;
    }

    .scroller-slide {
        flex: none;
        width: var(--slide-width);
        aspect-ratio: 9 / 16;
        background: #eee;
        border-radius: var(--slide-border-radius);
        overflow: hidden;
        cursor: pointer;
        height: 300px;
    }

}