html {
    scroll-behavior: smooth; /* enables smooth scroll for all anchor links */
}


<!-- 
    --- CSS for Basic Functionality ---
    This style block contains the minimum necessary CSS to make the carousel visible 
    and functional without relying on external frameworks. 
-->
<style>
    /* Minimal CSS for functionality and basic look */
    #hero {
        position: relative;
        width: 100%;
        height: 100vh;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: sans-serif; /* Fallback font */
    }
    .carousel-container {
        position: relative;
        width: 100%;
        height: 100%;
    }
    #carousel-slides {
        width: 100%;
        height: 100%;
    }
    .slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        transition: opacity 1s ease-in-out;
        opacity: 0;
    }
    .slide.active {
        opacity: 1;
    }
    .carousel-text {
        position: absolute;
        top: 50%;
        left: 10%; /* Aligned left, 10% from the edge */
        transform: translateY(-50%); /* Only vertical centering */
        text-align: left; /* Text alignment set to left */
        color: white;
        z-index: 10;
        padding: 0; /* Removed padding for the black box */
        background: transparent; /* Removed the black box background */
        max-width: 80%; /* Restrict text width */
    }
    #hero-title {
        font-size: 3rem;
        font-weight: bold;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9); /* Increased shadow for better contrast */
        margin-bottom: 0.5rem; /* Space between title and description */
    }
    #hero-description {
        font-size: 1.5rem;
        font-weight: normal;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.9); /* Shadow for visibility */
        margin: 0;
    }
    #bottom-nav-strip {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: center;
        background: none; /* Removed the black visible strip background */
        z-index: 20;
        padding: 0.5rem 0;
    }
    #bottom-nav-strip > div {
        cursor: pointer;
        padding: 0.5rem 1rem;
        margin: 0 0.5rem;
        color: white;
        font-size: 0.875rem;
        border-radius: 4px;
        transition: background-color 0.3s ease;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.9); 
    }
    #bottom-nav-strip > div:hover {
        background-color: rgba(79, 70, 229, 0.3); 
    }
    #bottom-nav-strip > div.active {
        background-color: #4f46e5;
        font-weight: bold;
    }

    /* Mobile adjustments (responsive breakpoints) */
    @media (max-width: 767px) {
        .carousel-text {
            left: 5%; 
        }
        #hero-title {
            font-size: 2rem;
        }
        #hero-description {
            font-size: 1rem;
        }
        #bottom-nav-strip {
            flex-wrap: wrap;
            padding: 0.25rem 0;
        }
        #bottom-nav-strip > div {
            padding: 0.3rem 0.6rem;
            margin: 0.2rem;
            font-size: 0.75rem;
        }
    }
</style>


/* ------------------------------------------- */
/* CSS: Desktop Grid & Mobile Carousel Styling */
/* ------------------------------------------- */
.desktop-grid { display: block; }
.mobile-carousel { display: none; }

/* Desktop: Force 3 columns and let content wrap to new rows */
.projects-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 20px; 
    max-width: 1200px; 
    margin: auto; 
    padding: 0 10px;
}

