
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-dark:#000000;
            --accent-gold: #d42b2b;
            --bg-light: #f6f3ff;
            --white: #ffffff;
            --text-dark: #000000;
            --text-light: #000000;
            --border-light: #ddd7f5;
        }


        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
            background:#ff2c2c;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 60px;
        }

        .overlay-text {
    background: rgba(0, 0, 0, 0.4); /* optional semi-transparent background */
    padding: 1rem 2rem;
    border-radius: 10px;
}

.main-category {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.main-category:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.overlay-text {
    background: rgba(255, 0, 0, 0.6); /* red overlay for text readability */
    padding: 1rem 2rem;
    border-radius: 15px;
}

@media (max-width: 768px) {
    .main-category {
        height: 300px;
    }

    .overlay-text h2 {
        font-size: 1.5rem;
    }

    .overlay-text p {
        font-size: 1rem;
    }
}



        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: var(--white);
            padding: 1.3rem 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .nav-container {
            max-width: 1800px;
            margin: 0 auto;
            padding: 0 60px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-dark);
        }

        .nav-links {
            display: flex;
            gap: 3rem;
            list-style: none;
        }

        .nav-links a {
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--accent-gold);
        }

        /* Navbar Base */

        .nav-links {
            display: flex;
            gap: 25px;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: #222;
            font-weight: 500;
            padding: 8px 16px;
            border-radius: 25px;
            transition: all 0.3s ease;
        }


        /* Hover Effect */

        .nav-links a:hover {
            background: #eee;
        }


        /* Active Button */

        .nav-links a.active {
            background: #d42b2b;
            color: white;
            padding: 10px 22px;
        }


        /* Hero Section */
        .hero {
            margin-top: 80px;
            padding: 120px 0;
            background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
            text-align: center;
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 5rem;
            font-weight: 800;
            color: var(--primary-dark);
            line-height: 1.1;
            margin-bottom: 3rem;
        }

        .search-bar {
            display: flex;
            gap: 1rem;
            max-width: 1000px;
            margin: 0 auto;
            background: white;
            padding: 1.2rem;
            border-radius: 45px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }

        .search-input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: 1px solid var(--border-light);
            border-radius: 39px;
            font-size: 0.95rem;
            font-family: 'Inter', sans-serif;
            transition: all 0.3s ease;
        }

        .search-input:focus {
            outline: none;
            border-color: var(--accent-gold);
        }

        .search-btn {
            padding: 1rem 3rem;
            background: var(--primary-dark);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .search-btn:hover {
            background: var(--accent-gold);
        }

        /* Client Logos */
        .clients {
            padding: 5rem 0;
            background: #000;
        }

        .client-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 3rem;
            align-items: center;
        }


        .client-scroll {
            width: 100%;
            overflow: hidden;
            padding: 30px 0;
            position: relative;
        }

        .client-track {
            display: flex;
            gap: 40px;
            animation: scroll 120s linear infinite;
            
        }

        .client-logo {
            min-width: 180px;
            height: 80px;
            background: #eee;
            border-radius: 10px;

            display: flex;
            align-items: center;
            justify-content: center;

            font-weight: 600;
            color: #555;

            transition: 0.3s;
        }

        .client-logo:hover {
            background: #d42b2b;
            color: #fff;
            transform: scale(1.05);
        }

        /* Section Styles */
        section {
            padding: 6rem 0;
        }

        .section-header {
            max-width: 650px;
            margin-bottom: 4rem;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            font-weight: 700;
            color: black;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }

         .section-title2 {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            font-weight: 700;
            color:#fff;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }

        .section-description {
            font-size: 1.1rem;
            color: black;
            line-height: 1.8;
        }

         .section-description2 {
            font-size: 1.1rem;
            color:#fff;
            line-height: 1.8;
        }

        /* Team Section */
        .team {
            background:rgb(255 44 44);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
        }

        .service-card {
            background: white;
          
            padding: 3rem;
            border-radius: 16px;
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .service-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            color: #ff2c2c;
            margin-bottom: 1rem;
        }

        .service-card p {
             color: #ff2c2c;
            line-height: 1.8;
        }

        /* Why Section */
        .why-section {
            background: var(--white);
        }

        .why-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: start;
        }

        .features-list {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .feature-item {
            font-size: 1.1rem;
            color: #fff;
            font-weight: 500;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }

        .stat-card {
            background: var(--bg-light);
            padding: 3rem 2rem;
            border-radius: 16px;
            text-align: center;
        }

        .stat-number {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-dark);
            display: block;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: var(--text-light);
            font-size: 0.95rem;
        }

        /* Spaces Section */
        .spaces {
            background: rgb(255 44 44);
            color: white;
        }

        .spaces .section-title,
        .spaces .section-description {
            color: black;
        }

        .property-types {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 2rem;
        }

        .property-type {
            text-align: center;
            padding: 2.5rem 1.5rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .property-type:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-5px);
        }

        .property-icon {
            width: 80px;
            height: 80px;
            background: white;
            border-radius: 50%;
            margin: 0 auto 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
        }

        .property-type h4 {
            font-size: 1.1rem;
            font-weight: 600;
        }

        /* Property Card Hover Effect */
