
        :root {
            --primary-color: #5D4037;
            --secondary-color: #8D6E63;
            --tertiary-color: #A1887F;
            --light-color: #D7CCC8;
            --lighter-color: #EFEBE9;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
        }
        
        /* Top Contact Bar */
        .top-contact {
            background-color: var(--primary-color);
            color: white;
            padding: 8px 0;
            font-size: 14px;
        }
        
        .top-contact a {
            color: white;
            text-decoration: none;
            margin-right: 20px;
            transition: all 0.3s;
        }
        
        .top-contact a:hover {
            color: var(--light-color);
        }
        
        /* Navbar */
        .navbar {
            padding: 15px 0;
            transition: all 0.3s;
        }
        
        .navbar-brand {
            font-weight: bold;
            font-size: 24px;
            color: var(--primary-color) !important;
        }
        
        .navbar-nav .nav-link {
            color: var(--primary-color) !important;
            margin: 0 10px;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--secondary-color) !important;
        }
        
        .navbar .btn-cta {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 8px 20px;
            border-radius: 4px;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .navbar .btn-cta:hover {
            background-color: var(--secondary-color);
            color: white;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(93, 64, 55, 0.7), rgba(93, 64, 55, 0.7)), url('https://interiosplash.com/wp-content/uploads/2024/09/2.A-cozy-living-room-Interior-Design-with-natural-light-in-Bangalore-by-Interiosplash-Interior-Design-Company.webp');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 150px 0;
            text-align: center;
        }
        
        .hero h1 {
            font-size:7rem;
            font-weight: bold;
            margin-bottom: 20px;
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .btn-hero {
            background-color: white;
            color: var(--primary-color);
            padding: 12px 30px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 4px;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }
        
        .btn-hero:hover {
            background-color: var(--light-color);
            color: var(--primary-color);
            transform: translateY(-3px);
        }
        
        /* About Section */
        .about {
            padding: 80px 0;
        }
        
        .about-img {
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            height: 100%;
            object-fit: cover;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--primary-color);
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 3px;
            background-color: var(--secondary-color);
        }
        
        .btn-read-more {
            background-color: var(--primary-color);
            color: white;
            padding: 10px 25px;
            border-radius: 4px;
            font-weight: 500;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
            margin-top: 20px;
        }
        
        .btn-read-more:hover {
            background-color: var(--secondary-color);
            color: white;
            transform: translateY(-3px);
        }
        
        /* Counter Section */
        .counter {
            background-color: var(--primary-color);
            color: white;
            padding: 60px 0;
        }
        
        .counter-item {
            text-align: center;
        }
        
        .counter-item i {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: var(--light-color);
        }
        
        .counter-item h3 {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 10px;
        }
        
        .counter-item p {
            font-size: 1.1rem;
            margin: 0;
        }
        
        /* Vision & Mission */
        .vision-mission {
            padding: 80px 0;
            background-color: var(--lighter-color);
        }
        
        .vm-box {
            background-color: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            height: 100%;
        }
        
        .vm-box i {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        /* Why Choose Us */
        .why-choose {
            padding: 80px 0;
        }
        
        .feature-box {
            text-align: center;
            padding: 30px 20px;
            border-radius: 8px;
            transition: all 0.3s;
            height: 100%;
        }
        
        .feature-box:hover {
            background-color: var(--lighter-color);
            transform: translateY(-5px);
        }
        
        .feature-box i {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .feature-box h4 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--primary-color);
        }
        
        /* Work Process */
        .work-process {
            padding: 80px 0;
            background-color: var(--lighter-color);
        }
        
        .process-step {
            text-align: center;
            position: relative;
            padding: 30px 15px;
        }
        
        .process-step:not(:last-child):after {
            content: '';
            position: absolute;
            top: 50px;
            right: -15%;
            width: 30%;
            height: 2px;
            background-color: var(--secondary-color);
            z-index: 0;
        }
        
        .process-icon {
            width: 80px;
            height: 80px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            position: relative;
            z-index: 1;
        }
        
        .process-icon i {
            font-size: 2rem;
        }
        
        .process-step h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--primary-color);
        }
        
        /* Services Section */
        .services {
            padding: 80px 0;
        }
        
        .service-card {
            background-color: var(--lighter-color);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .service-card img {
            height: 350px;
            object-fit: cover;
            width: 100%;
        }
        
        .service-card-body {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .service-card h4 {
            font-size: 1.4rem;
            font-weight: bold;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        .service-card p {
            flex-grow: 1;
        }
        
        /* Service Booking Form */
        .booking-form {
            padding: 80px 0;
            background-color: var(--lighter-color);
        }
        
        .form-control, .form-select {
            border-radius: 4px;
            border: 1px solid #ddd;
            padding: 12px 15px;
            margin-bottom: 15px;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--secondary-color);
            box-shadow: 0 0 0 0.25rem rgba(141, 110, 99, 0.25);
        }
        
        .btn-submit {
            background-color: var(--primary-color);
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 4px;
            font-weight: 600;
            transition: all 0.3s;
            width: 100%;
        }
        
        .btn-submit:hover {
            background-color: var(--secondary-color);
            color: white;
        }
        
        /* Reviews Section */
        .reviews {
            padding: 80px 0;
        }
        
        .review-card {
            background-color: white;
            border-radius: 8px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
            height: 100%;
        }
        
        .review-card .stars {
            color: #ffc107;
            margin-bottom: 15px;
        }
        
        .review-card .review-text {
            font-style: italic;
            margin-bottom: 20px;
            color: #555;
        }
        
        .review-card .reviewer {
            display: flex;
            align-items: center;
        }
        
        .reviewer-img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
            object-fit: cover;
        }
        
        .reviewer-info h5 {
            margin: 0;
            font-size: 1.1rem;
            color: var(--primary-color);
        }
        
        .reviewer-info p {
            margin: 0;
            font-size: 0.9rem;
            color: #777;
        }
        
        /* FAQ Section */
        .faq {
            padding: 80px 0;
            background-color: var(--lighter-color);
        }
        
        .accordion-button {
            background-color: white;
            color: var(--primary-color);
            font-weight: 600;
            padding: 15px 20px;
        }
        
        .accordion-button:not(.collapsed) {
            background-color: var(--light-color);
            color: var(--primary-color);
        }
        
        .accordion-button:focus {
            box-shadow: none;
            border-color: var(--secondary-color);
        }
        
        .accordion-item {
            border: none;
            margin-bottom: 15px;
            border-radius: 8px !important;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(rgba(93, 64, 55, 0.9), rgba(93, 64, 55, 0.9)), url('https://images.pexels.com/photos/1571460/pexels-photo-1571460.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 80px 0;
            text-align: center;
        }
        
        .cta-section h2 {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 20px;
        }
        
        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .btn-cta-large {
            background-color: white;
            color: var(--primary-color);
            padding: 15px 40px;
            font-size: 1.2rem;
            font-weight: 600;
            border-radius: 4px;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }
        
        .btn-cta-large:hover {
            background-color: var(--light-color);
            color: var(--primary-color);
            transform: translateY(-3px);
        }
        
        /* Contact Section */
        .contact {
            padding: 80px 0;
        }
        
        .contact-info {
            margin-bottom: 30px;
        }
        
        .contact-info i {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-right: 15px;
            width: 30px;
            text-align: center;
        }
        
        .contact-info p {
            margin: 0;
            font-size: 1.1rem;
        }
        
        /* Footer */
        footer {
            background-color: var(--primary-color);
            color: white;
            padding: 60px 0 20px;
        }
        
        footer h4 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        
        footer h4:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: var(--light-color);
        }
        
        footer p, footer ul {
            font-size: 0.95rem;
            line-height: 1.8;
        }
        
        footer ul {
            list-style: none;
            padding: 0;
        }
        
        footer ul li {
            margin-bottom: 10px;
        }
        
        footer ul li a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s;
        }
        
        footer ul li a:hover {
            color: var(--light-color);
            padding-left: 5px;
        }
        
        .newsletter-form {
            display: flex;
            margin-top: 15px;
        }
        
        .newsletter-form input {
            flex-grow: 1;
            padding: 10px 15px;
            border: none;
            border-radius: 4px 0 0 4px;
        }
        
        .newsletter-form button {
            background-color: var(--secondary-color);
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 4px 4px 0;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .newsletter-form button:hover {
            background-color: var(--tertiary-color);
        }
        
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 50px;
            padding-top: 20px;
            text-align: center;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
        }
        
        .copyright a {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            margin: 0 10px;
        }
        
        .copyright a:hover {
            color: var(--light-color);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .process-step:not(:last-child):after {
                display: none;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }
