.navbar {
    padding: 0.8rem 1.5rem;
    background-color: rgba(0, 0, 128, 0.8); /* Translucent navy blue */
    backdrop-filter: blur(10px); /* Optional: Adds a blur effect for a modern look */
}
.navbar-brand img {
    height: 90px; /* Logo size */
    width: auto;
}
.navbar-nav .nav-link {
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff !important;
}
.navbar-nav .nav-link:hover {
    color: #d4d4d4 !important;
}
        .hero-slide {
    height: 70vh; /* Reduced height from 90vh to 70vh */
    background-size: cover;
    background-position: center;
    position: relative;
    }
    .hero-slide .container {
        background: rgba(0, 0, 0, 0.6);
        border-radius: 12px;
        padding: 2rem;
    }
    .hero-slide h1 {
        font-size: 2.5rem;
        font-weight: bold;
    }
    .hero-slide p {
        font-size: 1.2rem;
    }
    body {
        display: flex;
        flex-direction: column;
        min-height: 100vh;
    }
    main {
        flex: 1;
    }
    footer {
        background-color: #343a40;
        color: #ffffff;
        text-align: center;
        padding: 1rem 0;
    }
    footer a {
        color: #ffffff;
        text-decoration: none;
    }
    footer a:hover {
        text-decoration: underline;
    }
    .property-card {
        background-color: orange;
        color: white;
    }
    
    .property-card .card-footer {
        background-color: orange;
    }
    
    .property-card .btn {
        color: orange;
        background-color: white;
    }
    .text-orange {
        color: #ff7f00; /* Orange color */
    }
    
    .carousel-item {
        text-align: center;
        background-color: #fff8e6; /* Light orange background */
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
    
    .carousel-item h2 {
        font-weight: bold;
    }
    
    .carousel-item p, .carousel-item ul {
        font-size: 1.1rem;
        margin-top: 10px;
    }
    .transparent-orange-card {
    background: rgba(255, 140, 0, 0.85); /* orange with transparency */
    border: none;
    border-radius: 1rem;
    color: #fff;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.transparent-orange-card .card-title,
.transparent-orange-card .card-text,
.transparent-orange-card .list-group-item {
    color: #fff;
    background: transparent;
}
.transparent-orange-card .list-group-item {
    border: none;
}