
        :root {
            --primary-color: #512DA8;
            --secondary-color: #9575CD;
            --accent-color: #FFCA28;
            --white-color: #FFFFFF;
            --dark-color: #212529;
            --light-bg: #f8f9fa;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--dark-color);
            overflow-x: hidden;
        }

        /* Navbar Styles */
        .navbar {
            padding: 1rem 0;
            transition: all 0.3s ease;
            background: transparent !important;
        }

        .navbar.scrolled {
            background: var(--white-color) !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .navbar-brand {
            display: flex;
            align-items: center;
            font-weight: bold;
            font-size: 1.5rem;
            color: var(--primary-color) !important;
        }

        .navbar-brand i {
            font-size: 2rem;
            margin-right: 10px;
            color: var(--primary-color);
        }

        .navbar-nav .nav-link {
            color: var(--dark-color) !important;
            font-weight: 500;
            margin: 0 15px;
            transition: color 0.3s ease;
            position: relative;
        }

        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-color);
            transition: width 0.3s ease;
        }

        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }

        .navbar-nav .nav-link:hover {
            color: var(--primary-color) !important;
        }

        .btn-cta {
            background: var(--accent-color);
            color: var(--dark-color);
            padding: 10px 25px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            text-decoration: none;
            display: inline-block;
        }

        .btn-cta:hover {
            background: var(--primary-color);
            color: var(--white-color);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(81, 45, 168, 0.3);
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('https://housing.com/news/wp-content/uploads/2023/09/How-to-reduce-home-renovation-costs-f.jpg') center/cover;
            opacity: 0.2;
            z-index: 0;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            color: var(--white-color);
        }

        .hero-title {
            font-size:6rem;
            font-weight: bold;
            margin-bottom: 20px;
            animation: fadeInUp 1s ease;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 30px;
            opacity: 0.95;
            animation: fadeInUp 1s ease 0.2s;
            animation-fill-mode: both;
        }

        .btn-hero {
            background: var(--accent-color);
            color: var(--dark-color);
            padding: 15px 40px;
            font-size: 1.1rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            text-decoration: none;
            display: inline-block;
            animation: fadeInUp 1s ease 0.4s;
            animation-fill-mode: both;
        }

        .btn-hero:hover {
            background: var(--white-color);
            color: var(--primary-color);
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }

        /* About Section */
        .about-section {
            padding: 80px 0;
            background: var(--light-bg);
        }

        .about-image {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .about-image:hover {
            transform: scale(1.03);
        }

        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--primary-color);
            margin-bottom: 20px;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--accent-color);
        }

        /* Counter Section */
        .counter-section {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            padding: 60px 0;
            color: var(--white-color);
        }

        .counter-item {
            text-align: center;
            padding: 20px;
        }

        .counter-number {
            font-size: 3rem;
            font-weight: bold;
            color: var(--accent-color);
            margin-bottom: 10px;
        }

        .counter-label {
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Vision Mission Section */
        .vision-mission-section {
            padding: 80px 0;
            background: var(--white-color);
        }

        .vm-card {
            background: var(--light-bg);
            padding: 40px;
            border-radius: 15px;
            height: 100%;
            transition: all 0.3s ease;
            border-left: 5px solid var(--primary-color);
        }

        .vm-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(81, 45, 168, 0.2);
        }

        .vm-icon {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        /* Why Choose Us */
        .why-choose-section {
            padding: 80px 0;
            background: var(--light-bg);
        }

        .feature-card {
            background: var(--white-color);
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            transition: all 0.3s ease;
            height: 100%;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(81, 45, 168, 0.2);
        }

        .feature-icon {
            font-size: 3rem;
            color: var(--accent-color);
            margin-bottom: 20px;
        }

        .feature-title {
            font-size: 1.3rem;
            font-weight: bold;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        /* Work Process */
        .process-section {
            padding: 80px 0;
            background: var(--white-color);
        }

        .process-step {
            text-align: center;
            position: relative;
            padding: 30px;
        }

        .process-number {
            width: 60px;
            height: 60px;
            background: var(--primary-color);
            color: var(--white-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            margin: 0 auto 20px;
            position: relative;
            z-index: 2;
        }

        .process-icon {
            font-size: 2.5rem;
            color: var(--accent-color);
            margin-bottom: 15px;
        }

        .process-title {
            font-size: 1.2rem;
            font-weight: bold;
            color: var(--primary-color);
            margin-bottom: 10px;
        }

        /* Services Section */
        .services-section {
            padding: 80px 0;
            background: var(--light-bg);
        }

        .service-card {
            background: var(--white-color);
            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(81, 45, 168, 0.2);
        }

        .service-image {
            height: 200px;
            overflow: hidden;
        }

        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .service-card:hover .service-image img {
            transform: scale(1.1);
        }

        .service-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .service-title {
            font-size: 1.3rem;
            font-weight: bold;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        .service-description {
            color: #666;
            margin-bottom: 20px;
            flex-grow: 1;
        }

        /* Reviews Section */
        .reviews-section {
            padding: 80px 0;
            background: var(--white-color);
        }

        .review-card {
            background: var(--light-bg);
            padding: 30px;
            border-radius: 15px;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }

        .review-card:hover {
            transform: translateX(10px);
            box-shadow: 0 10px 25px rgba(81, 45, 168, 0.1);
        }

        .review-stars {
            color: var(--accent-color);
            margin-bottom: 15px;
        }

        .review-text {
            font-style: italic;
            margin-bottom: 15px;
            color: #555;
        }

        .review-author {
            font-weight: bold;
            color: var(--primary-color);
        }

        .review-location {
            color: #888;
            font-size: 0.9rem;
        }

        /* FAQ Section */
        .faq-section {
            padding: 80px 0;
            background: var(--light-bg);
        }

        .accordion-button {
            background: var(--white-color);
            color: var(--primary-color);
            font-weight: 600;
            border: none;
            padding: 20px;
        }

        .accordion-button:not(.collapsed) {
            background: var(--primary-color);
            color: var(--white-color);
        }

        .accordion-button:focus {
            box-shadow: none;
            border-color: var(--accent-color);
        }

        .accordion-item {
            border: none;
            margin-bottom: 15px;
            border-radius: 10px !important;
            overflow: hidden;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            padding: 80px 0;
            color: var(--white-color);
            text-align: center;
        }

        .cta-title {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 20px;
        }

        .cta-subtitle {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.95;
        }

        /* Contact Section */
        .contact-section {
            padding: 80px 0;
            background: var(--white-color);
        }

        .contact-info {
            background: var(--light-bg);
            padding: 40px;
            border-radius: 15px;
            height: 100%;
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
        }

        .contact-icon {
            font-size: 2rem;
            color: var(--primary-color);
            margin-right: 20px;
            min-width: 40px;
        }

        .contact-form {
            background: var(--light-bg);
            padding: 40px;
            border-radius: 15px;
        }

        .form-control, .form-select {
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            padding: 12px;
            transition: all 0.3s ease;
        }

        .form-control:focus, .form-select:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(81, 45, 168, 0.1);
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: var(--white-color);
            padding: 60px 0 20px;
        }

        .footer-widget h4 {
            color: var(--accent-color);
            margin-bottom: 20px;
            font-size: 1.3rem;
        }

        .footer-widget ul {
            list-style: none;
            padding: 0;
        }

        .footer-widget ul li {
            margin-bottom: 10px;
        }

        .footer-widget ul li a {
            color: var(--white-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-widget ul li a:hover {
            color: var(--accent-color);
            padding-left: 5px;
        }

        .newsletter-form {
            display: flex;
            margin-top: 20px;
        }

        .newsletter-form input {
            flex: 1;
            padding: 10px;
            border: none;
            border-radius: 5px 0 0 5px;
        }

        .newsletter-form button {
            background: var(--accent-color);
            color: var(--dark-color);
            border: none;
            padding: 10px 20px;
            border-radius: 0 5px 5px 0;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .newsletter-form button:hover {
            background: var(--white-color);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.2);
            margin-top: 40px;
            padding-top: 20px;
            text-align: center;
        }

        .footer-bottom a {
            color: var(--accent-color);
            text-decoration: none;
            margin: 0 10px;
            transition: color 0.3s ease;
        }

        .footer-bottom a:hover {
            color: var(--white-color);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .navbar-nav {
                background: var(--white-color);
                padding: 20px;
                border-radius: 10px;
                margin-top: 20px;
            }
        }
