
        :root {
            --violet-color: #7c3aed;
            --mint-green-color: #10b981;
            --light-gray-color: #f3f4f6;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
        }

        .nav-item{
            margin-left:25px !important;
        }
        
        /* Navbar */
        .navbar {
            padding: 1rem 0;
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-weight: bold;
            font-size: 1.5rem;
            color: var(--violet-color);
        }
        
        .navbar-brand i {
            color: var(--mint-green-color);
            margin-right: 8px;
        }
        
        .navbar-nav .nav-link {
            color: #333;
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--violet-color);
        }
        
        .btn-cta {
            background: linear-gradient(45deg, var(--violet-color), var(--mint-green-color));
            color: white;
            border: none;
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 500;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .btn-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            color: white;
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(rgba(124, 58, 237, 0.8), rgba(16, 185, 129, 0.8)), url('https://cdn.prod.website-files.com/6308f7e222faa243bc6bcad9/66f44238dc593380f1d1d786_66f4415affd9d2b041515d28_Kitchen%2520renovation%2520happeing%2520in%2520the%2520house.jpeg');
            background-size: cover;
            background-position: center;
            padding: 150px 0;
            color: white;
            text-align: center;
        }
        
        .hero-section h1 {
            font-size:6rem;
            font-weight: bold;
            margin-bottom: 20px;
        }
        
        .hero-section p {
            font-size: 1.3rem;
            max-width: 700px;
            margin: 0 auto 30px;
        }
        
        /* About Section */
        .about-section {
            padding: 80px 0;
        }
        
        .about-img {
            border-radius: 10px;
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        /* Counter Section */
        .counter-section {
            background: var(--light-gray-color);
            padding: 80px 0;
        }
        
        .counter-box {
            text-align: center;
            padding: 20px;
        }
        
        .counter-box i {
            font-size: 2.5rem;
            color: var(--violet-color);
            margin-bottom: 15px;
        }
        
        .counter {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--mint-green-color);
        }
        
        /* Vision Mission Section */
        .vision-mission-section {
            padding: 80px 0;
        }
        
        .vision-box, .mission-box {
            padding: 30px;
            border-radius: 10px;
            margin-bottom: 30px;
            height: 100%;
        }
        
        .vision-box {
            background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(124, 58, 237, 0.2));
        }
        
        .mission-box {
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.2));
        }
        
        .vision-box h3, .mission-box h3 {
            font-weight: bold;
            margin-bottom: 20px;
            color: var(--violet-color);
        }
        
        /* Why Choose Us */
        .why-choose-section {
            padding: 80px 0;
            background: var(--light-gray-color);
        }
        
        .feature-box {
            text-align: center;
            padding: 30px 20px;
            background: white;
            border-radius: 10px;
            margin-bottom: 30px;
            height: 100%;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .feature-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .feature-box i {
            font-size: 3rem;
            color: var(--violet-color);
            margin-bottom: 20px;
        }
        
        /* Work Process */
        .process-section {
            padding: 80px 0;
        }
        
        .process-step {
            text-align: center;
            margin-bottom: 40px;
            position: relative;
        }
        
        .process-step:not(:last-child):after {
            content: '';
            position: absolute;
            top: 40px;
            right: -50%;
            width: 100%;
            height: 2px;
            background: var(--light-gray-color);
            z-index: -1;
        }
        
        .process-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--violet-color), var(--mint-green-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 2rem;
        }
        
        /* Services Section */
        .services-section {
            padding: 80px 0;
       }
        
        .service-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 30px;
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .service-card img {
            height: 200px;
            width: 100%;
            object-fit: cover;
        }
        
        .service-card-body {
            padding: 25px;
        }
        
        .service-card h5 {
            font-weight: bold;
            margin-bottom: 15px;
            color: var(--violet-color);
        }
        
        /* Reviews Section */
        .reviews-section {
            padding: 80px 0;
        }
        
        .review-card {
            background: white;
            border-radius: 10px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            height: 100%;
        }
        
        .review-card .stars {
            color: #ffc107;
            margin-bottom: 15px;
        }
        
        .review-card .review-text {
            font-style: italic;
            margin-bottom: 20px;
        }
        
        .review-card .reviewer {
            display: flex;
            align-items: center;
        }
        
        .review-card .reviewer img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
        }
        
        /* FAQ Section */
        .faq-section {
            padding: 80px 0;
            background: var(--light-gray-color);
        }
        
        .accordion-button:not(.collapsed) {
            background-color: var(--violet-color);
            color: white;
        }
        
        .accordion-button:focus {
            box-shadow: none;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(45deg, var(--violet-color), var(--mint-green-color));
            padding: 80px 0;
            text-align: center;
            color: white;
        }
        
        /* Contact Section */
        .contact-section {
            padding: 80px 0;
        }
        
        .contact-info {
            margin-bottom: 30px;
        }
        
        .contact-info i {
            font-size: 1.5rem;
            color: var(--violet-color);
            margin-right: 15px;
        }
        
        /* Footer */
        footer {
            background: #222;
            color: white;
            padding: 60px 0 20px;
        }
        
        .footer-widget h5 {
            color: white;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-widget h5:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: var(--mint-green-color);
        }
        
        .footer-widget ul {
            list-style: none;
            padding: 0;
        }
        
        .footer-widget ul li {
            margin-bottom: 10px;
        }
        
        .footer-widget ul li a {
            color: #bbb;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-widget ul li a:hover {
            color: var(--mint-green-color);
        }
        
        .newsletter-form {
            position: relative;
        }
        
        .newsletter-form input {
            background: #333;
            border: none;
            color: white;
            padding: 12px;
            border-radius: 5px;
            width: 100%;
        }
        
        .newsletter-form button {
            position: absolute;
            right: 5px;
            top: 50%;
            transform: translateY(-50%);
            background: var(--mint-green-color);
            border: none;
            color: white;
            padding: 8px 15px;
            border-radius: 5px;
        }
        
        .copyright {
            border-top: 1px solid #444;
            padding-top: 20px;
            margin-top: 40px;
            text-align: center;
            color: #bbb;
        }
        
        .copyright a {
            color: var(--mint-green-color);
            text-decoration: none;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.5rem;
            }
            
            .process-step:not(:last-child):after {
                display: none;
            }
        }