/* General Card Styling */
.property-card { 
    background: #fff; 
    border-radius: 15px; 
    overflow: hidden; 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); 
    transition: transform 0.3s, box-shadow 0.3s; 
}
.property-card:hover { transform: translateY(-5px); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); }
.property-card img{ width: 100%; height: 200px; object-fit: cover; }
.property-info{padding: 15px;}
.property-info h3{margin: 0 0 10px; font-size: 1.2rem;font-family:Arial;}
.property-info p{margin: 5px 0;}
.property-info button{margin-top: 10px; padding: 8px 15px; background: #FFD700; color: #fff; border: none; border-radius: 8px; cursor: pointer;}
.property-info button:hover{background: #FFD700;}

/* Mobile Carousel Styling */
.carousel-wrapper{position: relative; overflow: hidden; max-width: 100%;}
.carousel-grid{display: flex; transition: transform 0.5s ease;}
/* Crucial for showing only ONE property at a time */
.carousel-grid .property-card { 
    min-width: 100%; 
    flex-shrink: 0; 
    box-sizing: border-box; 
    padding: 0 10px;
}

/* Arrow Styling: Fixed for perfect circle */
.arrow{
    display: flex; /* Use flexbox to center content */
    align-items: center;
    justify-content: center;
    position: absolute; 
    top: 50%; 
    transform: translateY(-50%); 
    background: rgba(0, 0, 0, 0.5); 
    color: #fff; 
    border: none; 
    /* Explicit width/height for circular shape */
    width: 40px; 
    height: 40px; 
    border-radius: 50%; /* Makes it a perfect circle */
    cursor: pointer; 
    z-index: 10; 
    font-size: 1.2rem; 
    transition: background 0.3s;
}
.arrow:hover { background: rgba(0, 0, 0, 0.8); }
.left-arrow{left: 10px;}
.right-arrow{right: 10px;}

/* Media Queries for Mobile/Tablet Switch */
@media screen and (max-width: 768px){
    .desktop-grid{display: none;}
    .mobile-carousel{display: block;}
    .carousel-wrapper { margin: 0 20px; }
}
</style>





<style>
/* ------------------------------------------- */
/* Contact Form Styles (Design Implemented) */
/* ------------------------------------------- */

/* NEW: Styles for the central dark blue form box */
.contact-box {
    position: relative; 
    max-width: 600px; 
    width: 90%; 
    background: #0a2f4a; /* ENSURES DARK BACKGROUND IS APPLIED VIA CSS */
    border: 2px solid #3498db; 
    padding: 30px 30px; 
    border-radius: 10px; 
    box-shadow: 0 0 50px rgba(52, 152, 219, 0.5); 
    text-align: center;
}

/* Main Container: No max-width needed, Form container is responsible for size */
.contact-form {
    display: flex;
    flex-direction: column;
    /* REDUCED SPACING: Making the form more compact */
    gap: 15px; 
    /* REDUCED PADDING: Shrinking the form horizontally */
    padding: 0 20px; 
    max-width: none; /* Override any previous global limit */
    margin: auto;
}

/* Form Row structure is no longer relevant for this stacked design, but keep definition */
.form-row {
    display: block; 
}

/* Input Styles for single line fields */
.contact-form input,
.contact-form textarea {
    width: 100%; /* Ensure full width inside the form container */
    padding: 5px 0 10px 0;
    border: none;
    border-bottom: 2px solid #fff; /* White border to match the design */
    background: transparent;
    outline: none;
    font-size: 18px; /* Slightly larger font */
    transition: border-color 0.3s;
    color: white; 
    text-align: center; /* Center placeholder/input text to match design */
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-bottom-color: #3498db; /* Focus color matching the blue border */
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #aaa;
    opacity: 1;
    font-size: 0.9rem;
    text-align: center; 
}

.contact-form textarea {
    min-height: 50px; 
    resize: none; /* Disable resizing */
    text-align: center;
}

/* Submit Button Style (Transparent with white border) */
.contact-form button {
    padding: 12px 30px;
    background: transparent; /* Initial transparent background */
    border: 2px solid #fff; 
    color: white;
    /* REDUCED MARGIN: Bring button closer to message field */
    margin-top: 20px; 
    cursor: pointer;
    font-weight: bold;
    letter-spacing: 2px;
    transition: background 0.3s, border-color 0.3s;
    align-self: center; /* Center the button in the column */
    max-width: 200px;
    border-radius: 0; /* Square button border */
}

/* FIX 1: Set a solid background on hover to show the color */
.contact-form button:hover {
    background: #3498db; /* Blue hover */
    border-color: #3498db;
}

.form-message {
    margin-top: 15px;
    font-weight: bold;
    text-align: center;
    color: white; 
}


/* Responsive - Mobile View */
@media (max-width: 768px) {
    /* Center the box, remove border/shadow on small screens */
    .contact-box {
        padding: 30px 10px;
        width: 100%;
        box-shadow: none !important; 
        border: none !important; 
    }

    /* Reduce internal padding on mobile form */
    .contact-form {
        padding: 0 10px; 
    }
}
</style>





<style>
    /* --- FOOTER & MODAL STYLES --- */
    footer {
        background-color: #333; /* Dark background for the main footer text */
        color: #fff;
        padding: 0;
        text-align: center;
        font-family: Arial, sans-serif;
        font-weight: 400;
    }
    .disclaimer-box {
        background-color: #D4AF37; /* Gold color for the box */
        color: #333; /* Dark text for contrast */
        padding: 8px 15px;
        font-size: 0.85rem; /* Small text size */
        font-weight: 500;
    }
    .disclaimer-box p {
        /* Ensure paragraphs inside the box have minimal default margin */
        margin: 5px 0;
        line-height: 1.3;
    }
    .disclaimer-box a {
        color: #333; /* Changed: Now matches the surrounding text color */
        text-decoration: none; /* Changed: Removed the underline */
        cursor: pointer;
        margin-left: 10px;
        white-space: nowrap; /* Keep link and text together if possible */
        /* ADDED TRANSITION FOR HOVER EFFECT */
        transition: color 0.2s, font-weight 0.2s; 
    }
    /* Hover style for the Privacy Policy link */
    .disclaimer-box a:hover {
        color: #5a4600; /* Darker brown/gold on hover for subtle feedback */
        font-weight: bold; /* Make it bold on hover */
    }

    /* Modal Styles */
    .modal-backdrop {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7);
        display: none; /* Initially hidden */
        justify-content: center;
        align-items: center;
        z-index: 1000;
        animation: fadeIn 0.3s ease-in-out;
    }
    .modal-content {
        background: white;
        color: #333;
        padding: 25px;
        border-radius: 8px;
        width: 90%;
        max-width: 500px; /* Slightly increased max-width for better readability of the long policy */
        max-height: 90vh; /* Set max height */
        overflow-y: auto; /* Enable scrolling for long content */
        position: relative;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        animation: slideIn 0.3s ease-out;
        font-family: Arial, sans-serif;
    }
    .close-button {
        position: absolute;
        top: 10px;
        right: 15px;
        font-size: 1.5rem;
        cursor: pointer;
        font-weight: bold;
        line-height: 1;
        transition: color 0.2s;
    }
    .close-button:hover {
        color: #ef4444;
    }
    /* Simple Animations */
    @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
    @keyframes slideIn { from { transform: translateY(-50px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
</style>







/**CSS for About Us Section (Gold Theme) --->
    /**This style block contains only the CSS required for the responsive, gold-themed 
    "About Us" section.**/
<style>
    /* --- CORE STYLES --- */
    body {
        margin: 0;
        padding: 0;
        background-color: #f8f8f8; /* Light gray background for the page content */
    }
    
    /* Global Font (Inter as per instruction, using Arial as fallback) */
    * {
        font-family: 'Inter', Arial, sans-serif;
        box-sizing: border-box;
    }

    /* ---------------- ABOUT US SECTION STYLES ---------------- */
    #about-us-section {
        width: 100vw; /* Full width */
        background-color: #fff;
        padding-bottom: 50px;
    }

    /* Top Header Banner */
    .about-header-banner {
        background-color: #f2f2f2;
        padding: 20px 5%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 10vh; /* Fixed height for desktop/tablet */
    }

    .about-us-title {
        font-size: 1.5rem;
        font-weight: 700;
        color: #333;
        margin: 0;
    }

    .header-decoration {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .chevron {
        width: 30px;
        height: 30px;
        /* Primary Gold */
        fill: #FFB703; 
        transform: rotate(90deg);
    }
    .dots {
        display: flex;
        gap: 5px;
    }
    .dots::before, .dots::after, .dots-center {
        content: '';
        width: 8px;
        height: 8px;
        border-radius: 50%;
        /* Lighter Gold/Tan */
        background-color: #FFEECC; 
    }
    .dots-center {
        /* Primary Gold */
        background-color: #FFB703; 
    }

    /* Main Content Area */
    .about-main-content {
        display: flex;
        flex-direction: row; /* Default desktop view */
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
        padding: 30px 5%;
        gap: 40px;
        min-height: 70vh; /* Ensure it occupies vertical space */
    }

    /* Left Column (Text, Buttons, Stats) */
    .text-column {
        flex: 1 1 55%; 
        padding-right: 20px;
    }
    .service-tag {
        /* Primary Gold */
        color: #FFB703;
        font-size: 0.8rem;
        font-weight: 600;
        letter-spacing: 2px;
        margin-bottom: 10px;
    }
    .text-column h2 {
        font-size: 2.5rem;
        font-weight: 800;
        line-height: 1.1;
        margin: 0 0 20px 0;
        color: #333;
    }
    .strategic-word {
        /* Primary Gold */
        color: #FFB703;
    }
    .description-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        margin-bottom: 30px;
    }
    .description-grid p {
        flex: 1 1 45%; /* Two columns of text on desktop */
        font-size: 0.95rem;
        line-height: 1.6;
        color: #555;
    }

    .button-group {
        display: flex;
        gap: 15px;
        margin-bottom: 40px;
    }
    .primary-button, .secondary-button {
        padding: 12px 30px;
        border-radius: 5px;
        font-weight: 600;
        cursor: pointer;
        transition: background-color 0.3s, color 0.3s;
        font-size: 0.9rem;
    }
    .primary-button {
        /* Primary Gold */
        background-color: #FFD700;
        color: white;
        border: 2px solid #FFB703;
    }
    .primary-button:hover {
        /* Darker Gold Hover */
        background-color: #CC9002;
        border-color: #CC9002;
    }
    .secondary-button {
        background-color: transparent;
        color: #333;
        border: 2px solid #fff;
    }
    .secondary-button:hover {
        /* Primary Gold */
        border-color: #FFB703;
        color: #FFB703;
    }

    /* Stats/Results Row */
    .results-row {
        display: flex;
        gap: 50px;
        border-top: 1px solid #eee;
        padding-top: 20px;
    }
    .result-item .count {
        font-size: 3rem;
        font-weight: 800;
        /* Primary Gold */
        color: #FFB703;
        margin: 0;
        line-height: 1;
    }
    .result-item .label {
        font-size: 0.9rem;
        color: #333;
        font-weight: 500;
        margin-top: 5px;
    }

    /* Right Column (Image/Visuals) */
    .image-column {
        flex: 1 1 45%; 
        position: relative;
        /* Placeholder background to represent the image area */
        background-color: #f2f2f2; 
        min-height: 450px;
        border-radius: 8px;
        overflow: hidden;
    }

    /* Mock Geometric Shapes */
    .image-column::before {
        content: '';
        position: absolute;
        z-index: 1;
        top: 20%;
        left: -15%;
        width: 80%;
        height: 80%;
        /* Primary Gold */
        background-color: #FFB703;
        transform: rotate(45deg);
        opacity: 0.5;
    }
    /* Placeholder for the main image */
    .image-column {
        background-image: url('https://placehold.co/600x450/cccccc/333333?text=Professional+Partner');
        background-size: cover;
        background-position: center;
    }

    /* --- RESPONSIVENESS (Mobile/Tablet) --- */
    @media (max-width: 900px) {
        .about-main-content {
            flex-direction: column; 
            padding: 30px 4%;
            gap: 30px;
        }
        .text-column {
            padding-right: 0;
        }
        .text-column h2 {
            font-size: 2rem;
            text-align: justify;
        }
        .description-grid p {
            flex: 1 1 100%; 
        }
        .image-column {
            order: -1; 
            width: 100%;
            min-height: 300px;
        }
        .about-header-banner {
             height: auto; 
             margin-top: 0px;
             width: 100%;
        }
    }

    @media (max-width: 500px) {
        .text-column h2 {
            font-size: 1.75rem;
        }
        .button-group {
            flex-direction: column;
        }
        .primary-button, .secondary-button {
            width: 100%;
        }
        .results-row {
            flex-wrap: wrap;
            gap: 20px;
        }
    }
</style>






/* =============================== */
/* CONTAINER FOR CONTENT           */
/* =============================== */
.container {
    max-width: 1200px; /* optional for large screens */
    margin: 0 auto;
    padding-left: 50px;
    padding-right: 50px;
}

/* =============================== */
/* PROJECT CARDS                   */
/* =============================== */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.project-card {
    background-color: #fff;
    border-radius: 1rem;
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    height: 500px; /* fixed card height */
}

.project-card img {
    width: 100%;
    height: 220px; /* fixed image height */
    object-fit: cover;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.project-card-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #B8860B;
}

.project-card-content p {
    font-size: 0.9rem;
    color: #555;
    margin-top: 0.5rem;
    flex: 1;
}

/* =============================== */
/* HERO CAROUSEL TEXT              */
/* =============================== */
.hero-text {
    position: absolute;
    top: 50%;
    left: 50px;
    transform: translateY(-50%);
    color: #fff;
    z-index: 20;
    max-width: 40%;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.2;
}

.hero-bottom-nav {
    position: absolute;
    bottom: 30px;
    left: 50px;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.hero-bottom-nav .nav-item {
    color: #fff;
    cursor: pointer;
    font-weight: 600;
    position: relative;
    padding-bottom: 4px;
}

.hero-bottom-nav .nav-item::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #fff;
}

/* =============================== */
/* ABOUT SECTION                   */
/* =============================== */
/* ---------------- About Section ---------------- */
#about {
    width: 100%;
    margin: 00px 0;
    padding: 0 00px; /* content margin on sides */
    box-sizing: border-box;
}

/* Row 1: Banner */
.about-banner {
    width: 100%;
    max-height: 200px;
    overflow: hidden;
}

.about-banner img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

/* Row 2: About Us Text */
.about-text-row {
    margin: 40px 0;
    text-align: center;
}

.about-text-row h2 {
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.about-text-row p {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    max-width: 900px;
    margin: 0 auto;
}

/* Row 3: Mission & Vision */
.mission-vision-row {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.card {
    flex: 1;
    min-width: 280px;
    max-width: 500px;
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    text-align: left;
}

.card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}

/* Responsive */
@media (max-width: 992px) {
    .mission-vision-row {
        flex-direction: column;
        align-items: center;
    }
}



/* =============================== */
/* CONTACT SECTION                 */
/* =============================== */
/* Overlay */
.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
    z-index: 0;
}

/* Contact box centered */
.contact-box {
    position: relative;
    display: flex;
    max-width: 1000px;
    width: 90%;
    background-color: rgba(255,255,255,0.95);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    flex-wrap: nowrap;
    margin: 0 auto;
    padding: 2rem;
    z-index: 1;
    align-items: center;
    justify-content: space-between;
}

/* Left image */
.contact-image {
    flex: 1 1 45%;
    max-width: 400px;
}
.contact-image img {
    width: 100%;
    height: auto; /* maintain aspect ratio */
    max-height: 400px;
    object-fit: cover;
    border-radius: 1rem;
}

/* Contact Section Overlay */
.contact-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0,0,0,0.4); /* semi-transparent overlay */
    z-index: 1;
}

