* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #0b0b0b;
    color: #e5e5e5;
    line-height: 1.6;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
}

.logo span {
    color: #c9a24d;
}

.navbar nav a {
    margin-left: 30px;
    text-decoration: none;
    color: #e5e5e5;
    font-size: 14px;
    transition: color 0.3s;
}

.navbar nav a:hover {
    color: #c9a24d;
}

/* BUTTONS */
.btn {
    padding: 10px 22px;
    border: 1px solid #c9a24d;
    color: #c9a24d;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #c9a24d;
    color: #000;
}

.btn-gold {
    background: #c9a24d;
    color: #000;
    border: none;
}

/* HERO */
.hero {
    height: 100vh;
    background: url("images/hero1.png") center/cover no-repeat;
    position: relative;
}

.hero-overlay {
    position: absolute;
    inset: 0;
   
}

.hero-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* SECTIONS */
.section {
    padding: 100px 20px;
    background: #111;
}

.section.dark {
    background: #000;
}

.container {
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 20px;
    color: #c9a24d;
}

/* CARDS */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
    border: 1px solid #222;
    padding: 30px;
    transition: transform 0.3s, border-color 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    border-color: #c9a24d;
}

/* SERVICES */
.services {
    list-style: none;
    margin-top: 30px;
}

.services li {
    margin: 15px 0;
    font-size: 18px;
}

/* CONTACT */
.contact-form {
    max-width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 14px;
    background: #111;
    border: 1px solid #333;
    color: #fff;
}

.contact-form textarea {
    min-height: 120px;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    background: #000;
    font-size: 14px;
    color: #777;
}
/* ABOUT LUXURY SECTION */
.about-luxury {
    background: #f7f3ec;
    padding: 100px 60px;
}

.about-container {
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

/* IMAGE */
.about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* CONTENT */
.about-content {
    color: #5a5146;
}

.overline {
    font-size: 13px;
    letter-spacing: 3px;
    color: #c9a24d;
    font-weight: 500;
}

.about-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    line-height: 1.3;
    margin: 15px 0 20px;
    color: #3b352d;
}

.gold-line {
    width: 60px;
    height: 2px;
    background: #c9a24d;
    margin-bottom: 25px;
}

.about-content p {
    font-size: 17px;
    line-height: 1.8;
    max-width: 500px;
    margin-bottom: 40px;
}

/* BUTTONS */
.about-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-outline {
    padding: 14px 28px;
    border: 1px solid #c9a24d;
    text-decoration: none;
    color: #c9a24d;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #c9a24d;
    color: #000;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-luxury {
        padding: 80px 30px;
    }

    .about-content h2 {
        font-size: 34px;
    }
}
.featured-projects {
    padding: 80px 40px;
    background: #f2f2f2;
}

.featured-projects h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 50px;
    color: #0a1435;
}

.projects-grid {
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* CARD */
.project-card {
    background: #000000;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-8px);
}

.project-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* BODY */
.card-body {
    padding: 22px;
}

.project-title {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    text-decoration: underline;
    display: inline-block;
    margin-bottom: 6px;
}

.developer {
    font-size: 14px;
    color: #444;
    margin-bottom: 8px;
}

.location {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.bhk {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.divider {
    height: 1px;
    background: #ccc;
    margin: 15px 0;
}

/* PRICE ROW */
.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 20px;
    font-weight: 700;
}

.enquire-btn {
    background: #1e6b24;
    color: #fff;
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 14px;
    text-decoration: none;
    font-weight: 600;
}

.enquire-btn:hover {
    background: #15541b;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .featured-projects {
        padding: 60px 20px;
    }

    .featured-projects h2 {
        font-size: 26px;
    }
}
/* SCROLL ANIMATION */
.fade-up {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.9s ease-out;
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}
