* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}

/* ============ PAGE LOADER ============ */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(196, 165, 116, 0.1);
    border-top: 3px solid #c4a574;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #2c2c2c;
    background: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
}

/* ============ NAVBAR ============ */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 60px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    padding: 10px 60px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(196, 165, 116, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 26px;
    font-weight: 700;
    background: linear-gradient(135deg, #c4a574 0%, #8b7355 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

.logo-img {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 45px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #2c2c2c;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #c4a574, #8b7355);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* DROPDOWN STYLES */
.nav-item {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
    color: #2c2c2c;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Montserrat', sans-serif;
    transition: color 0.3s ease;
}

.dropdown-toggle:hover {
    color: #c4a574;
}

.dropdown-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -10px;
    background: white;
    min-width: 220px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 999;
    margin-top: 8px;
    border: 1px solid rgba(196, 165, 116, 0.15);
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 12px 18px;
    color: #2c2c2c;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: 0;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(196, 165, 116, 0.08);
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-label {
    padding: 12px 18px 6px;
    font-size: 10px;
    font-weight: 800;
    color: #c4a574;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: #fdfaf5;
    border-bottom: 1px solid rgba(196, 165, 116, 0.1);
    pointer-events: none;
    user-select: none;
}

.dropdown-menu a:hover {
    background: #f9f8f6;
    color: #c4a574;
    padding-left: 22px;
}

.nav-cta {
    background: linear-gradient(135deg, #c4a574 0%, #8b7355 100%);
    color: white;
    padding: 11px 28px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(196, 165, 116, 0.25);
    white-space: nowrap;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(196, 165, 116, 0.35);
}

.nav-right-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hamburger {
    display: none;
}

/* ============ HERO SECTION ============ */
.hero {
    width: 100%;
    height: calc(100vh - 80px); /* Fill the screen minus navbar */
    margin-top: 80px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    background: #000; /* Dark background for the gaps */
}

.hero-images {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* The clever trick: blurred background + contained foreground */
.hero-image-placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000;
}

/* Blurred background layer */
.hero-image-placeholder::before {
    content: '';
    position: absolute;
    inset: -20px; /* Slight overflow to hide blur edges */
    background-image: inherit;
    background-size: cover;
    background-position: center;
    filter: blur(20px) brightness(0.4);
    z-index: 1;
}

/* Foreground image layer - ensuring no stretch */
.hero-image-placeholder img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover; /* This prevents stretching and fills the area */
    z-index: 2;
}

.hero-image-placeholder.active {
    opacity: 1;
}

.hero-images::after {
    display: none;
}

.rera-hero-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    padding: 10px 18px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(196, 165, 116, 0.2);
    z-index: 10;
    animation: fadeInUp 1s ease 0.8s both;
}

.rera-badge-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #c4a574, #8b7355);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    box-shadow: 0 5px 15px rgba(196, 165, 116, 0.4);
}

.rera-badge-text {
    display: flex;
    flex-direction: column;
}

.rera-badge-label {
    font-size: 11px;
    font-weight: 700;
    color: #c4a574;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.rera-badge-number {
    font-size: 13px;
    font-weight: 600;
    color: #2c2c2c;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .hero {
        height: 70vh; /* Better fixed height for mobile banner */
        min-height: 450px;
        padding: 0;
        margin-top: 70px;
    }

    .hero-content {
        padding: 80px 25px 0;
        text-align: center;
    }

    .hero h1 {
        font-size: 38px;
        margin-bottom: 15px;
    }

    .hero p {
        font-size: 16px;
        margin-bottom: 30px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .rera-hero-badge {
        bottom: 20px;
        right: 20px;
        left: 20px;
        justify-content: center;
    }
}

.hero-image-placeholder.active {
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 5;
    max-width: 1200px;
    margin: 0; /* Removed auto to keep it left-aligned */
    padding: 180px 80px 0; /* Increased top padding to move it down, increased left padding */
    width: 100%;
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    line-height: 1.2;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero h1 span {
    color: #c4a574;
}

.hero p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    font-weight: 400;
    line-height: 1.6;
    max-width: 550px;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.6s both;
}

.btn-primary,
.btn-secondary {
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, #c4a574 0%, #8b7355 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(196, 165, 116, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(196, 165, 116, 0.4);
}

.btn-secondary {
    background: white;
    color: #c4a574;
    border: 2px solid #c4a574;
}

.btn-secondary:hover {
    background: #f5f1e8;
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 10;
    font-size: 24px;
    color: #c4a574;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(15px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============ SECTIONS ============ */
.section {
    padding: 20px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #2c2c2c;
    text-align: center;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    color: #c4a574;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

/* ============ ABOUT SECTION ============ */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    color: #2c2c2c;
    margin-bottom: 25px;
}

.about-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.9;
    margin-bottom: 20px;
}

.about-image {
    height: 400px;
    background: linear-gradient(135deg, #e8dfcf 0%, #f5f1e8 100%);
    border-radius: 12px;
    border: 1px solid rgba(196, 165, 116, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c4a574;
    font-size: 14px;
    font-weight: 500;
}

/* ============ STATS SECTION ============ */
.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

@media (max-width: 992px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .stats-container {
        grid-template-columns: 1fr;
        padding: 20px;
    }
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #c4a574;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============ SERVICES SECTION ============ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(196, 165, 116, 0.1);
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #c4a574;
    box-shadow: 0 15px 40px rgba(196, 165, 116, 0.15);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: #c4a574;
}

.service-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 15px;
}

.service-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* ============ PROJECTS SECTION ============ */
.projects-tabs {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-bottom: 60px;
}

.tab {
    padding: 10px 30px;
    border: none;
    background: transparent;
    font-size: 15px;
    cursor: pointer;
    position: relative;
    font-weight: 600;
    color: #999;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
}

.tab.active {
    color: #c4a574;
}

.tab.active::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #c4a574, #8b7355);
    border-radius: 2px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.project-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(196, 165, 116, 0.1);
}

.project-card:hover {
    transform: translateY(-12px) scale(1.01);
    box-shadow: 0 20px 50px rgba(196, 165, 116, 0.2);
    border-color: #c4a574;
}

.project-image {
    height: 220px;
    background: linear-gradient(135deg, #e8dfcf 0%, #f5f1e8 100%);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(196, 165, 116, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c4a574;
    font-size: 13px;
    font-weight: 500;
}

.project-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(196, 165, 116, 0.2) 0%, rgba(139, 115, 85, 0.1) 100%);
}

