        body {
            background-color: #eafaf1;
            overflow-x: hidden;
        }
        .navbar-brand {
            font-size: 1.5rem;
            font-weight: bold;
            color: #00a76f;
            display: flex;
            align-items: center;
        }
        .navbar-brand img {
            width: 40px;
            margin-right: 10px;
        }
        .hero-section {
            display: flex;
            align-items: center;
            flex-direction: row;
            padding: 50px 0;
        }
        .hero-text {
            font-size: 2rem;
            font-weight: bold;
            text-align: left;
        }
        .hero-text span {
            color: #00a76f;
        }
        .hero-img img {
            width: 100%;
            border-radius: 10px;
            max-height: 400px;
            object-fit: cover;
        }
        .search-bar {
            background: #00a76f;
            padding: 20px;
            border-radius: 10px;
            margin-top: 20px;
        }
        .property-section {
    text-align: center; /* Centers all text inside this section */
}

        
        .property-card {
    background-color: white; /* Default white */
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
    border: 2px solid #006644; /* Dark green border for all cards */
}

.property-card:hover {
    background-color: #00a76f; /* Green on hover */
    color: white;
}

.property-card img {
    width: 50px;
    margin-bottom: 10px;
}
.hero-section {
    display: flex;
    align-items: center;
    flex-direction: row;
    padding: 50px 0;
}

.hero-text {
    font-size: 2rem;
    font-weight: bold;
    text-align: left;
}

.hero-text span {
    color: #00a76f;
}

.hero-img img {
    width: 100%;
    border-radius: 10px;
    max-height: 400px;
    object-fit: cover;
}
.list-unstyled {
                text-align: left;
                display: inline-block;
                margin: 0 auto;
            }
            .btn-success {
                margin-top: 10px;
            }
            .hero-section {
            display: flex;
            align-items: center;
            flex-direction: row;
            padding: 50px 0;
            position: relative;
        }
        .hero-text {
            font-size: 2rem;
            font-weight: bold;
            text-align: left;
        }
        .hero-text span {
            color: #00a76f;
        }
        @media (max-width: 768px) {
    p {
        text-align: justify;
    }
}

/* Green Border for Cards */
.property-card {
    background-color: white;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
}


.property-card {
    width: 100%;
    max-width: 350px; /* Adjust as per your layout */
    overflow: hidden;
}




.property-image {
    width: 100%; /* Make image full width */
    height: 200px; /* Adjust height as needed */
    object-fit: cover; /* Ensures the image covers the area without distortion */
    display: block;
    border-radius: 8px 8px 0 0; /* Optional: Add rounded corners to match card */
}


.card-body {
    padding: 20px;
}

.card-body h5 {
    font-weight: bold;
    margin-bottom: 10px;
}

.card-body h6 {
    font-size: 18px;
}

.card-body p {
    margin-bottom: 10px;
}

.badge {
    font-size: 14px;
    padding: 5px 10px;
    border-radius: 5px;
}

.filter-buttons {
    margin-bottom: 20px;
}

.filter-buttons .btn {
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 14px;
}

@media (max-width: 768px) {
    .property-card {
        margin: 0 auto; /* Centers the card */
        display: block;
        text-align: center;
    }


}
.contact-agent {
    background-color: #f7fcf8;
    padding: 40px;
    border-radius: 10px;
}

.contact-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: auto;
    gap: 30px;
}

.contact-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
}

.contact-content {
    flex: 1;
}

.contact-content h2 {
    font-size: 28px;
    color: #0d2c52;
    font-weight: bold;
}

.contact-content p {
    color: #666;
    font-size: 16px;
    margin-bottom: 20px;
}

.contact-buttons {
    display: flex;
    gap: 15px;
}

.call-button, .appointment-button {
    display: inline-block;
    padding: 12px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    color: white;
}

.call-button {
    background-color: #17c98e;
}

.appointment-button {
    background-color: #0d2c52;
}

/* 📌 Responsive for Mobile */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        text-align: center;
    }

    .contact-buttons {
        justify-content: center;
    }
}
.property-agents {
    text-align: center;
    padding: 40px;
    background-color: #fff;
}

.property-agents h2 {
    font-size: 28px;
    color: #0d2c52;
    font-weight: bold;
}

.property-agents p {
    color: #666;
    font-size: 16px;
    margin-bottom: 30px;
}

.agents-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.agent-card {
    background: #f9f9f9;
    border-radius: 10px;
    text-align: center;
    width: 250px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.agent-card img {
    width: 100%;
    height: auto;
}

.agent-info {
    padding: 15px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.social-icons a {
    background: #fff;
    color: #0d2c52;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
}

.social-icons a:hover {
    background: #0d2c52;
    color: #fff;
}

.agent-info {
    padding: 15px;
    text-align: center; /* Ensures all text is centered */
}

.agent-info h3 {
    font-size: 18px;
    color: #0d2c52;
    font-weight: bold;
    margin: 5px 0;
}

.agent-info p {
    color: #666;
    font-size: 14px;
    margin: 0 auto; /* Centers text */
    display: block; /* Ensures it follows block behavior */
    text-align: center; /* Explicitly centers text */
}


@media (max-width: 768px) {
    .agents-container {
        flex-direction: column;
        align-items: center;
    }
}
.testimonial-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.testimonial {
    display: flex;
    align-items: center;
    background: #f8fff5;
    padding: 15px;
    border-radius: 8px;
    border: 1px dashed #d4e5d4;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.testimonial img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
}

.testimonial-text {
    flex: 1;
    font-size: 14px;
    color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonial {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .testimonial img {
        margin-bottom: 10px;
    }
}
.footer {
    background: #0b3556;
    color: #fff;
    padding: 40px 0;
}

.footer .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-col {
    width: 22%;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-col p,
.footer-col ul li a {
    font-size: 14px;
    color: #ccc;
    text-decoration: none;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a:hover {
    color: #fff;
}

.social-links a {
    display: inline-block;
    margin-right: 10px;
    font-size: 18px;
    color: #ccc;
}

.social-links a:hover {
    color: #fff;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
}

.gallery img {
    width: 50px;
    height: 50px;
    border-radius: 5px;
}

.newsletter {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.newsletter input {
    flex: 1;
    padding: 8px;
    border: none;
    border-radius: 5px;
}

.newsletter button {
    background: #00d084;
    color: #fff;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 5px;
}

.newsletter button:hover {
    background: #009b60;
}

.footer-bottom {
    text-align: center;
    padding: 15px 0;
    background: #08283c;
}

.footer-bottom p,
.footer-bottom ul {
    font-size: 14px;
    color: #ccc;
}

.footer-bottom ul {
    display: flex;
    justify-content: center;
    gap: 15px;
    list-style: none;
    padding: 0;
}

.footer-bottom ul li a {
    color: #ccc;
    text-decoration: none;
}

.footer-bottom ul li a:hover {
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer .container {
        flex-direction: column;
        text-align: center;
    }

    .footer-col {
        width: 100%;
        margin-bottom: 20px;
    }

    .gallery {
        justify-content: center;
    }

    .newsletter {
        flex-direction: column;
    }

    .newsletter input {
        text-align: center;
    }

    .footer-bottom ul {
        flex-direction: column;
    }
}

        @media (max-width: 768px) {
            .hero-section {
                flex-direction: column-reverse;
                text-align: center;
            }
            .hero-text {
                text-align: center;
            }
        }

