/* Custom Scrollbar for WebKit Browsers */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3); /* Semi-transparent black */
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: inset 0 0 15px rgba(20, 85, 147, 0.3);
}

/* Scrollbar Thumb (the moving part) */
::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #145593, #e2a922, #145593);
    border-radius: 12px;
    box-shadow: 0 0 15px #e2a922,
                0 0 25px #145593,
                0 0 35px #e2a922;
    animation: glow 2s infinite alternate;
    transition: all 0.3s ease-in-out;
}

/* Hover Effect */
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #e2a922, #145593, #e2a922);
    box-shadow: 0 0 20px rgba(226, 169, 34, 1),
                0 0 30px rgba(20, 85, 147, 1),
                0 0 40px rgba(226, 169, 34, 1);
    transform: scale(1.1);
}

/* Glowing Animation */
@keyframes glow {
    0% {
        box-shadow: 0 0 15px rgba(20, 85, 147, 0.8),
                    0 0 25px rgba(226, 169, 34, 0.7),
                    0 0 35px rgba(20, 85, 147, 0.9);
    }
    100% {
        box-shadow: 0 0 25px rgba(226, 169, 34, 1),
                    0 0 35px rgba(20, 85, 147, 1),
                    0 0 45px rgba(226, 169, 34, 1);
    }
}

/* Firefox Custom Scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: #e2a922 #145593;
}

/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f4f4;
    color: #333;
}

/* Navbar */
.navbar {
    background: #fff ;
    padding: 0px 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.navbar a {
    color: #D4A017 ;
}
.navbar-brand img {
    max-height: 80px;
    transition: transform 0.3s ease-in-out;
}

.navbar-brand img:hover {
    transform: scale(1.1);
}

.navbar-toggler {
    border: none;
    outline: none;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5); /* White border */
}

.navbar-toggler-icon {
    filter: invert(16%) sepia(47%) saturate(2211%) hue-rotate(183deg) brightness(97%) contrast(88%);
}



.navbar-nav {
    text-align: center;
}

.navbar-nav .nav-item {
    margin: 5px 0;
}

.navbar-nav .nav-link {
    color: #145593  !important;
    font-size: 18px;
    padding: 10px;
    transition: 0.3s ease-in-out;
    font-weight: 500;
}

.navbar-nav .nav-link:hover {
    color: #e2a922 !important;
    transform: scale(1.1);
}

/* Banner */
#carouselExampleCaptions {
    max-height: 550px;
    overflow: hidden;
    border-radius: 15px;
    margin: 40px auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.carousel-item img {
    height: 550px;
    object-fit: cover;
    filter: brightness(0.6);
    width: 100%;
    transition: filter 0.5s ease-in-out;
}

.carousel-item:hover img {
    filter: brightness(0.8);
}

/* Centered Caption */
.carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    padding: 10px;
}

.carousel-caption h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
    animation: fadeIn 1.5s ease-in-out;
}

