
        :root {
            --primary-color: #4A148C;
            --secondary-color: #D1C4E9;
            --light-color: #FFFFFF;
            --text-dark: #212529;
            --text-light: #6c757d;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
        }
        
        /* Navbar Styles */
        .navbar {
            background: transparent !important;
            padding: 20px 0;
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--primary-color) !important;
        }
        
        .navbar-brand i {
            margin-right: 10px;
        }
        
        .navbar-nav .nav-link {
            color: var(--text-dark) !important;
            font-weight: 500;
            margin: 0 15px;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color) !important;
        }
        
        .btn-cta {
            background: var(--primary-color);
            color: var(--light-color);
            padding: 10px 25px;
            border-radius: 50px;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            border: none;
            font-weight: 500;
        }
        
        .btn-cta:hover {
            background: #6A1B9A;
            color: var(--light-color);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(74, 20, 140, 0.3);
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, rgba(74, 20, 140, 0.9), rgba(209, 196, 233, 0.9)),
                        url('https://media.istockphoto.com/id/1316339846/photo/home-improvement-remodeled-contemporary-kitchen-design-in-residential-home.jpg?s=612x612&w=0&k=20&c=d4RvFesqi5EFLVw19X-xNcNf-ArNw9t_7y-_AJNoiQk=');
            background-size: cover;
            background-position: center;
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
        }
        
        .hero-content h1 {
            font-size:5rem;
            font-weight: bold;
            color: var(--light-color);
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .hero-content p {
            font-size: 1.25rem;
            color: var(--light-color);
            margin-bottom: 30px;
            opacity: 0.95;
        }
        
        /* Section Styles */
        .section-padding {
            padding: 80px 0;
        }
        
        .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: 60px;
            height: 3px;
            background: var(--primary-color);
        }
        
        /* About Section */
        .about-img {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .about-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .about-img:hover img {
            transform: scale(1.05);
        }
        
        /* Counter Section */
        .counter-section {
            background: var(--secondary-color);
            padding: 60px 0;
        }
        
        .counter-box {
            text-align: center;
        }
        
        .counter-box i {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        .counter-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--primary-color);
        }
        
        .counter-label {
            font-size: 1.1rem;
            color: var(--text-dark);
            font-weight: 500;
        }
        
        /* Why Choose Us */
        .feature-box {
            text-align: center;
            padding: 30px 20px;
            border-radius: 10px;
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .feature-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(74, 20, 140, 0.2);
        }
        
        .feature-box i {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .feature-box h4 {
            font-size: 1.25rem;
            font-weight: bold;
            margin-bottom: 15px;
            color: var(--primary-color);
        }
        
        /* Services Section */
        .service-card {
            background: var(--light-color);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(74, 20, 140, 0.3);
        }
        
        .service-card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }
        
        .service-card-body {
            padding: 25px;
        }
        
        .service-card-body h3 {
            font-weight: bold;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        /* Reviews Section */
        .review-card {
            background: var(--light-color);
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }
        
        .review-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(74, 20, 140, 0.2);
        }
        
        .stars {
            color: #ffc107;
            margin-bottom: 10px;
        }
        
        .reviewer-info {
            display: flex;
            align-items: center;
            margin-top: 15px;
        }
        
        .reviewer-img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
            object-fit: cover;
        }
        
        /* FAQ Section */
        .accordion-button {
            background: var(--secondary-color);
            color: var(--primary-color);
            font-weight: 500;
        }
        
        .accordion-button:not(.collapsed) {
            background: var(--primary-color);
            color: var(--light-color);
        }
        
        .accordion-button:focus {
            box-shadow: none;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-color), #6A1B9A);
            padding: 80px 0;
            text-align: center;
        }
        
        .cta-section h2 {
            color: var(--light-color);
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .cta-section p {
            color: var(--light-color);
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        /* Contact Section */
        .contact-info {
            background: var(--secondary-color);
            padding: 30px;
            border-radius: 10px;
            margin-bottom: 30px;
        }
        
        .contact-info i {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-right: 15px;
        }
        
        /* Footer */
        footer {
            background: var(--primary-color);
            color: var(--light-color);
            padding: 60px 0 20px;
        }
        
        footer h5 {
            color: var(--light-color);
            margin-bottom: 20px;
            font-weight: bold;
        }
        
        footer ul {
            list-style: none;
            padding: 0;
        }
        
        footer ul li {
            margin-bottom: 10px;
        }
        
        footer ul li a {
            color: var(--light-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        footer ul li a:hover {
            color: var(--secondary-color);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 40px;
            padding-top: 20px;
            text-align: center;
        }
        
        .footer-bottom a {
            color: var(--light-color);
            text-decoration: none;
            margin: 0 10px;
        }
        
        .footer-bottom a:hover {
            color: var(--secondary-color);
        }
        
        /* Work Process */
        .process-step {
            text-align: center;
            padding: 30px;
            position: relative;
        }
        
        .process-step::after {
            content: '';
            position: absolute;
            top: 50%;
            right: -15px;
            width: 30px;
            height: 2px;
            background: var(--secondary-color);
            transform: translateY(-50%);
        }
        
        .process-step:last-child::after {
            display: none;
        }
        
        .process-icon {
            width: 80px;
            height: 80px;
            background: var(--secondary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            transition: all 0.3s ease;
        }
        
        .process-step:hover .process-icon {
            background: var(--primary-color);
            transform: scale(1.1);
        }
        
        .process-icon i {
            font-size: 2rem;
            color: var(--primary-color);
        }
        
        .process-step:hover .process-icon i {
            color: var(--light-color);
        }
        
        /* Vision Mission */
        .vision-mission-box {
            background: var(--secondary-color);
            padding: 40px;
            border-radius: 10px;
            height: 100%;
            transition: all 0.3s ease;
        }
        
        .vision-mission-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(74, 20, 140, 0.2);
        }
        
        .vision-mission-box h3 {
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .process-step::after {
                display: none;
            }
        }