.property-card {
    transition: transform 0.3s ease;
}

.property-card:hover {
    transform: scale(1.05);
}

.property-card .property-content {
    z-index: 2;
    position: relative;
}

.property-card .overlay {
    transition: background 0.3s ease;
}

.property-card:hover .overlay {
    background: rgba(0, 0, 0, 0.2);
}


        /* Testimonials */
        .testimonials {
            background: var(--bg-light);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 3rem;
        }

        .testimonial-card {
            background: var(--bg-light);
            padding: 3rem;
            border-radius: 16px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .testimonial-text {
            font-style: italic;
            color: var(--text-light);
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            background: var(--accent-gold);
            border-radius: 50%;
        }

        .author-info h5 {
            font-weight: 600;
            color: var(--primary-dark);
        }

        .author-info p {
            font-size: 0.9rem;
            color: var(--text-light);
        }

        /* Contact Section */
        .contact {
            background: var(--white);
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 5rem;
            align-items: start;
        }

        .contact-info h3 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            color: var(--primary-dark);
            margin-bottom: 3rem;
        }

        .contact-item {
            margin-bottom: 2.5rem;
        }

        .contact-item h4 {
            font-size: 0.85rem;
            text-transform: uppercase;
            color: var(--text-light);
            margin-bottom: 0.5rem;
            letter-spacing: 1.5px;
            font-weight: 600;
        }

        .contact-item p {
            font-size: 1.3rem;
            color: var(--primary-dark);
            font-weight: 600;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .form-group label {
            font-weight: 500;
            color: var(--text-dark);
        }

        .form-group input,
        .form-group textarea {
            padding: 1rem 1.5rem;
            border: 1px solid var(--border-light);
            border-radius: 8px;
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent-gold);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .submit-btn {
            padding: 1.2rem 3rem;
            background: var(--primary-dark);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            align-self: flex-start;
        }

        .submit-btn:hover {
            background: var(--accent-gold);
        }

        /* Footer */


        /* Modern Footer */



        /* .footer-box {
            max-width: 1200px;
            margin: auto;
            background: #1f1f2e;
            color: white;
            border-radius: 25px;
            padding: 50px;
        } */

        /* CTA */

        /* Footer Base */

        .main-footer {
            background: #ff2c2c;
            color: black;
            padding: 80px 20px 50px;
            border-radius: 20px;
        }

        .footer-container {
            max-width: 1200px;
            margin: auto;
        }


        /* CTA Section */

        .footer-cta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 30px;
            flex-wrap: wrap;
        }

        .footer-cta-text {
            max-width: 600px;
        }

        .footer-cta h2 {
            font-size: 2.2rem;
            margin-bottom: 10px;
        }

        .footer-cta p {
            color: black;
            line-height: 1.6;
        }


        /* Button */

        .footer-btn {
            width: 70px;
            height: 70px;
            background: #d42b2b;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            text-decoration: none;
            transition: 0.3s;
            flex-shrink: 0;
        }

        .footer-btn:hover {
            background: #d42b2b;
            transform: scale(1.1);
        }


        /* Line */

        .footer-line {
            margin: 50px 0;
            border: none;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }


        /* Bottom Area */

        .footer-bottom-content {
            display: flex;
            justify-content: space-between;
            gap: 50px;
            flex-wrap: wrap;
        }


        /* Brand */

        .footer-brand-area {
            max-width: 350px;
        }

        .footer-logo {
            background: #d42b2b;
            display: inline-block;
            padding: 6px 14px;
            font-weight: bold;
            border-radius: 4px;
            margin-bottom: 15px;
        }

        .footer-brand-area p {
            color: black;
            margin: 15px 0;
            line-height: 1.6;
        }


        /* Social */

        .footer-social {
            display: flex;
            gap: 15px;
        }

        .footer-social a {
            color: black;
            font-size: 16px;
            transition: 0.3s;
        }

        .footer-social a:hover {
            color: #000000;
        }


        /* Links */

        .footer-links-area {
            display: flex;
            gap: 80px;
        }

        .footer-links-area h5 {
            margin-bottom: 15px;
            font-size: 16px;
        }

        .footer-links-area a {
            display: block;
            color: black;
            margin-bottom: 8px;
            text-decoration: none;
            transition: 0.3s;
        }

        .footer-links-area a:hover {
            color: white;
        }


        /* Mobile Responsive */

        @media (max-width: 768px) {

            .footer-cta {
                flex-direction: column;
                align-items: flex-start;
                text-align: left;
            }

            .footer-btn {
                margin-top: 20px;
            }

            .footer-bottom-content {
                flex-direction: column;
            }

            .footer-links-area {
                gap: 40px;
                flex-wrap: wrap;
            }
        }

        /* Mobile */


        /* Responsive */
        @media (max-width: 1200px) {

            .container,
            .nav-container {
                padding: 0 40px;
            }

            .hero h1 {
                font-size: 4rem;
            }

            .services-grid,
            .property-types,
            .testimonials-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 768px) {

            .container,
            .nav-container {
                padding: 0 20px;
            }

            .nav-links {
                gap: 1.5rem;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .search-bar {
                flex-direction: column;
            }

            .services-grid,
            .property-types,
            .testimonials-grid,
            .stats-grid {
                grid-template-columns: 1fr;
            }

            .client-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .section-title {
                font-size: 2.5rem;
            }

            .why-content,
            .contact-content {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .icon-btn {
            width: 55px;
            min-width: 55px;
            height: 50px;

            display: flex;
            align-items: center;
            justify-content: center;

            font-size: 18px;

            border-radius: 50%;
            padding: 0;
        }

        /* Make search bar relative */
        .search-bar {
            position: relative;
        }

        /* Optional: stick button to right */
        .icon-btn {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
        }

        /* Scroll Area */
        .scroll-area {
            max-height: 400px;
            overflow-y: auto;
            padding-right: 10px;
        }

        /* Card */
        .testimonial-card {
            background: #fff;
            padding: 20px;
            border-radius: 12px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        /* Avatar */
        .author-avatar {
            width: 45px;
            height: 45px;
            background: #ddd;
            border-radius: 50%;
        }

        /* Mobile */
        @media (max-width: 768px) {
            .scroll-area {
                max-height: 300px;
            }
        }

        .testimonial-slider {
            overflow: hidden;
            width: 100%;
        }

        /* Track */
        .testimonials-track {
            display: flex;
            gap: 20px;
            transition: transform 0.5s ease;
        }

        /* Each Card */
        .testimonial-item {
            flex: 0 0 calc(50% - 10px);
            /* 2 cards */
        }

        /* Mobile: 1 card */
        @media (max-width: 768px) {
            .testimonial-item {
                flex: 0 0 100%;
            }
        }

        /* Floating Search Wrapper */

        .floating-search {
            position: relative;
            margin-top: -50px;
            /* Pulls up into middle */
            z-index: 10;
            display: flex;
            justify-content: center;
        }


        /* Search Box */

        .search-box {
            background: #fff;
            padding: 15px 20px;
            border-radius: 50px;
            display: flex;
            align-items: center;
            gap: 15px;
            width: 80%;
            max-width: 900px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        /* Inputs */

        .search-box input,
        .search-box select {
            border: none;
            outline: none;
            padding: 10px 15px;
            flex: 1;
            font-size: 14px;
        }


        /* Button */

        .search-box button {
            background: #d42b2b;
            border: none;
            color: white;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            cursor: pointer;
        }

.stat-card {
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: default;
}
.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.section-title {
    line-height: 1.2;
}
.feature-item i {
    font-size: 1.1rem;
}
@media(max-width: 768px){
    .section-title {
        font-size: 2rem;
    }
}
/* Optional: Add this CSS */


.property-card:hover {
    transform: scale(1.05);
}
.property-card .property-content {
    z-index: 2; /* Ensure content is above overlay */
}
.property-card .overlay {
    transition: background 0.3s;
}
.property-card:hover .overlay {
    background: rgba(0,0,0,0.2); /* lighter overlay on hover */
}
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 70px;
    width: auto;
    object-fit: contain;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background:#ff2c2c;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;

    height: 100%;
    display: flex;
    justify-content: space-between; /* THIS pushes left & right */
    align-items: center;
}