.carousel-caption p {
    font-size: 1.3rem;
    color: #ddd;
    animation: fadeIn 2s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Search Tabs */
.main-search {
    background-color: rgba(0, 0, 0, 0.534);
    padding: 5px;
    padding-top: 20px;
    border-radius: 15px;
    max-width: 80%;
    margin: 0px auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Wrapper for the buttons */
.search-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 equal columns */
    gap: 12px; /* Space between buttons */
    width: 100%;
    max-width: 600px; /* Adjust max width */
    margin: auto; /* Centering */
}

/* Button styling */
.search-btn {
    text-align: center;
    text-decoration: none;
    padding: 12px 18px;
    border-radius: 8px;
    background: linear-gradient(135deg, #142193 0%, #145593 100%);
    color: white;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px; /* Space between icon and text */
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: auto;
}

/* Hover effect */
.search-btn:hover {
    background: linear-gradient(135deg, #aa7d15 0%, #e2a922 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Mobile View: Keeps buttons side by side */
@media (max-width: 576px) {
    .search-buttons {
        grid-template-columns: repeat(3, 1fr); /* Still 3 buttons in one row */
    }
    .search-btn {
        font-size: 13px;
        padding: 10px;
        border-radius: 6px;
    }
    .carousel-caption h1{
        font-size: 1rem !important;
    }
    .carousel-caption {
        top: 45% !important;
}
.trending-section-title{
    font-size: 1rem !important;
    margin-bottom:0px !important;padding-bottom:0px !important;
}
.trending-properties-section{
    padding: 0px !important;
    padding-top: 20px !important;
}
.luxury-properties-section{
    padding: 20px !important;
}
.luxury-section-title{
    font-size: 1.6rem !important;
    /* padding: 20px !important; */
}
.section-title{
    font-size: 1rem !important;
}
}
.main-search ul li {
    list-style: none;
    margin: 5px;
}

.main-search ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    padding: 8px 15px;
    display: inline-block;
    transition: 0.3s ease-in-out;
    border-radius: 8px;
    background-color: #c0a080 ;
}

.main-search ul li a:hover {
    color: #c0a080;
    transform: scale(1.1);
    background-color: rgba(255, 255, 255, 0.1);
}

/* Transparent Search Form */
.search-form {
    background: rgba(0, 0, 0, 0); /* Subtle transparency */
    padding: 20px;
    border-radius: 12px;
    max-width: 85%;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.search-form input::placeholder{
    font-size: 13px;
    color: rgb(255, 255, 255)  !important;
}
.search-form input{
    /* outline: red !important; */
    /* border: 1px solid rgb(76, 0, 255) !important; */
}
.search-form select{
    font-size: 13px;
    height: 52px !important;
}
/* Input Fields */
.search-form .form-control,
.search-form .form-select {
    padding: 12px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: border-color 0.3s ease-in-out;
}

.search-form .form-control:focus,
.search-form .form-select:focus {
    border-color: #c0a080;
    outline: none;
}

.search-form .form-control::placeholder {
    color: #ddd;
}

.search-form .form-select {
    color: #ddd;
}

/* Submit Button */
.search-form .btn-primary {
    background: #c0a080;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    color: #532724;
    transition: 0.3s;
    border-radius: 8px;
}

.search-form .btn-primary:hover {
    background: #a08060;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .carousel-item img {
        height: 400px;
    }

    .carousel-caption h1 {
        font-size: 2rem;
    }

    .carousel-caption p {
        font-size: 1.1rem;
    }

    .main-search {
        max-width: 90%;
    }


}

@media (max-width: 768px) {
    .carousel-item img {
        height: 330px;
        margin-top: 50px;
    }
    .carousel-caption{
        padding: 0;
    }
    .carousel-caption h1,p{
      /* display: none; */
    }
    .main-search{
        max-width: 100%;
        width: 100% !important;
        margin: 0;
        padding: 0 !important;
        /* margin-top: -40px; */
    }
    .main-search form {
        width: 100%;
        margin: 0;
        padding: 0;
        border-radius: 0;
    }
    .main-search ul {
        display: flex !important;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        gap: 20px;
        padding: 0 !important;
        margin: 0 !important;
        list-style: none !important;
        border: 2px solid red; /* Debugging - see if CSS applies */
    }

    .main-search ul li {
        display: inline-block !important;
        border: 2px solid blue; /* Debugging */
    }

    .search-li a {
        display: block;
        text-decoration: none;
        padding: 10px 20px;
        border-radius: 5px;
        color: white;
        background: #532724;
        transition: background 0.3s ease-in-out;
    }

    .search-li a:hover {
        background: #7a3c34;
    }

    .search-form{
        display: flex !important;
        padding: 0;
        margin: 0;
        width: 100%;
        max-width: 100%;
    }
    .carousel-caption h1 {
        font-size: 1.8rem;
    }

    .carousel-caption p {
        font-size: 1rem;
    }

    .main-search ul {
        flex-direction: column;
        align-items: center;
    }

    .main-search ul li {
        margin-bottom: 5px;
    }

    /* Mobile Fix: Ensure All Inputs are Visible */

}

/* end hero section  */


/* start property section  */
/* .section-title {
    font-size: 24px;
    font-weight: bold;
    margin: 20px 0;
    color: #333;
}

.property-card {
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: 0.3s ease-in-out;
}

.property-card:hover {
    transform: scale(1.03);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

.badge-custom {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #17a2b8;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
}

.card-body {
    padding: 15px;
}

.price {
    font-size: 18px;
    font-weight: bold;
    color: #000;
}

.property-name {
    font-size: 16px;
    color: #555;
}

.location {
    font-size: 14px;
    color: #777;
}

.card-buttons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
} */
.swiper {
    width: 100%;
    height: auto;
    padding: 20px 0;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.property-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
    transition: transform 0.3s;
}

.property-card:hover {
    transform: scale(1.05);
}

.property-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.property-info {
    padding: 15px;
    text-align: left;
}

.price {
    /* font-weight: bold; */
    /* color: #ff5722; */
}

.details {
    display: block;
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}
.property-name{
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}
.property-name span{
    font-size: 15px;
    color: #777;
}
.property-location{
    font-size: 17px;
    color: #777;
}
.property-info h4 {
    margin: 5px 0;
}

.buttons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.buttons .btn {
    font-size: 14px;
    padding: 5px 10px;
}
.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    color: #145593 !important;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}
.section-title::after {
    content: "";
    display: block;
    width: 50px;
    height: 4px;
    background: #145593;
    margin: 8px auto ;
    /* margin-left: 5px; */
    border-radius: 2px;
}
@media screen and (max-width: 768px) {
    .section-title::after {
        content: "";
        display: block;
        width: 40px;
        height: 2px;
        background: #145593;
        margin: 8px auto ;
        /* margin-left: 5px; */
        border-radius: 2px;
    }
}
.swiper-button-next, .swiper-button-prev {
   background: transparent;
    padding: 15px;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    transition: background 0.3s ease;
}
.swiper-button-next:hover, .swiper-button-prev:hover {
    background: transparent;
}
.swiper-button-next::after, .swiper-button-prev::after {
    font-size: 24px;
    font-weight: bold;
}
.property-card {

    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    background: white;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
}
.property-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.property-info {
    text-align: left !important;
    padding: 15px;
    text-align: center;
}
.price {
    font-size: 15px;
    /* font-weight: 600;
    color: #532724; */
    color: #000;
    font-weight: 600;
}
.details {
    display: block;
    font-size: 14px;
    color: gray;
}
.buttons button {
    width: 100%;
    margin: 5px 0;
}
.btn-call {
    background-color: #532724;
    color: white;
}
.btn-whatsapp {
    background-color: #25D366;
    color: white;
}

.swiper-button-next, .swiper-button-prev {
    background:transparent !important;
    padding: 15px;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    transition: background 0.3s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px !important;
    height: 50px !important;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}
.swiper-button-next:hover, .swiper-button-prev:hover {
    background-color: #874c3c;
    transform: scale(1.1);
}
.swiper-button-next::after, .swiper-button-prev::after {
    font-size: 24px;
    font-weight: bold;
}
.swiper-button-prev:after {
    font-size: 20px !important;
    color: #fff !important;

}
.swiper-button-next:after {
    font-size: 20px !important;
    color: #fff !important;

}
.swiper-button-prev{
    margin-left: -10px !important;

}
.swiper-button-next{
    margin-right: -10px !important;

}
.swiper-wrapper{
    /* justify-content: center; */
    /* display: flex; */
}




/* upcoming properties  */
.swiper-container {
    width: 100%;
    padding: 0px 0;
}
.swiper-wrapper {
    display: flex;
    align-items: center;
}
    .upcomingproperty-card {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            padding: 15px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease-in-out;
        }
        .upcomingproperty-card:hover {
            transform: translateY(-5px);
        }
        .upcomingproperty-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-top-left-radius: 12px;
            border-top-right-radius: 12px;
        }
        .upcomingproperty-info {
            padding: 15px;
        }
        .upcomingproperty-info h4 {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 5px;
        }
        .upcomingproperty-info p {
            font-size: 14px;
            color: #555;
        }
        .upcomingproperty-buttons {
            display: flex;
            justify-content: space-between;
            padding: 10px 15px;
        }
        .swiper-button-next, .swiper-button-prev {
            color: #000;
            font-size: 24px;
        }
        @media (max-width: 992px) {
            .swiper-container {
                padding: 20px 0;
            }
            .upcomingproperty-card img {
                height: 180px;
            }
            .swiper-slide {
                width: 100% !important;
            }
        }
        @media (max-width: 768px) {
            .swiper-container {
                padding: 15px 0;
            }
            .upcomingproperty-card img {
                height: 160px;
            }
        }
        @media (max-width: 576px) {
            .swiper-container {
                padding: 10px 0;
            }
            .upcomingproperty-card img {
                height: 140px;
            }
            .heading_title{
                font-size: 1.4rem !important;
            }
        }


        /* trending  */
        .trending-section    .upcomingproperty-card{
            position: relative;
            padding: 0 !important;
        }
        .trending-section .swiper-slide{
            position: relative;
            padding: 0 !important;
        }
        .trending-section .swiper-slide .img{
            /* margin-top: -150px; */
            /* position: absolute; */
            z-index: 9999;
        }
        .trending-section .buttons{
            padding: 0
            15px 10px;
        }
        .details-btn{
            background-color: #532724;
            color: white;
            border: none;
            padding: 3px 7px;
            border-radius: 5px;
            cursor: pointer;
            margin-top: -13px;
            /* float: right; */
            right: 15px;
            font-size: 12px;
            position: absolute;
            text-decoration: none;
        }
/* start zones section  */
.property_by_zone {
    padding: 50px 0;
    background-color: #f8f9fa;
}

.heading_title {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    color: #145593;
    letter-spacing: 1px;
}
.head_small_text{
    font-size: 18px;
    font-weight: 500;
    margin-top: 5px;
    color: #939393;
    font-family: "open sans";
}
.zone_wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.zone_block {
    width: 180px;
    transition: transform 0.3s ease-in-out;
}

.zone_block a {
    text-decoration: none;
    display: block;
}

.zone_block:hover {
    transform: translateY(-5px);
}

.zone_img {
    width: 120px;
    height: 120px;
    border: 5px solid #fff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease-in-out;
}

.zone_block:hover .zone_img {
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
}

.zone_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.zone_info {
    margin-top: 10px;
}

.flats_text {
    font-size: 14px;
    color: #6c757d;
    font-weight: 500;
}

.zone_title {
    font-size: 20px;
    font-weight: bold;
    color: #145593;
}

.count_property {
    font-size: 14px;
    color: #444;
    font-weight: 500;
}

@media (max-width: 768px) {
    .zone_block { width: 150px; }
    .zone_img { width: 100px; height: 100px; }
    .zone_title { font-size: 18px; }
}

@media (max-width: 480px) {
    .zone_block { width: 130px; }
    .zone_img { width: 90px; height: 90px; }
    .zone_title { font-size: 16px; }
    .luxury-section-title {font-size: 1rem !important;margin-bottom:0px !important;padding-bottom:0px !important;}
}


/* Luxury Properties Section */
.luxury-properties-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #FAF9F6, #FAF9F6);
    color: #fff;
    overflow: hidden;
}
.luxury-properties-section .swiper-wrapper{
    /* overflow: hidden; */
    position: relative;
    padding: 30px 0px;
}
.luxury-section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(90deg, #145593, #145593);
    -webkit-background-clip: text;
    color: transparent;
}

.luxury-properties-swiper {
    width: 100%;
    padding: 20px 0;
}

.luxury-property-slide {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Luxury Property Card */
.luxury-property-card {
    background: #FFFFFF;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    perspective: 1000px;
    transform-style: preserve-3d;
    position: relative;
    color: #000;
}

.luxury-property-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* Property Image Wrapper */
.property-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 250px;
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
}

.luxury-property-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.luxury-property-card:hover .luxury-property-image {
    transform: scale(1.1);
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.5s ease;
}

.luxury-property-card:hover .parallax-overlay {
    background: rgba(0, 0, 0, 0.5);
}

/* Property Info */
.luxury-property-info {
    padding: 20px;
    color: #000;
    text-align: center;
}

.property-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 600;
    color: #333333;
}