/* Contact Box Layout */
.contact-box {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
    flex-wrap: wrap;
}

/* Left image */
.contact-image {
    flex: 1 1 400px;
}
.contact-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
}

/* Right form */
.contact-form {
    max-width: 700px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-row {
    display: flex;
    gap: 10px;
}

.contact-form input,
.contact-form textarea {
    flex: 1;
    padding: 10px 0;
    border: none;
    border-bottom: 2px solid #ccc;
    background: transparent;
    outline: none;
    font-size: 16px;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-bottom-color: #FFD700; /* Golden line on focus */
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #aaa;
    opacity: 1;
}

.contact-form textarea {
    min-height: 100px;
    resize: vertical;
}

.contact-form button {
    padding: 12px 20px;
    background: #FFD700;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
}

.contact-form button:hover {
    background: #e6c200;
}

.form-message {
    margin-top: 15px;
    font-weight: bold;
    text-align: center;
}


/* Responsive - stack on small screens */
@media (max-width: 768px) {
    .contact-box {
        flex-direction: column;
        align-items: center;
        padding: 30px 20px;
    }

    .form-row {
        flex-direction: column;
    }
}



/* =============================== */
/* RESPONSIVE STYLING              */
/* =============================== */
@media screen and (max-width: 768px) {
    .about-section .container,
    .contact-box {
        flex-direction: column;
    }
    .about-section img,
    .about-section .about-text,
    .contact-box img,
    .contact-form {
        width: 100%;
    }
    .hero-text {
        max-width: 80%;
        left: 20px;
    }
    .hero-bottom-nav {
        left: 20px;
        gap: 1rem;
        flex-wrap: wrap;
    }
}

/* ---------------- Navbar ---------------- */
/* ---------------- Navbar ---------------- */
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #fff; /* white background */
    z-index: 999;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px; /* left/right spacing */
    height: 70px;
    box-sizing: border-box;
}

