
        :root {
            --primary-color: #7161ef;
            --secondary-color: #957fef;
            --tertiary-color: #b79ced;
            --light-color: #dec0f1;
            --accent-color: #efd9ce;
            --dark-color: #333;
            --light-bg: #f8f9fa;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--dark-color);
        }

        /* --- Navbar Styles --- */
        .navbar {
            padding: 1.5rem 0;
            transition: all 0.3s ease;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color) !important;
        }
        .navbar-nav .nav-link {
            color: var(--dark-color) !important;
            font-weight: 500;
            margin: 0 0.75rem;
            transition: color 0.3s ease;
        }
        .navbar-nav .nav-link:hover {
            color: var(--primary-color) !important;
        }
        .cta-btn-navbar {
            background-color: var(--primary-color);
            color: white !important;
            padding: 0.5rem 1.5rem !important;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .cta-btn-navbar:hover {
            background-color: var(--secondary-color);
            color: white !important;
            transform: translateY(-2px);
        }

        /* --- Hero Section Styles --- */
        .hero-section {
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://img.freepik.com/premium-photo/people-renovating-house-concept_1155405-19959.jpg?semt=ais_hybrid&w=740&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 12rem 0;
            text-align: center;
        }
        .hero-section h1 {
            font-weight: 700;
            font-size: 5rem;
            margin-bottom: 1rem;
        }
        .hero-section p {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        .cta-btn-hero {
            background-color: var(--primary-color);
            color: white;
            padding: 0.75rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            display: inline-block;
        }
        .cta-btn-hero:hover {
            background-color: var(--secondary-color);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }

        /* --- Section Styles --- */
        .section-padding {
            padding: 5rem 0;
        }
        .section-title {
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        .section-subtitle {
            color: var(--secondary-color);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 3rem;
        }
        .read-more-btn {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
        }
        .read-more-btn:hover {
            color: var(--secondary-color);
        }

        /* --- About Section Styles --- */
        .about-img {
            border-radius: 10px;
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }

        /* --- Counter Styles --- */
        .counter-box {
            text-align: center;
            padding: 2rem;
            border-radius: 10px;
            background-color: var(--light-bg);
        }
        .counter-box i {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        .counter {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
        }
        .counter-text {
            font-weight: 500;
            color: #666;
        }

        /* --- Why Choose Us Styles --- */
        .feature-box {
            text-align: center;
            padding: 2rem;
            transition: transform 0.3s ease;
        }
        .feature-box:hover {
            transform: translateY(-10px);
        }
        .feature-box i {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
        }
        .feature-box h5 {
            font-weight: 600;
            margin-bottom: 1rem;
        }

        /* --- Services Styles --- */
        .service-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        .service-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        .service-card-body {
            padding: 1.5rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        .service-card-body h5 {
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        .service-card-body p {
            flex-grow: 1;
            color: #666;
        }
        .service-card-body .read-more-btn {
            align-self: flex-start;
            margin-top: 1rem;
        }

        /* --- Reviews Styles --- */
        .review-card {
            background-color: var(--light-bg);
            padding: 2rem;
            border-radius: 10px;
            margin-bottom: 1.5rem;
            border-left: 4px solid var(--primary-color);
        }
        .review-card .stars {
            color: #ffc107;
            margin-bottom: 1rem;
        }
        .review-card p {
            font-style: italic;
            margin-bottom: 1rem;
        }
        .review-card h6 {
            font-weight: 600;
            color: var(--primary-color);
        }

        /* --- FAQ Styles --- */
        .accordion-button:not(.collapsed) {
            background-color: var(--light-color);
            color: var(--primary-color);
            font-weight: 600;
        }
        .accordion-button:focus {
            box-shadow: none;
            border-color: var(--primary-color);
        }

        /* --- CTA Section Styles --- */
        .cta-section {
            background-color: var(--primary-color);
            color: white;
            padding: 5rem 0;
            text-align: center;
        }
        .cta-section h2 {
            font-weight: 700;
            margin-bottom: 1rem;
        }
        .cta-section .cta-btn-hero {
            background-color: white;
            color: var(--primary-color);
        }
        .cta-section .cta-btn-hero:hover {
            background-color: var(--accent-color);
            color: var(--primary-color);
        }

        /* --- Contact Section Styles --- */
        .contact-info-box {
            background-color: var(--light-bg);
            padding: 2rem;
            border-radius: 10px;
            margin-bottom: 1.5rem;
        }
        .contact-info-box i {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-right: 1rem;
        }
        .contact-form .form-control {
            border-radius: 0;
            border: 1px solid #ddd;
            padding: 0.75rem;
        }
        .contact-form .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(113, 97, 239, 0.25);
        }
        .contact-form .btn-submit {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 0.75rem 2rem;
            border-radius: 0;
            font-weight: 600;
            transition: background-color 0.3s ease;
        }
        .contact-form .btn-submit:hover {
            background-color: var(--secondary-color);
        }

        /* --- Footer Styles --- */
        footer {
            background-color: #2c2c2c;
            color: #ccc;
            padding: 4rem 0 2rem 0;
        }
        footer h5 {
            color: white;
            font-weight: 600;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.5rem;
        }
        footer h5::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 2px;
            background-color: var(--primary-color);
        }
        footer ul {
            list-style: none;
            padding: 0;
        }
        footer ul li {
            margin-bottom: 0.75rem;
        }
        footer ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        footer ul li a:hover {
            color: var(--primary-color);
        }
        .footer-cta .btn {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
        }
        .footer-cta .btn:hover {
            background-color: var(--secondary-color);
        }
        .copyright {
            border-top: 1px solid #444;
            margin-top: 3rem;
            padding-top: 2rem;
            text-align: center;
            color: #999;
        }
        .copyright a {
            color: var(--primary-color);
            text-decoration: none;
        }
        .copyright a:hover {
            text-decoration: underline;
        }
