* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    overflow-x: hidden;
}

/* Hero Section */
.hero {
    background: url('../image/carousel.jpg') no-repeat center center/cover;

    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    padding: 20px;
}

/* Navbar */
.navbar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

.logo span {
    font-weight: 300;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #f4b400;
}

/* Hero Content */
.hero-content {
    max-width: 800px;
    margin-top: 60px;
}

.hero-content h1 {
    font-size: 40px;
    font-weight: bold;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 18px;
    margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 10px;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        margin-top: 10px;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 16px;
    }
}


/* Section Heading */
.filter-section h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Filter Container */
.filter-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
    padding: 15px;
    width: 80%;
    max-width: 900px;
    margin: auto;
    border-radius: 5px;
}

/* Filter Box */
.filter-box {
    flex: 1;
    text-align: left;
    padding: 10px;
    color: white;
}

.filter-box label {
    font-size: 12px;
    font-weight: bold;
}

.filter-box select {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    margin-top: 5px;
    border: none;
    background: black;
    color: white;
    border-bottom: 2px solid white;
    appearance: none;
    cursor: pointer;
}

/* Filter Button */
.filter-btn {
    background: white;
    color: black;
    padding: 12px 20px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.filter-btn:hover {
    background: #f4b400;
}

/* Responsive Design */
@media (max-width: 768px) {
    .filter-container {
        flex-direction: column;
    }

    .filter-box {
        width: 100%;
        text-align: center;
    }

    .filter-box select {
        width: 90%;
    }

    .filter-btn {
        margin-top: 10px;
        width: 90%;
    }
}



.residences-section {
    text-align: center;
}

/* Residence Card */
.residence-card {
    position: relative;
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    overflow: hidden;
}

.image-box img {
    width: 100%;
    border-radius: 5px;
    transition: transform 0.3s ease-in-out;
}

.image-box:hover img {
    transform: scale(1.05);
}

.info-box {
    text-align: left;
    padding: 20px;
}

h2 {
    font-size: 24px;
    font-weight: bold;
}

h5 {
    font-size: 16px;
    color: #555;
}

p {
    font-size: 14px;
    color: #666;
}

.pricing {
    margin-top: 10px;
}

.read-more {
    background: black;
    color: white;
    border: none;
    padding: 10px 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: 0.3s;
}

.read-more:hover {
    background: #f4b400;
}

.read-more .arrow {
    margin-left: 8px;
    font-size: 18px;
}

.residence-number {
    position: absolute;
    font-size: 80px;
    font-weight: bold;
    color: rgba(0, 0, 0, 0.1);
    top: 10px;
    right: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .info-box {
        text-align: center;
    }

    .residence-number {
        font-size: 50px;
        top: 5px;
        right: 10px;
    }
}


a {
    text-decoration: none;
}

.banner {
    background: url('../image/Add a subheading.png') no-repeat center center/cover;

    height: 100vh;
    display: flex;
    align-items: center;
    color: white;
}


/* Responsive Design */
@media (max-width: 1024px) {
    .banner {
        height: fit-content;
        /* à¤¬à¤¡à¤¼à¥€ à¤¸à¥à¤•à¥à¤°à¥€à¤¨ à¤ªà¤° à¤¥à¥‹à¤¡à¤¼à¥€ à¤Šà¤‚à¤šà¤¾à¤ˆ à¤•à¤® à¤•à¤°à¥‡à¤‚ */
    }
}

/* Popup Form Styles */
.popup-form {
    display: none;
    /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.form-container1 {
    background-color: white;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    width: 500px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 45px;
    cursor: pointer;
    color: #333;
}



.form-group {
    margin-bottom: 15px;
}

form input,
form select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

form button {
    width: 100%;
    padding: 10px;
    background-color: #9f8054;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

form button:hover {
    background-color: #b68b4f;
}



.footer-img {
    justify-content: space-between;
    display: flex;
    position: fixed;
    position: fixed;
    width: 100%;
    bottom: 0;
    z-index: 9999;
}

.fixed-btn {
    position: fixed;
    right: 20px;
    /* Distance from the right side of the screen */
    bottom: 400px;
    /* Distance from the bottom of the screen */

    padding: 0;
    /* Remove padding as we're using width/height to define size */
    background-color: #9f8054;
    /* Golden color */
    color: white;
    font-size: 18px;
    /* Adjust font size */
    font-weight: 600;
    border: none;
    border-radius: 50%;
    /* Full rounding to make it a circle */
    display: flex;
    justify-content: center;
    align-items: center;
    /* Center the text inside the circle */
    box-shadow: 0 0 20px rgba(159, 128, 84, 0.8);
    /* Glowing effect with a stronger golden hue */
    transition: box-shadow 0.3s ease-in-out, transform 0.3s ease-in-out;
    transform: rotate(368deg);
    /* Rotate the button by 368 degrees */
    transform-origin: center;
    /* Ensures rotation happens around the center */
    z-index: 999;
}