.property-details {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #333333 !important;
}

.property-location {
    font-size: 1rem;
    color: #333333 !important;
}

/* Buttons */
.luxury-property-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 20px;
}

.btn-luxury-outline {
    background: transparent;
    border: 2px solid #532724;
    color: #532724;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-luxury-outline:hover {
    background: #532724;
    color: #fff;
    transform: translateY(-3px);
}

.btn-luxury-primary {
    background: linear-gradient(90deg, #532724, #8a4b3f);
    border: none;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-luxury-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 5px 15px rgba(83, 39, 36, 0.5);
}

/* Swiper Navigation */
.luxury-swiper-next,
.luxury-swiper-prev {
    color: #532724;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.luxury-swiper-next:hover,
.luxury-swiper-prev:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* Mouse Animation */
.luxury-property-card::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(17, 121, 247, 0.13), transparent);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s ease;
    pointer-events: none;
}

.luxury-property-card:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

/* Trending Properties Section */
.trending-properties-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #271123   , #000000   );
    color: #fff;
    overflow: hidden;
}

.trending-section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(90deg, #ff6f61, #ffcc00);
    -webkit-background-clip: text;
    color:#fff ;
}

.trending-properties-swiper {
    width: 100%;
    padding: 20px 0;
}

.trending-property-slide {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Trending Property Card */
.trending-property-card {
    background: #ffffff   ;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    perspective: 1000px;
    transform-style: preserve-3d;
    position: relative;
}

.trending-property-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* Property Image Wrapper */
.trending-property-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 250px;
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
}

