/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;

}

body {
    line-height: 1.6;
    padding-top: 120px; /* Adjust according to header height */
}


/* Top Bar */
.top-bar {
    background: #333;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}


.top-bar .contact-info a {
    text-decoration: none;
    color: #fff;
}


.top-bar .social-icons {
    display: flex;
    gap: 20px;
    font-size: 18px;
}

/* Navigation */
.nav-links {
    list-style: none;
    display: flex;
}

.navbar-nav li {
    margin: 0 15px;
}

.navbar-nav a {
    text-decoration: none;
    color: #333;
    font-size: larger;
    font-weight: bolder;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

.container a {
    text-decoration: none;
    color: #fff;
}

/* Breadcrumb */
.breadcrumb-section {
    background: url('img/breadcrumb.jpg') center/cover no-repeat;
    padding: 50px 0 20px;
    color: white;
}
.breadcrumb-section .breadcrumb {
    background: transparent;
    margin: 0;
}
.breadcrumb a {
    color: #fff;
    text-decoration: underline;
}
.breadcrumb .active {
    color: #ddd;
}

/* Hero Section */
.hero-section {
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}
.hero-section h1 {
    font-size: 2.5rem;
    font-weight: bolder;
    font-family: 'Comfortaa', cursive;
    margin-bottom: 20px;
}


.col-md-3 h5 {
    margin: 30px 0;
    color: aqua;
}

/* Property Listing Cards */
.card-property {
    aspect-ratio: 600 / 700; /* Maintain the original ratio */
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    position: relative;
    border: none;
    background: rgba(97, 97, 97, 0.1);
}
.card-img-container-property {
    position: relative;
    overflow: hidden;
    display: block;
}
.card-img-top-property {
    width: 100%;
    height: 350px;
    object-fit: cover;
}
.price-tag-property {
    position: absolute;
    bottom: 10px;
    left: 10px;
    padding: 0 5px;
    background: rgba(0, 0, 0, 0.3);
    color: white;
    font-weight: bolder;
}
.area-tag-property {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(14, 184, 37, 0.7);
    color: white;
    padding: 5px 10px;
    font-weight: bold;
}
.purchase-tag-property {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--secondary-fade);
    color: white;
    border-radius: 10px;
    padding: 5px 10px;
    font-weight: bold;
}
.carousel-control-prev, .carousel-control-next {
    width: auto;
}
.card-body-property {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.card-title-property {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.features-container-property {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* carousel controls */
.carousel-control-prev,
.carousel-control-next {
    position: absolute; /* Position the control icon absolutely */
    padding: 20px;
    top: 50%; /* Center vertically */
    transform: translateY(-50%); /* Adjust for proper centering */
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    padding: 10px; /* Adjust padding to control icon size */
}

/* Footer */
.footer-link {
    margin-bottom: 15px; /* Space between items */
    text-decoration: none; /* Remove default underline */
    cursor: pointer; /* Pointer cursor on the link text */
    display: inline-block; /* Ensure the link only takes up the text width */
}

.footer-link:hover {
    text-decoration: none; /* Optional: keep underline off on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        background: white;
        width: 100%;
        top: 60px;
        left: 0;
        padding: 10px 0;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}