.project-content {
    padding: 28px;
}

.project-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.badge-ongoing {
    background: rgba(196, 165, 116, 0.15);
    color: #c4a574;
}

.badge-upcoming {
    background: rgba(100, 150, 200, 0.15);
    color: #6496c8;
}

.project-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 8px;
}

.project-location {
    font-size: 13px;
    color: #c4a574;
    margin-bottom: 12px;
    font-weight: 500;
}

.project-desc {
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
    min-height: 40px;
}

/* ============ MODAL ============ */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.modal {
    background: white;
    border-radius: 16px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp 0.4s ease;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    position: relative;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #999;
    transition: all 0.2s ease;
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.modal-close:hover {
    color: #2c2c2c;
    background: #f5f1e8;
}

.image-slider {
    position: relative;
    height: 350px;
    background: linear-gradient(135deg, #e8dfcf 0%, #f5f1e8 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c4a574;
    font-size: 13px;
    font-weight: 500;
}

.slider-image {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    background: linear-gradient(135deg, rgba(196, 165, 116, 0.3) 0%, rgba(139, 115, 85, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-image.active {
    opacity: 1;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    font-family: 'Montserrat', sans-serif;
}

.slider-arrow:hover {
    background: white;
    transform: translateY(-50%) scale(1.05);
}

.slider-arrow.left {
    left: 20px;
}

.slider-arrow.right {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: white;
    width: 24px;
    border-radius: 4px;
}

.modal-content {
    padding: 35px;
}

.modal-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 8px;
}

.modal-location {
    color: #c4a574;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 14px;
}

.modal-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(196, 165, 116, 0.1);
}

.modal-detail-item {
    font-size: 13px;
    color: #666;
}

.modal-detail-label {
    color: #c4a574;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.5px;
}

.modal-desc {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 15px;
}

/* ============ AMENITIES ============ */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
}

.amenity-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(196, 165, 116, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.amenity-card:hover {
    border-color: #c4a574;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(196, 165, 116, 0.15);
}

.amenity-icon {
    font-size: 32px;
    margin-bottom: 12px;
    color: #c4a574;
}

.amenity-name {
    font-size: 13px;
    font-weight: 600;
    color: #2c2c2c;
    line-height: 1.5;
}

/* ============ WHY CHOOSE US ============ */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.why-card {
    text-align: center;
    padding: 30px 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: white;
    border-radius: 12px;
    border: 1px solid rgba(196, 165, 116, 0.1);
}

.why-card:hover {
    transform: translateY(-10px);
    border-color: #c4a574;
    box-shadow: 0 20px 40px rgba(196, 165, 116, 0.15);
}

.why-card:hover .why-icon {
    transform: scale(1.2);
}

.why-icon {
    font-size: 40px;
    margin-bottom: 15px;
    color: #c4a574;
    transition: transform 0.3s ease;
}

.why-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 12px;
}

.why-text {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

/* ============ INFRASTRUCTURE ============ */
.infra-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.infra-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(196, 165, 116, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.infra-card:hover {
    transform: translateY(-8px);
    border-color: #c4a574;
    box-shadow: 0 15px 40px rgba(196, 165, 116, 0.15);
}

.infra-icon {
    font-size: 44px;
    margin-bottom: 20px;
}

.infra-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 15px;
}

.infra-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

/* ============ TESTIMONIALS ============ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 35px;
    border-radius: 10px;
    border: 1px solid rgba(196, 165, 116, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: #c4a574;
    box-shadow: 0 15px 40px rgba(196, 165, 116, 0.15);
}

.testimonial-text {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.8;
    font-style: italic;
}

.testimonial-author {
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 5px;
}

.testimonial-role {
    font-size: 12px;
    color: #c4a574;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============ GALLERY ============ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    height: 250px;
    background: linear-gradient(135deg, #e8dfcf 0%, #f5f1e8 100%);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(196, 165, 116, 0.2);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c4a574;
    font-size: 13px;
    font-weight: 500;
}

.gallery-item:hover {
    transform: scale(1.05);
    border-color: #c4a574;
    box-shadow: 0 10px 25px rgba(196, 165, 116, 0.2);
}

/* ============ WALKTHROUGH VIDEO ============ */
.walkthrough-section {
    padding: 80px 20px;
    background: #f9f8f6;
    text-align: center;
}

.video-container {
    max-width: 1000px;
    margin: 40px auto 0;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border: 5px solid white;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ============ FAQ ============ */
.faq-container {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 1px solid rgba(196, 165, 116, 0.1);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.open {
    box-shadow: 0 10px 25px rgba(196, 165, 116, 0.15);
    border-color: #c4a574;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    border: none;
    width: 100%;
    text-align: left;
    font-weight: 600;
    color: #2c2c2c;
    transition: background 0.2s ease;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
}

.faq-question:hover {
    background: #f9f8f6;
}

.faq-icon {
    color: #c4a574;
    font-size: 16px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: #666;
    line-height: 1.8;
}

.faq-item.open .faq-answer {
    padding: 0 20px 20px;
    max-height: 500px;
}

/* ============ CONTACT SECTION ============ */
.contact-container {
    display: flex;
    flex-direction: column;
    max-width: 800px;
    margin: 0 auto;
    gap: 40px;
}

.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(196, 165, 116, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c2c2c;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px 15px;
    border: 1px solid rgba(196, 165, 116, 0.2);
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #c4a574;
    box-shadow: 0 0 0 3px rgba(196, 165, 116, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-info {
    background: white;
    padding: 40px;
    border-radius: 10px;
    border: 1px solid rgba(196, 165, 116, 0.1);
}

.contact-info h3 {
    margin-bottom: 30px;
    font-size: 22px;
    color: #2c2c2c;
    font-family: 'Montserrat', sans-serif;
}

.contact-info-item {
    margin-bottom: 30px;
}

.contact-info-label {
    color: #c4a574;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: block;
}

.contact-info-text {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
}

.contact-map {
    height: 250px;
    background: linear-gradient(135deg, #e8dfcf 0%, #f5f1e8 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c4a574;
    font-weight: 500;
    margin-top: 30px;
    border: 1px solid rgba(196, 165, 116, 0.2);
}

/* ============ WHATSAPP BUTTON ============ */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 28px;
    color: white;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    z-index: 999;
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* ============ NEW CENTERED FOOTER ============ */
footer {
    background: #4b4b4b; /* Deep grey as seen in the image */
    color: #ffffff;
    padding: 80px 20px 40px;
    text-align: center;
    margin-top: 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    margin-bottom: 40px;
}

.footer-logo img {
    height: 70px;
    width: auto;
    margin-bottom: 15px;
    filter: brightness(0) invert(1); /* Ensure logo is white on dark background */
}

.logo-subtitle {
    font-size: 10px;
    letter-spacing: 5px;
    color: #aaaaaa;
    text-transform: uppercase;
    font-weight: 500;
}

.footer-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.footer-nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: color 0.3s;
    letter-spacing: 0.5px;
}

.footer-nav a:hover {
    color: #c4a574;
}

.footer-nav .sep {
    color: #777777;
    font-size: 16px;
    font-weight: 300;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 50px;
}

.footer-social a {
    width: 48px;
    height: 48px;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-social a:hover {
    background: #ffffff;
    color: #4b4b4b;
    border-color: #ffffff;
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.footer-bottom-text {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    font-size: 13px;
    color: #bbbbbb;
    line-height: 1.6;
}

.footer-bottom-text a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.footer-bottom-text a:hover {
    color: #c4a574;
}

.footer-legal {
    margin-top: 15px;
    font-size: 11px;
}

.footer-legal a {
    color: #888888;
    font-weight: 400;
    margin: 0 8px;
    text-decoration: none;
}

.footer-legal a:hover {
    color: #ffffff;
}

/* ============ STICKY ENQUIRE BUTTON ============ */
.sticky-enquire {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: right bottom;
    background: #c4a574; /* Logo gold color */
    color: white;
    padding: 15px 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    z-index: 2001;
    border: none;
    cursor: pointer;
    border-radius: 12px 12px 0 0;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    right: -2px;
}

.sticky-enquire:hover {
    background: #a68b61;
    padding-right: 40px;
}

/* Float Animation for WhatsApp and Scroll Top */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.whatsapp-btn {
    animation: float 3s ease-in-out infinite;
}

@media (max-width: 1024px) {
    .navbar {
        padding: 15px 30px;
    }
    .hero h1 {
        font-size: 50px;
    }
    .about-container {
        gap: 40px;
    }
}

@media (max-width: 900px) {
    .sticky-enquire {
        display: none;
    }
    
    .footer-nav {
        gap: 15px 20px;
        justify-content: center;
    }
    
    .footer-nav .sep {
        display: none; /* Cleaner on mobile */
    }

    .section-title {
        font-size: 32px;
    }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
    .navbar {
        padding: 12px 20px;
    }

    .nav-links {
        display: none; /* Handled by hamburger logic */
    }

    .hero {
        padding-top: 80px;
        height: auto;
        min-height: 450px;
    }

    .hero-content {
        padding: 60px 20px;
        text-align: center;
    }

    .hero h1 {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .hero p {
        font-size: 15px;
        margin: 0 auto 30px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .section {
        padding: 60px 20px;
    }

    .section-title {
        font-size: 28px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .modal {
        grid-template-columns: 1fr;
        max-height: 95vh;
        width: 95%;
    }

    .modal-img {
        height: 250px;
    }

    .modal-body {
        padding: 30px 20px;
    }

    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-image {
        height: 300px;
        order: -1;
    }

    .footer-container {
        padding: 60px 20px 40px;
    }

    .footer-nav {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
}

/* HAMBURGER MENU */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    margin-left: 15px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: linear-gradient(135deg, #c4a574 0%, #8b7355 100%);
    border-radius: 2px;
    transition: all 0.3s ease;
}

@media (max-width: 900px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background: white;
        padding-top: 100px;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        gap: 25px;
        align-items: flex-start;
        padding-left: 40px;
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-right-container {
        display: flex;
        align-items: center;
    }
}


/* ============ SCROLL TO TOP ============ */
.scroll-top-btn {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #c4a574 0%, #8b7355 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    color: white;
    box-shadow: 0 5px 20px rgba(196, 165, 116, 0.35);
    transition: all 0.3s ease;
    z-index: 998;
    text-decoration: none;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
}

.scroll-top-btn.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(196, 165, 116, 0.5);
}

/* ============ PAGE LOADER ============ */
.page-loader {
    position: fixed;
    inset: 0;
    background: #f5f1e8;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(196, 165, 116, 0.2);
    border-top-color: #c4a574;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ============ TRUST BADGES (for footer) ============ */
.trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #999;
}

.trust-badge i {
    color: #c4a574;
    font-size: 16px;
}

@media (max-width: 900px) {
    .navbar {
        padding: 12px 25px;
    }

    .nav-right-container {
        gap: 15px;
    }

    .nav-links {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        padding-top: 90px;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        gap: 20px;
        align-items: flex-start;
        padding-left: 40px;
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        z-index: 1001;
    }

    .hamburger span {
        width: 25px;
        height: 3px;
        background: linear-gradient(135deg, #c4a574 0%, #8b7355 100%);
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero {
        height: 60vh;
        margin-top: 70px; /* Reduced for mobile navbar */
        min-height: 350px;
    }

    .rera-hero-badge {
        bottom: 20px;
        right: 20px;
        padding: 8px 12px;
        transform: scale(0.85);
        transform-origin: bottom right;
    }

    .section {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 50vh;
    }

    .section-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .scroll-top-btn {
        bottom: 90px;
        right: 20px;
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}

/* ============ CONTACT SECTION BACKGROUND ============ */
.contact-section-bg {
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('image/ba1.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 100px 60px !important;
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
}

.contact-section-bg .section-title {
    color: white !important;
}

.contact-section-bg .section-subtitle {
    color: #c4a574 !important;
}

.contact-section-bg label {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
}

.contact-section-bg input, 
.contact-section-bg select, 
.contact-section-bg textarea {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: white !important;
}

.contact-section-bg input::placeholder, 
.contact-section-bg textarea::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
}

.contact-section-bg select option {
    background: #2c2c2c;
    color: white;
}

.contact-section-bg .checkbox-group label {
    color: rgba(255, 255, 255, 0.8) !important;
}

.contact-section-bg .btn-primary {
    background: linear-gradient(135deg, #c4a574 0%, #8b7355 100%);
    border: none;
    box-shadow: 0 10px 30px rgba(196, 165, 116, 0.3);
}

/* ============ WALKTHROUGH SECTION BACKGROUND ============ */
.walkthrough-section-bg {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('image/ba.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 100px 60px !important;
    text-align: center;
}

.walkthrough-section-bg .section-title,
.walkthrough-section-bg p {
    color: white !important;
}

.walkthrough-section-bg .video-container {
    max-width: 1000px;
    margin: 40px auto 0;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border: 5px solid white;
}

.walkthrough-section-bg .section-subtitle {
    color: #c4a574 !important;
}

/* ============ PROJECTS SECTION BACKGROUND ============ */
.projects-section-bg {
    background: linear-gradient(rgba(245, 241, 232, 0.95), rgba(245, 241, 232, 0.95)), url('image/ba2.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 100px 60px !important;
}

.projects-section-bg .projects-grid {
    max-width: 1400px;
    margin: 0 auto;
}

.contact-section-bg .contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-section-bg .contact-form-wrapper {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-section-bg .form-group label {
    color: white !important;
}

.contact-section-bg input, 
.contact-section-bg select, 
.contact-section-bg textarea {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: white !important;
}