
        :root {
            --primary-dark: #1E1E2F;
            --secondary-dark: #2D2D44;
            --tertiary-dark: #3F3F5A;
            --accent-purple: #6C63FF;
            --white: #FFFFFF;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--white);
            color: var(--primary-dark);
            overflow-x: hidden;
        }
        
        /* Navbar Styles */
        .navbar {
            background: transparent !important;
            padding: 20px 0;
            transition: all 0.3s ease;
            z-index: 1000;
        }
        
        .navbar.scrolled {
            background: rgba(30, 30, 47, 0.95) !important;
            backdrop-filter: blur(10px);
            padding: 15px 0;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-dark) !important;
            display: flex;
            align-items: center;
        }
        
        .navbar.scrolled .navbar-brand {
            color: var(--white) !important;
        }
        
        .navbar-brand i {
            color: var(--accent-purple);
            margin-right: 10px;
            font-size: 1.8rem;
        }
        
        .navbar-nav .nav-link {
            color: var(--primary-dark) !important;
            font-weight: 500;
            margin: 0 15px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar.scrolled .navbar-nav .nav-link {
            color: var(--white) !important;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-purple) !important;
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-purple);
            transition: width 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .btn-cta {
            background: linear-gradient(135deg, var(--accent-purple), #8B85FF);
            color: var(--white) !important;
            padding: 10px 25px;
            border-radius: 50px;
            font-weight: 600;
            border: none;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(108, 99, 255, 0.3);
        }
        
        .btn-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(108, 99, 255, 0.4);
            background: linear-gradient(135deg, #8B85FF, var(--accent-purple));
        }
        
        /* Hero Section */
        .hero-section {
            height: 100vh;
            background: linear-gradient(135deg, rgba(30, 30, 47, 0.8), rgba(108, 99, 255, 0.8)),
                        url('https://static.vecteezy.com/system/resources/thumbnails/030/786/668/small/interior-of-a-new-house-under-construction-remodeling-and-renovatio-generative-ai-photo.jpeg') center/cover;
            display: flex;
            align-items: center;
            position: relative;
        }
        
        .hero-content h1 {
            font-size: 4.5rem;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 20px;
            animation: fadeInUp 1s ease;
        }
        
        .hero-content p {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 30px;
            animation: fadeInUp 1.2s ease;
        }
        
        .btn-hero {
            padding: 15px 40px;
            font-size: 1.1rem;
            animation: fadeInUp 1.4s ease;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Section Styles */
        .section-padding {
            padding: 80px 0;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--accent-purple);
            border-radius: 2px;
        }
        
        /* About Section */
        .about-image {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        
        .about-image:hover {
            transform: scale(1.05);
        }
        
        .about-content {
            padding: 20px;
        }
        
        .about-content p {
            line-height: 1.8;
            color: var(--tertiary-dark);
            margin-bottom: 20px;
        }
        
        /* Counter Section */
        .counter-section {
            background: linear-gradient(135deg, var(--secondary-dark), var(--tertiary-dark));
            color: var(--white);
        }
        
        .counter-box {
            text-align: center;
            padding: 30px;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }
        
        .counter-box:hover {
            transform: translateY(-10px);
            background: rgba(108, 99, 255, 0.2);
        }
        
        .counter-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--accent-purple);
            margin-bottom: 10px;
        }
        
        .counter-label {
            font-size: 1.1rem;
            font-weight: 500;
        }
        
        /* Vision & Mission */
        .vision-mission-box {
            background: var(--white);
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            height: 100%;
            transition: all 0.3s ease;
        }
        
        .vision-mission-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        
        .vision-mission-icon {
            font-size: 3rem;
            color: var(--accent-purple);
            margin-bottom: 20px;
        }
        
        /* Why Choose Us */
        .feature-box {
            background: var(--white);
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            margin-bottom: 30px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }
        
        .feature-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(108, 99, 255, 0.2);
        }
        
        .feature-icon {
            font-size: 2.5rem;
            color: var(--accent-purple);
            margin-bottom: 20px;
        }
        
        .feature-box h4 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--primary-dark);
        }
        
        .feature-box p {
            color: var(--tertiary-dark);
            line-height: 1.6;
        }
        
        /* Booking Form */
        .booking-form {
            background: var(--white);
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .form-control, .form-select {
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            padding: 12px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--accent-purple);
            box-shadow: 0 0 0 0.2rem rgba(108, 99, 255, 0.25);
        }
        
        /* Services Section */
        .service-card {
            background: #f8f9fa;
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        
        .service-card img {
            width: 100%;
            height: 350px;
            object-fit: cover;
        }
        
        .service-card-body {
            padding: 30px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .service-card-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 15px;
        }
        
        .service-card p {
            color: var(--tertiary-dark);
            line-height: 1.8;
            flex-grow: 1;
            margin-bottom: 20px;
        }
        
        /* Reviews Section */
        .review-card {
            background: var(--white);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            height: 100%;
            transition: all 0.3s ease;
        }
        
        .review-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        
        .review-stars {
            color: #ffc107;
            margin-bottom: 15px;
            font-size: 1.2rem;
        }
        
        .review-card p {
            color: var(--tertiary-dark);
            line-height: 1.8;
            margin-bottom: 20px;
            font-style: italic;
        }
        
        .reviewer-info {
            display: flex;
            align-items: center;
        }
        
        .reviewer-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
            object-fit: cover;
        }
        
        /* FAQ Section */
        .accordion-button {
            background: var(--white);
            color: var(--primary-dark);
            font-weight: 600;
            border: none;
            padding: 20px;
        }
        
        .accordion-button:not(.collapsed) {
            background: var(--accent-purple);
            color: var(--white);
        }
        
        .accordion-button:focus {
            box-shadow: none;
            border: none;
        }
        
        .accordion-item {
            border: none;
            margin-bottom: 15px;
            border-radius: 10px !important;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--secondary-dark), var(--tertiary-dark));
            padding: 80px 0;
            text-align: center;
        }
        
        .cta-section h2 {
            color: var(--white);
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .cta-section p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.2rem;
            margin-bottom: 30px;
        }
        
        /* Contact Section */
        .contact-info-box {
            background: var(--white);
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            height: 100%;
            transition: all 0.3s ease;
        }
        
        .contact-info-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        
        .contact-icon {
            font-size: 3rem;
            color: var(--accent-purple);
            margin-bottom: 20px;
        }
        
        /* Footer */
        footer {
            background: var(--primary-dark);
            color: var(--white);
            padding: 60px 0 20px;
        }
        
        .footer-widget h5 {
            color: var(--accent-purple);
            font-weight: 600;
            margin-bottom: 20px;
        }
        
        .footer-widget ul {
            list-style: none;
            padding: 0;
        }
        
        .footer-widget ul li {
            margin-bottom: 10px;
        }
        
        .footer-widget ul li a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-widget ul li a:hover {
            color: var(--accent-purple);
            padding-left: 5px;
        }
        
        .newsletter-form .form-control {
            background: var(--secondary-dark);
            border: 2px solid var(--tertiary-dark);
            color: var(--white);
        }
        
        .newsletter-form .form-control::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }
        
        .newsletter-form .btn {
            background: var(--accent-purple);
            border: none;
            color: var(--white);
            padding: 10px 20px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .newsletter-form .btn:hover {
            background: #8B85FF;
        }
        
        .copyright {
            border-top: 1px solid var(--tertiary-dark);
            margin-top: 40px;
            padding-top: 20px;
            text-align: center;
            color: rgba(255, 255, 255, 0.6);
        }
        
        .copyright a {
            color: var(--accent-purple);
            text-decoration: none;
            margin: 0 10px;
            transition: all 0.3s ease;
        }
        
        .copyright a:hover {
            color: #8B85FF;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .counter-number {
                font-size: 2rem;
            }
        }
