
        :root {
            --deep-forest-green: #1F3D2B;
            --warm-beige: #E8D8C3;
            --charcoal-gray: #2F2F2F;
            --soft-white: #F7F7F7;
            --primary-font: 'Poppins', sans-serif;
            --secondary-font: 'Inter', sans-serif;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: var(--secondary-font);
            color: var(--charcoal-gray);
            background-color: var(--soft-white);
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: var(--primary-font);
            font-weight: 600;
        }
        
        /* Navbar Styles */
        .navbar {
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            padding: 1rem 0;
        }

        .nav-item{
            margin-left:35px !important;
        }
        
        .navbar-brand {
            font-family: var(--primary-font);
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--deep-forest-green) !important;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .navbar-brand i {
            font-size: 1.8rem;
        }
        
        .nav-link {
            color: var(--charcoal-gray) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-link:hover {
            color: var(--deep-forest-green) !important;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background-color: var(--deep-forest-green);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 80%;
        }
        
        .btn-quote {
            background: linear-gradient(135deg, var(--deep-forest-green), #2a523a);
            color: white !important;
            border: none;
            padding: 0.6rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(31, 61, 43, 0.2);
        }
        
        .btn-quote:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(31, 61, 43, 0.3);
        }
        
        /* Hero Section */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, rgba(31, 61, 43, 0.9), rgba(31, 61, 43, 0.7)),
                        url('https://img.freepik.com/premium-photo/unfinished-room-renovation-interior-design-construction_1121478-17268.jpg') center/cover;
            color: white;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 80%, rgba(232, 216, 195, 0.1) 0%, transparent 50%);
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            animation: fadeInUp 1s ease;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .hero h1 {
            font-size:5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        
        .hero p {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            opacity: 0.95;
        }
        
        .btn-hero {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: var(--warm-beige);
            color: var(--deep-forest-green);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(232, 216, 195, 0.3);
        }
        
        .btn-hero:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(232, 216, 195, 0.4);
            color: var(--deep-forest-green);
        }
        
        /* Section Styles */
        .section {
            padding: 80px 0;
        }
        
        .section-heading {
            font-size: 2.5rem;
            color: var(--deep-forest-green);
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
        }
        
        .section-heading::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--deep-forest-green), var(--warm-beige));
            border-radius: 2px;
        }
        
        /* About Section */
        .about-content {
            font-size: 1.05rem;
            line-height: 1.8;
        }
        
        .about-content h3 {
            color: var(--deep-forest-green);
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
        }
        
        /* Counter Section */
        .counter-section {
            background: linear-gradient(135deg, var(--deep-forest-green), #2a523a);
            color: white;
            padding: 60px 0;
        }
        
        .counter-box {
            text-align: center;
            padding: 2rem;
            transition: transform 0.3s ease;
        }
        
        .counter-box:hover {
            transform: translateY(-5px);
        }
        
        .counter-box i {
            font-size: 3rem;
            color: var(--warm-beige);
            margin-bottom: 1rem;
        }
        
        .counter {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        
        .counter-label {
            font-size: 1.1rem;
            opacity: 0.9;
        }
        
        /* Vision & Mission */
        .vision-mission-card {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            height: 100%;
            transition: all 0.3s ease;
            border-left: 4px solid var(--deep-forest-green);
        }
        
        .vision-mission-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
        }
        
        .vision-mission-card i {
            font-size: 2.5rem;
            color: var(--deep-forest-green);
            margin-bottom: 1.5rem;
        }
        
        /* Why Choose Us */
        .feature-box {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .feature-box:hover {
            transform: translateY(-8px);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            border-top: 3px solid var(--deep-forest-green);
        }
        
        .feature-box i {
            font-size: 2.5rem;
            color: var(--deep-forest-green);
            margin-bottom: 1rem;
        }
        
        .feature-box h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: var(--deep-forest-green);
        }
        
        /* Work Process Timeline */
        .process-timeline {
            position: relative;
            padding: 2rem 0;
        }
        
        .process-timeline::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--deep-forest-green), var(--warm-beige));
            z-index: 0;
        }
        
        .process-step {
            position: relative;
            z-index: 1;
            text-align: center;
        }
        
        .process-icon {
            width: 80px;
            height: 80px;
            background: white;
            border: 3px solid var(--deep-forest-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            font-size: 1.8rem;
            color: var(--deep-forest-green);
            transition: all 0.3s ease;
        }
        
        .process-step:hover .process-icon {
            background: var(--deep-forest-green);
            color: white;
            transform: scale(1.1);
        }
        
        .process-step h4 {
            color: var(--deep-forest-green);
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }
        
        /* Services Section */
        .services-section {
            background-color: var(--warm-beige);
        }
        
        .service-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }
        
        .service-img {
            height: 200px;
            overflow: hidden;
        }
        
        .service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .service-card:hover .service-img img {
            transform: scale(1.1);
        }
        
        .service-content {
            padding: 1.5rem;
        }
        
        .service-content h3 {
            color: var(--deep-forest-green);
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }
        
        .service-content p {
            margin-bottom: 1.5rem;
            color: var(--charcoal-gray);
        }
        
        .btn-service {
            background: var(--deep-forest-green);
            color: white;
            border: none;
            padding: 0.6rem 1.5rem;
            border-radius: 25px;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .btn-service:hover {
            background: #2a523a;
            transform: translateX(5px);
        }
        
        /* Booking Form */
        .booking-form {
            background: white;
            padding: 3rem;
            border-radius: 15px;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
        }
        
        .form-control, .form-select {
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            padding: 0.8rem 1rem;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--deep-forest-green);
            box-shadow: 0 0 0 0.2rem rgba(31, 61, 43, 0.1);
        }
        
        .btn-booking {
            background: linear-gradient(135deg, var(--deep-forest-green), #2a523a);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            width: 100%;
            transition: all 0.3s ease;
        }
        
        .btn-booking:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(31, 61, 43, 0.3);
        }
        
        /* Reviews Section */
        .review-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .review-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
        }
        
        .rating {
            color: #ffc107;
            margin-bottom: 1rem;
        }
        
        .review-text {
            font-style: italic;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }
        
        .review-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .author-avatar {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--deep-forest-green), var(--warm-beige));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
        }
        
        /* FAQ Section */
        .faq-section {
            background-color: var(--soft-white);
        }
        
        .accordion-button {
            background-color: white;
            color: var(--deep-forest-green);
            font-weight: 600;
            border: none;
            padding: 1.2rem 1.5rem;
            transition: all 0.3s ease;
        }
        
        .accordion-button:not(.collapsed) {
            background-color: var(--deep-forest-green);
            color: white;
        }
        
        .accordion-button:focus {
            box-shadow: none;
            border: none;
        }
        
        .accordion-item {
            border: none;
            margin-bottom: 1rem;
            border-radius: 10px !important;
            overflow: hidden;
            box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--deep-forest-green), #2a523a);
            color: white;
            padding: 80px 0;
            text-align: center;
        }
        
        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }
        
        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.95;
        }
        
        /* Contact Section */
        .contact-info {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            height: 100%;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }
        
        .contact-item i {
            font-size: 1.5rem;
            color: var(--deep-forest-green);
            margin-top: 0.2rem;
        }
        
        /* Footer */
        footer {
            background-color: var(--charcoal-gray);
            color: white;
            padding: 60px 0 20px;
        }
        
        .footer-logo {
            font-family: var(--primary-font);
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--warm-beige);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--warm-beige);
            transform: translateX(5px);
            display: inline-block;
        }
        
        .newsletter-form {
            display: flex;
            gap: 0.5rem;
            margin-top: 1rem;
        }
        
        .newsletter-form input {
            flex: 1;
            padding: 0.6rem 1rem;
            border: none;
            border-radius: 5px;
        }
        
        .newsletter-form button {
            background: var(--deep-forest-green);
            color: white;
            border: none;
            padding: 0.6rem 1.5rem;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .newsletter-form button:hover {
            background: var(--warm-beige);
            color: var(--deep-forest-green);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 3rem;
            padding-top: 2rem;
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
        }
        
        .footer-bottom a {
            color: var(--warm-beige);
            text-decoration: none;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
        }
        
        .footer-bottom a:hover {
            text-decoration: underline;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .section-heading {
                font-size: 2rem;
            }
            
            .process-timeline::before {
                display: none;
            }
            
            .process-step {
                margin-bottom: 2rem;
            }
        }
        
        /* Lazy Loading */
        img {
            loading: lazy;
        }
