 /* <style> */
        :root {
            --primary: #1a1a1a;
            --secondary: #c8a97e;
            --accent: #8b7355;
            --light: #f5f3f0;
            --dark: #1a1a1a;
            --gray: #6c757d;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            color: var(--dark);
            line-height: 1.7;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
        }
        
        .section-title {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--primary);
        }
        
        .section-subtitle {
            font-size: 1.2rem;
            color: var(--gray);
            margin-bottom: 2.5rem;
            font-family: 'Inter', sans-serif;
        }
        
        /* Luxury Header */
        .luxury-header {
            background-color: rgba(26, 26, 26, 0.9);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1030;
            padding: 20px 0;
            transition: all 0.4s ease;
        }
        
        .luxury-header.scrolled {
            background-color: var(--primary);
            padding: 15px 0;
        }
        
        .luxury-navbar .nav-link {
            font-family: 'Inter', sans-serif;
            font-weight: 500;
            color: white !important;
            margin: 0 12px;
            padding: 8px 0 !important;
            position: relative;
            transition: all 0.3s ease;
        }
        
         /* .luxury-navbar .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--secondary);
            transition: width 0.3s ease;
        }  */
        
         /* .luxury-navbar .nav-link:hover::after,
        .luxury-navbar .nav-link.active::after {
            width: 100%;
        }  */
        
        .btn-luxury-primary {
            background-color: var(--secondary);
            color: var(--primary);
            border: none;
            font-weight: 600;
            padding: 12px 30px;
            border-radius: 0;
            font-family: 'Inter', sans-serif;
            transition: all 0.3s ease;
            letter-spacing: 0.5px;
        }
        
        .btn-luxury-primary:hover {
            background-color: #b8945f;
            transform: translateY(-2px);
        }
        
        /* Hero Slider */
        .luxury-hero-slider {
            height: 100vh;
            position: relative;
            overflow: hidden;
        }
        
        .hero-slide {
            height: 100vh;
            background-size: cover;
            background-position: center;
            position: relative;
            display: flex;
            align-items: center;
        }
        
        .hero-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to right, rgba(26, 26, 26, 0.8), rgba(26, 26, 26, 0.5));
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            color: white;
            max-width: 800px;
        }
        
        .hero-content h1 {
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.1;
        }
        
        .hero-content p {
            font-size: 1.3rem;
            margin-bottom: 2.5rem;
            max-width: 600px;
            opacity: 0.9;
        }
        
        .hero-divider {
            width: 80px;
            height: 3px;
            background-color: var(--secondary);
            margin: 2rem 0;
        }
        
        .hero-features {
            display: flex;
            gap: 3rem;
            margin-bottom: 2rem;
        }
        
        .hero-feature {
            display: flex;
            flex-direction: column;
        }
        
        .feature-label {
            font-size: 0.9rem;
            opacity: 0.7;
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .feature-value {
            font-size: 1.8rem;
            font-weight: 600;
            font-family: 'Playfair Display', serif;
        }
        
        /* Slider Controls */
        .slider-controls {
            position: absolute;
            bottom: 50px;
            left: 0;
            right: 0;
            z-index: 10;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .slider-dots {
            display: flex;
            gap: 10px;
        }
        
        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .slider-dot.active {
            background-color: var(--secondary);
            transform: scale(1.2);
        }
        
        .slider-arrows {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            transform: translateY(-50%);
            display: flex;
            justify-content: space-between;
            padding: 0 30px;
            z-index: 10;
        }
        
        .slider-arrow {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .slider-arrow:hover {
            background-color: var(--secondary);
            color: var(--primary);
        }
        
        /* Luxury Form */
        .luxury-form {
            background: rgba(255, 255, 255, 0.95);
            padding: 40px;
            border-left: 4px solid var(--secondary);
        }
        
        .form-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            margin-bottom: 10px;
            color: var(--primary);
        }
        
        .form-subtitle {
            color: var(--gray);
            margin-bottom: 30px;
        }
        
        .luxury-form .form-control {
            background: transparent;
            border: none;
            border-bottom: 1px solid #ddd;
            border-radius: 0;
            padding: 12px 0;
            margin-bottom: 25px;
        }
        
        .luxury-form .form-control:focus {
            border-bottom-color: var(--secondary);
            box-shadow: none;
        }
        
        /* Phone Input with Country Code */
        .phone-input-group {
            display: flex;
            margin-bottom: 25px;
        }
        
        .country-code-select {
            flex: 0 0 120px;
            margin-right: 15px;
            position: relative;
        }
        
        .country-code-select select {
            width: 100%;
            background: transparent;
            border: none;
            border-bottom: 1px solid #ddd;
            border-radius: 0;
            padding: 12px 0;
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
            cursor: pointer;
        }
        
        .country-code-select::after {
            content: '\f078';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            pointer-events: none;
            color: var(--gray);
        }
        
        .phone-number-input {
            flex: 1;
        }
        
        .phone-number-input input {
            width: 100%;
            background: transparent;
            border: none;
            border-bottom: 1px solid #ddd;
            border-radius: 0;
            padding: 12px 0;
        }
        
        /* Section Styling */
        .luxury-section {
            padding: 120px 0;
        }
        
        .luxury-section-light {
            background-color: var(--light);
        }
        
        /* About Section */
        .about-content {
            padding-right: 40px;
        }
        
        .about-badge {
            display: inline-block;
            background-color: var(--secondary);
            color: var(--primary);
            padding: 8px 20px;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 1px;
            margin-bottom: 20px;
            text-transform: uppercase;
        }
        
        /* Investment Stats */
        .investment-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin: 40px 0;
        }
        
        .stat-box {
            text-align: center;
            padding: 30px 20px;
            border: 1px solid rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        
        .stat-box:hover {
            border-color: var(--secondary);
            transform: translateY(-5px);
        }
        
        .stat-value {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 10px;
            font-family: 'Playfair Display', serif;
        }
        
        .stat-title {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .stat-desc {
            font-size: 0.8rem;
            color: var(--gray);
        }
        
        /* Why Invest Section */
        .benefit-card {
            text-align: center;
            padding: 40px 20px;
            border: 1px solid rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .benefit-card:hover {
            border-color: var(--secondary);
            transform: translateY(-5px);
        }
        
        .benefit-icon {
            width: 80px;
            height: 80px;
            background: rgba(200, 169, 126, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: var(--secondary);
            font-size: 2rem;
        }
        
        .benefit-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        /* FAQ Section */
        .faq-item {
            margin-bottom: 20px;
            border: 1px solid rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        
        .faq-item:hover {
            border-color: var(--secondary);
        }
        
        .faq-question {
            padding: 20px;
            background: white;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .faq-item.active .faq-answer {
            padding: 0 20px 20px;
            max-height: 500px;
        }
        
        .faq-item.active .faq-toggle i {
            transform: rotate(180deg);
        }
        
        .faq-toggle {
            transition: all 0.3s ease;
        }
        
        /* Footer */
        .luxury-footer {
            background: var(--primary);
            color: white;
            padding: 100px 0 40px;
        }
        
        .footer-logo {
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            margin-bottom: 20px;
        }
        
        .footer-divider {
            width: 60px;
            height: 2px;
            background-color: var(--secondary);
            margin: 20px 0;
        }
        
        .footer-contact li {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        
        .footer-contact i {
            margin-right: 15px;
            color: var(--secondary);
        }

/* ------------------------ projedns */

/* Projects Section Styles */
.project-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.project-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-content {
    padding: 25px;
}

.project-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.project-location {
    color: #7a7a7a;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.project-description {
    color: #5a5a5a;
    margin-bottom: 20px;
    line-height: 1.6;
}

.project-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.feature {
    background: #f8f9fa;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #5a5a5a;
}

.project-link {
    color: #c19f63;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.project-link:hover {
    color: #a8854a;
}
 /* Remove focus-visible borders globally */
        *:focus-visible {
            outline: none !important;
            box-shadow: none !important;
        }



        /* ------- socialmedia start------------------- */


        .socialmedia ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 15px;
    margin-left: 10px;
    margin-bottom: 30px;
}

.socialmedia li {
    display: inline-block;
}

.socialmedia a {
    display: inline-block;
    font-size: 20px;
    color: #c08e10;
    transition: color 0.3s ease;
}

.socialmedia a:hover {
    /* color: #007bff;  */
      color: #ffffffff; 
}

/* ------- socialmedia end ------------------- */




        
        /* Responsive */
        @media (max-width: 991.98px) {
            .hero-content h1 {
                font-size: 3rem;
            }
            
            .about-content {
                padding-right: 0;
                margin-bottom: 50px;
            }
            
            .investment-stats {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 767.98px) {
            .luxury-hero-slider {
                height: 80vh;
            }
            
            .hero-slide {
                height: 80vh;
            }
            
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .hero-features {
                flex-direction: column;
                gap: 1.5rem;
            }
            
            .luxury-section {
                padding: 80px 0;
            }
            
            .phone-input-group {
                flex-direction: column;
            }
            
            .country-code-select {
                flex: 0 0 auto;
                margin-right: 0;
                margin-bottom: 15px;
            }
        }




    /* </style> */