
        :root {
            --primary-color: #8D6E63;
            --secondary-color: #D7CCC8;
            --light-color: #FFFFFF;
            --dark-color: #3E2723;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--dark-color);
            line-height: 1.6;
        }

        /* Navbar Styles */
        .navbar {
            background: transparent !important;
            padding: 20px 0;
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            background: var(--light-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;
        }

        .nav-link {
            color: var(--dark-color) !important;
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s ease;
        }

        .nav-item{
            margin-left:35px;
        }

        .nav-link:hover {
            color: var(--primary-color) !important;
        }

        .cta-btn {
            background: black;
            color: var(--light-color) !important;
            padding: 10px 25px;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .cta-btn:hover {
            background: var(--dark-color);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            color: var(--light-color) !important;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(141, 110, 99, 0.8), rgba(141, 110, 99, 0.8)), 
                        url('https://images.pexels.com/photos/1571460/pexels-photo-1571460.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1') center/cover;
            min-height: 100vh;
            display: flex;
            align-items: center;
            color: var(--light-color);
            position: relative;
        }

        .hero-content h1 {
            font-size:5.5rem;
            font-weight: bold;
            margin-bottom: 20px;
            animation: fadeInUp 1s ease;
        }

        .hero-content p {
            font-size: 1.3rem;
            margin-bottom: 30px;
            animation: fadeInUp 1s ease 0.2s;
            animation-fill-mode: both;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* About Section */
        .about-section {
            padding: 80px 0;
            background: var(--light-color);
        }

        .about-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Counter Section */
        .counter-section {
            background: var(--primary-color);
            color: var(--light-color);
            padding: 60px 0;
        }

        .counter-box {
            text-align: center;
        }

        .counter-box i {
            font-size: 3rem;
            margin-bottom: 15px;
            color: var(--secondary-color);
        }

        .counter {
            font-size: 2.5rem;
            font-weight: bold;
        }

        /* Vision Mission */
        .vision-mission {
            padding: 80px 0;
            background: var(--secondary-color);
        }

        .vm-box {
            background: var(--light-color);
            padding: 30px;
            border-radius: 10px;
            height: 100%;
            transition: transform 0.3s ease;
        }

        .vm-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        /* Why Choose Us */
        .why-choose {
            padding: 80px 0;
            background: var(--light-color);
        }

        .feature-box {
            text-align: center;
            padding: 30px 20px;
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .feature-box:hover {
            background: var(--secondary-color);
            transform: translateY(-5px);
        }

        .feature-box i {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        /* Work Process */
        .process-section {
            padding: 80px 0;
            background: var(--secondary-color);
        }

        .process-step {
            text-align: center;
            position: relative;
            padding: 20px;
        }

        .process-step::after {
            content: '';
            position: absolute;
            top: 50px;
            right: -50%;
            width: 100%;
            height: 2px;
            background: var(--primary-color);
            z-index: -1;
        }

        .process-step:last-child::after {
            display: none;
        }

        .process-icon {
            width: 80px;
            height: 80px;
            background: var(--primary-color);
            color: var(--light-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2rem;
        }

        /* Services Section */
        .services-section {
            padding: 80px 0;
            background: var(--light-color);
        }

        .service-card {
            background: var(--secondary-color);
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        .service-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .service-card-body {
            padding: 20px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .service-card-body h5 {
            color: var(--primary-color);
            font-weight: bold;
            margin-bottom: 15px;
        }

        .service-card-body p {
            flex-grow: 1;
            margin-bottom: 20px;
        }

        /* Reviews Section */
        .reviews-section {
            padding: 80px 0;
            background: var(--secondary-color);
        }

        .review-card {
            background: var(--light-color);
            padding: 30px;
            border-radius: 10px;
            margin-bottom: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .review-stars {
            color: #FFD700;
            margin-bottom: 15px;
        }

        .review-author {
            font-weight: bold;
            color: var(--primary-color);
            margin-top: 15px;
        }

        /* FAQ Section */
        .faq-section {
            padding: 80px 0;
            background: var(--light-color);
        }

        .accordion-button {
            background: var(--secondary-color);
            color: var(--dark-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), var(--dark-color));
            color: var(--light-color);
            padding: 80px 0;
            text-align: center;
        }

        /* Contact Section */
        .contact-section {
            padding: 80px 0;
        }

        .contact-info-box {
            background: var(--light-color);
            padding: 30px;
            border-radius: 10px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
        }

        .contact-info-box i {
            font-size: 2rem;
            color: var(--primary-color);
            margin-right: 20px;
        }

        /* Footer */
        footer {
            background: var(--dark-color);
            color: var(--light-color);
            padding: 50px 0 20px;
        }

        .footer-links a {
            color: var(--light-color);
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--secondary-color);
        }

        .newsletter-form {
            display: flex;
            gap: 10px;
        }

        .newsletter-form input {
            flex: 1;
            padding: 10px;
            border: none;
            border-radius: 5px;
        }

        .newsletter-form button {
            background: var(--primary-color);
            color: var(--light-color);
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .newsletter-form button:hover {
            background: var(--secondary-color);
        }

        .copyright {
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 30px;
            padding-top: 20px;
            text-align: center;
        }

        .copyright a {
            color: var(--secondary-color);
            text-decoration: none;
            margin: 0 10px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .process-step::after {
                display: none;
            }
        }
