
        body {
            box-sizing: border-box;
        }

        * {
            font-family: 'Montserrat', sans-serif;
        }

        .font-display {
            font-family: 'Playfair Display', serif;
        }

        /* Loader Styles */
        .loader-wrapper {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /* background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%); */
            background-color: #fff;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: opacity 0.8s ease, visibility 0.8s ease;
        }

        .loader-wrapper.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .loader-logo {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            color: #d4af37;
            letter-spacing: 0.3em;
            margin-bottom: 2rem;
            opacity: 0;
            animation: fadeInUp 1s ease forwards;
        }

        .loader-spinner {
            width: 50px;
            height: 50px;
            border: 3px solid rgba(212, 175, 55, 0.1);
            border-top-color: #d4af37;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        .loader-text {
            margin-top: 1.5rem;
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.875rem;
            letter-spacing: 0.2em;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pulse {

            0%,
            100% {
                opacity: 0.6;
            }

            50% {
                opacity: 1;
            }
        }

        /* Main Content Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease forwards;
        }

        .delay-1 {
            animation-delay: 0.1s;
        }

        .delay-2 {
            animation-delay: 0.2s;
        }

        .delay-3 {
            animation-delay: 0.3s;
        }

        .delay-4 {
            animation-delay: 0.4s;
        }

        .delay-5 {
            animation-delay: 0.5s;
        }

        .delay-6 {
            animation-delay: 0.6s;
        }

        /* Property Card Styles */
        .property-card {
            background: #ffffff;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            transform: translateY(0);
        }

        .property-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
        }

        .property-image {
            position: relative;
            height: 240px;
            overflow: hidden;
        }

        .property-image::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 50%;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
        }

        .property-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s ease;
        }

        .property-card:hover .property-image img {
            transform: scale(1.1);
        }

        .property-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: linear-gradient(135deg, #d4af37, #f4d03f);
            color: #1a1a2e;
            padding: 6px 16px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            z-index: 10;
        }

        .property-favorite {
            position: absolute;
            top: 15px;
            right: 15px;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .property-favorite:hover {
            background: #d4af37;
            transform: scale(1.1);
        }

        .property-favorite:hover svg {
            stroke: #fff;
        }

        .property-favorite.active {
            background: #d4af37;
        }

        .property-favorite.active svg {
            fill: #fff;
            stroke: #fff;
        }

        .property-price {
            position: absolute;
            bottom: 15px;
            left: 15px;
            color: #fff;
            font-size: 1.5rem;
            font-weight: 700;
            z-index: 10;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .property-content {
            padding: 24px;
        }

        .property-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.25rem;
            font-weight: 600;
            color: #1a1a2e;
            margin-bottom: 8px;
            transition: color 0.3s ease;
        }

        .property-card:hover .property-title {
            color: #d4af37;
        }

        .property-location {
            display: flex;
            align-items: center;
            gap: 6px;
            color: #666;
            font-size: 0.875rem;
            margin-bottom: 16px;
        }

        .property-features {
            display: flex;
            gap: 20px;
            padding-top: 16px;
            border-top: 1px solid #eee;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 6px;
            color: #555;
            font-size: 0.875rem;
        }

        .feature-icon {
            width: 18px;
            height: 18px;
            color: #d4af37;
        }

        /* Hero Section */
        .hero-section {
            /* background: linear-gradient(135deg, #ffffff 0%, #ffffff 50%, #ffffff 100%); */
            background-color: #ffff !important;
            position: relative;
            overflow: hidden;
        }

        .hero-pattern {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            /* background-image: radial-gradient(rgba(212, 175, 55, 0.1) 1px, transparent 1px); */
            background-size: 30px 30px;
        }

        .hero-glow {
            position: absolute;
            width: 600px;
            height: 600px;
            /* background: radial-gradient(circle, rgba(212, 175, 55, 0.15), transparent 70%); */
            top: -200px;
            right: -200px;
            animation: float 8s ease-in-out infinite;
        }

        @keyframes float {

            0%,
            100% {
                transform: translate(0, 0);
            }

            50% {
                transform: translate(-30px, 30px);
            }
        }

        /* Search Bar */
        .search-bar {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 8px;
        }

        .search-input {
            background: rgba(255, 255, 255, 0.95);
            border: none;
            border-radius: 12px;
            padding: 16px 20px;
            font-size: 0.95rem;
            outline: none;
            transition: all 0.3s ease;
        }

        .search-input:focus {
            box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.3);
        }

        .search-btn {
            background: linear-gradient(135deg, #d4af37, #f4d03f);
            color: #1a1a2e;
            border: none;
            border-radius: 12px;
            padding: 16px 32px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .search-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
        }

        /* Stats */
        .stat-item {
            text-align: center;
            padding: 20px;
        }

        .stat-number {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: #d4af37;
            line-height: 1;
        }

        .stat-label {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.875rem;
            margin-top: 8px;
            letter-spacing: 0.1em;
        }

        /* Section Title */
        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            font-weight: 600;
            color: #1a1a2e;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #d4af37, #f4d03f);
            border-radius: 3px;
        }

        /* CTA Button */
        .cta-btn {
            background: linear-gradient(135deg, #d4af37, #f4d03f);
            color: #1a1a2e;
            padding: 16px 40px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            border: none;
            cursor: pointer;
            transition: all 0.4s ease;
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
        }

        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
        }

        /* Navigation */
        .nav-link {
            /* color: rgba(255, 255, 255, 0.8); */
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #d4af37;
            transition: width 0.3s ease;
        }

        .nav-link:hover {
            color: #d4af37;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        /* Mobile Menu */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            z-index: 100;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 30px;
        }

        .mobile-menu.active {
            display: flex;
        }

        .mobile-menu-link {
            font-size: 1.5rem;
            color: #fff;
            transition: color 0.3s ease;
        }

        .mobile-menu-link:hover {
            color: #d4af37;
        }

        /* Footer */
        .footer-section {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
        }

        .footer-link {
            color: rgba(255, 255, 255, 0.6);
            transition: color 0.3s ease;
        }

        .footer-link:hover {
            color: #d4af37;
        }

        .social-icon {
            width: 44px;
            height: 44px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .social-icon:hover {
            background: #d4af37;
            transform: translateY(-3px);
        }

        /* Scroll Animation */
        .scroll-reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s ease;
        }

        .scroll-reveal.revealed {
            opacity: 1;
            transform: translateY(0);
        }
     
        .loader-wrapper img {
            width: 280px;
            height: auto;
        }

        @media (max-width: 768px) {
            .loader-wrapper img {
                width: 200px;
            }
        }

        .loader-wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            /* overall spacing control */
        }

        .loader-wrapper img {
            margin-bottom: 4px;
        }

        .loader-logo {
            margin: 0;
            padding: 0;
            line-height: 1.2;
        }

        .tag-line {
            margin: 0;
            padding: 5px;
            line-height: 1.2;
            font-weight: 500;
        }

        .loader-spinner {
            margin-top: 6px;
        }

        /* Mobile devices */
        @media (max-width: 768px) {
            .loader-logo {
                font-size: 24px;
                line-height: 1.1;
                padding: 0 10px;
                /* text wrap clean rahe */
            }
        }

        /* Small phones */
        @media (max-width: 480px) {
            .loader-logo {
                font-size: 24px;
            }
        }
     
                    .mobile-menu-btn {
                        background-color: #674b26;
                        color: #fff;
                        border: none;
                        border-radius: 10px;
                        padding: 8px 12px;
                        font-size: 18px;
                        cursor: pointer;
                        transition: background-color 0.3s ease, transform 0.2s ease;
                    }

                    .mobile-menu-btn:hover {
                        background-color: #5a4021;
                    }

                    .mobile-menu-btn:active {
                        transform: scale(0.96);
                    }

                    /* Mobile fine tuning */
                    @media (max-width: 768px) {
                        .mobile-menu-btn {
                            padding: 6px 10px;
                            font-size: 16px;
                        }
                    }
                  
            .content-section {
                padding: 60px 16px;
                /* background: #f9f9f9; */
            }

            .content-section .container {
                max-width: 1230px;
                margin: 0 auto;
            }

            .content-section h2 {
                font-size: 32px;
                margin-bottom: 16px;
                color: #222;
            }

            .content-section p {
                /* max-width: 900px; */

                text-align: justify;
                font-size: 16px;
                line-height: 1.7;
                color: #555;
            }

            /* Tablet */
            @media (max-width: 992px) {
                .content-section {
                    padding: 50px 16px;
                }

                .content-section h2 {
                    font-size: 26px;
                }

                .content-section p {
                    font-size: 15px;
                }
            }

            /* Mobile */
            @media (max-width: 576px) {
                .content-section {
                    padding: 40px 14px;
                }

                .content-section h2 {
                    font-size: 22px;
                    text-align: center;
                }

                .content-section p {
                    font-size: 14px;
                    line-height: 1.6;
                    text-align: justify;
                }
            }
       
            .price-section {
                padding: 5px 80px;
                /* background:#0f1a14; */
            }

            .price-container {
                max-width: 1200px;
                margin: auto;
                display: grid;
                grid-template-columns: repeat(4, 1fr);
                gap: 28px;
            }

            .price-card {
                background: linear-gradient(180deg, #1e3326, #132018);
                border-radius: 22px;
                overflow: hidden;
                text-align: center;
                box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
                transition: transform .35s ease, box-shadow .35s ease;
            }

            .price-card:hover {
                transform: translateY(-10px);
                box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
            }

            .card-top {
                background: linear-gradient(135deg, #c6a85d, #8c6b2f);
                padding: 26px 12px 48px;
                clip-path: polygon(0 0, 100% 0, 100% 78%, 0 100%);
            }

            .card-top h4 {
                font-size: 13px;
                letter-spacing: 1.5px;
                color: #2a2a2a;
                margin-bottom: 14px;
                font-weight: 500;
            }

            .card-top p {
                font-size: 20px;
                /* color:#0e2a1c; */
                color: #fff;
                font-weight: 600;
            }

            .card-body {
                padding: 36px 22px 30px;
            }

            .card-body .label {
                font-size: 12px;
                letter-spacing: 1.4px;
                color: #b9c4bc;
                margin-bottom: 6px;
            }

            .card-body h3 {
                font-size: 26px;
                font-weight: 600;
                margin-bottom: 5px;
                color: #f5f7f6;
                font-family: 'Playfair Display', serif;
            }

            .card-body h4 {
                font-size: 18px;
                margin-bottom: 26px;
                color: #e2e7e4;
            }

            .card-body button {
                /* background:linear-gradient(135deg,#ff8a3d,#ff6a00); */
                background: linear-gradient(135deg, #c6a85d, #8c6b2f);
                color: #fff;
                border: none;
                padding: 12px 30px;
                border-radius: 40px;
                font-size: 14px;
                cursor: pointer;
                transition: all .3s ease;
            }

            .card-body button:hover {
                transform: scale(1.05);
                box-shadow: 0 10px 25px rgba(255, 122, 26, 0.45);
            }

            /* Tablet */
            @media(max-width:992px) {
                .price-container {
                    grid-template-columns: repeat(2, 1fr);
                }
            }

            /* Mobile */
            @media(max-width:576px) {
                .price-container {
                    grid-template-columns: 1fr;
                }

                .price-section {
                    padding: 60px 14px;
                }
            }
         
            .testimonials-section {
                padding: 2px 16px;
                background: #f9f9f9;
            }

            .testimonials-section .container {
                max-width: 1100px;
                margin: auto;
            }

            .testimonials-title {
                text-align: center;
                font-size: 32px;
                color: #17402c;
                margin-bottom: 40px;
                font-weight: 600;
            }

            .testimonials-grid {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 24px;
            }

            .testimonial-card {
                background: #fff;
                padding: 28px 24px;
                border-radius: 14px;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            }

            .testimonial-text {
                font-size: 15px;
                line-height: 1.6;
                color: #555;
                margin-bottom: 20px;
            }

            .testimonial-user strong {
                display: block;
                color: #222;
                font-size: 15px;
            }

            .testimonial-user span {
                font-size: 13px;
                color: #777;
            }

            /* Tablet */
            @media(max-width:992px) {
                .testimonials-grid {
                    grid-template-columns: repeat(2, 1fr);
                }
            }

            /* Mobile */
            @media(max-width:576px) {
                .testimonials-grid {
                    grid-template-columns: 1fr;
                }

                .testimonials-title {
                    font-size: 24px;
                }
            }
        