.trending-property-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.trending-property-card:hover .trending-property-image {
    transform: scale(1.1);
}

.trending-parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.5s ease;
}

.trending-property-card:hover .trending-parallax-overlay {
    background: rgba(0, 0, 0, 0.5);
}

/* Property Info */
.trending-property-info {
    padding: 20px;
    /* text-align: center; */
    color: black ;
}

.trending-property-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 600;
    color: #145593 ;
}

.trending-property-details {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #000;
}

.trending-property-location {
    font-size: 1rem;
    color: dimgray ;
}

/* Buttons */
.trending-property-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 20px;
}

.btn-trending-outline {
    width: 100%;
    background: transparent;
    border: 2px solid #145593;
    color: #145593;
    padding: 10px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.btn-trending-outline:hover {
    background: #145593;
    color: #fff;
    transform: translateY(-3px);
}

.btn-trending-primary {
    background: linear-gradient(90deg, #145593, #145593);
    border: none;
    color: #fff;
    padding: 10px 20px;
    border-radius: 10px;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-trending-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 111, 97, 0.5);
}

/* Swiper Navigation */
.trending-swiper-next,
.trending-swiper-prev {
    color: #ff6f61;
    background: #532724;
    padding: 15px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.trending-swiper-next:hover,
.trending-swiper-prev:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* Mouse Animation */
.trending-property-card::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(243, 125, 115, 0.116), transparent);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s ease;
    pointer-events: none;
}

.trending-property-card:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.popular-section{
    padding: 80px 0;
    background: #000;
    color: #fff;
    overflow: hidden;
}
.popular-section .property-info,.buttons{


    padding:0px 20px;
}

.popular-section .buttons {
    padding-bottom: 20PX !important;
}
.popular-section .property-info h4{
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 600;
    color: #145593;

}

.affordable .property-info h4{
    font-weight: bold;
    font-size: 1.5rem;
}
.popular-section .location{
    font-size: 1rem;
    color: rgb(56, 54, 54);
}