.logo img {
    height: 50px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links li a {
    text-decoration: none;
    color: #000; /* black links */
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #fbbf24; /* golden hover */
}

/* Hamburger Menu for Mobile */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #000; /* black bars */
    border-radius: 2px;
}

/* Responsive */
@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 200px;
        height: calc(100% - 70px);
        background-color: #fff;
        flex-direction: column;
        gap: 20px;
        padding: 30px 20px;
        transition: right 0.3s ease;
        box-shadow: -2px 0 6px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }
}




/* ---------------- Reset ---------------- */
* { margin:0; padding:0; box-sizing:border-box; font-family: Arial, sans-serif; }

/* ---------------- Navbar ---------------- */

/* ---------------- Hero Carousel ---------------- */
#hero { position:relative; width:100%; height:100vh; overflow:hidden; }
.carousel-container { width:100%; height:100%; position:relative; }
#carousel-slides .slide { width:100%; height:100%; position:absolute; top:0; left:0; background-size:cover; background-position:center; opacity:0; transition:opacity 0.8s ease; }
#carousel-slides .slide.active { opacity:1; }
.carousel-text { position:absolute; top:50%; left:5%; transform:translateY(-50%); color:#fff; text-shadow:0 2px 10px rgba(0,0,0,0.6); }
.carousel-text h1 { font-size:3rem; max-width:500px; line-height:1.2; }
.carousel-nav { position:absolute; bottom:2%; left:5%; display:flex; gap:2rem; }
.carousel-nav div { cursor:pointer; color:#fff; font-weight:bold; opacity:0.7; transition:opacity 0.3s; }
.carousel-nav div.active { color:#B8860B; opacity:1; border-bottom:1px solid #B8860B; padding-bottom:2px; }

/* ---------------- Projects Section ---------------- */
#projects { padding:5rem 2rem; background:#f8f8f8; }
#projects h2 { text-align:center; margin-bottom:3rem; font-size:2.5rem; color:#333; }
.projects-grid { display:flex; flex-wrap:wrap; gap:2rem; justify-content:center; }
.property-card { background:#fff; border-radius:1rem; box-shadow:0 4px 10px rgba(0,0,0,0.1); overflow:hidden; flex:1 1 calc(33% - 2rem); max-width:350px; display:flex; flex-direction:column; transition:transform 0.3s ease; min-height:450px; }
.property-card:hover { transform:translateY(-5px); }
.property-card img { width:100%; height:220px; object-fit:cover; }
.property-info { padding:1rem; display:flex; flex-direction:column; flex:1; }
.property-info h3 { font-size:1.5rem; color:#B8860B; margin-bottom:0.5rem; }
.property-info p { font-size:0.9rem; color:#555; margin-bottom:0.5rem; flex:1; }
.property-info strong { color:#111; }
.property-info button { margin-top:1rem; padding:0.7rem; border:1px solid #B8860B; background:#fff; color:#B8860B; cursor:pointer; transition:0.3s; border-radius:0.5rem; font-weight:bold; }
.property-info button:hover { background:#B8860B; color:#fff; }

/* Responsive for projects */
@media(max-width:1000px){ .property-card { flex:1 1 calc(45% - 2rem); } }
@media(max-width:700px){ .property-card { flex:1 1 100%; } }

/* ---------------- About Section ---------------- */
#about { padding:5rem 2rem; background:#fff; }
.about-container { display:flex; flex-wrap:wrap; gap:2rem; align-items:center; justify-content:center; }
.about-text { flex:1 1 400px; }
.about-text h2 { font-size:2rem; color:#333; margin-bottom:1rem; }
.about-text p { font-size:1rem; color:#555; margin-bottom:1rem; line-height:1.6; }
.about-image { flex:1 1 400px; }
.about-image img { width:100%; border-radius:1rem; }

/* ---------------- Contact Section ---------------- */
#contact { position:relative; padding:5rem 2rem; background:#111; color:#fff; }
.contact-overlay { background:rgba(0,0,0,0.6); padding:3rem; border-radius:1rem; display:flex; justify-content:center; align-items:center; }
.contact-box { display:flex; flex-wrap:wrap; gap:2rem; max-width:900px; width:100%; }
.contact-image { flex:1 1 300px; }
.contact-image img { width:100%; border-radius:1rem; }
.contact-form-container { flex:1 1 400px; background:#fff; color:#111; padding:2rem; border-radius:1rem; }
.contact-form-container h2 { margin-bottom:1rem; }
.contact-form-container input, .contact-form-container textarea { width:100%; margin-bottom:1rem; padding:0.7rem; border:1px solid #ccc; border-radius:0.5rem; }
.contact-form-container button { width:100%; padding:0.7rem; background:#B8860B; color:#fff; border:none; border-radius:0.5rem; font-weight:bold; cursor:pointer; }
.contact-form-container button:hover { background:#aa7700; }
.hidden { display:none; }

/* ---------------- Smooth Scroll ---------------- */
html { scroll-behavior:smooth; }
