
        :root {
            --forest-green: #1B4332;
            --sage: #95D5B2;
            --cream: #F1FAEE;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
        }
        
        /* Navbar Styles */
        .navbar {
            background: transparent !important;
            padding: 1rem 0;
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-weight: bold;
            font-size: 1.5rem;
            color: var(--forest-green) !important;
        }
        
        .navbar-nav .nav-link {
            color: var(--forest-green) !important;
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--sage) !important;
        }
        
        .btn-cta {
            background: var(--forest-green);
            color: white;
            padding: 10px 25px;
            border-radius: 25px;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            border: none;
        }
        
        .btn-cta:hover {
            background: var(--sage);
            color: var(--forest-green);
            transform: translateY(-2px);
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, var(--cream) 0%, var(--sage) 100%);
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('https://5.imimg.com/data5/SELLER/Default/2023/11/360264933/NB/PF/MS/99564776/building-and-flat-renovation-services.jpeg') center/cover;
            opacity: 0.15;
            z-index: 0;
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
        }
        
        .hero-title {
            font-size:4rem;
            font-weight: bold;
            color: var(--forest-green);
            margin-bottom: 20px;
        }
        
        /* Section Styles */
        .section-padding {
            padding: 80px 0;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--forest-green);
            margin-bottom: 50px;
            text-align: center;
        }
        
        /* Counter Styles */
        .counter-box {
            text-align: center;
            padding: 30px;
            background: var(--cream);
            border-radius: 10px;
            margin: 10px 0;
        }
        
        .counter-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--forest-green);
        }
        
        /* Service Cards */
        .service-card {
            background: var(--cream);
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .service-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .service-card-body {
            padding: 20px;
        }
        
        .service-card h5 {
            color: var(--forest-green);
            font-weight: bold;
            margin-bottom: 15px;
        }
        
        /* Why Choose Us */
        .feature-box {
            text-align: center;
            padding: 30px 20px;
            transition: transform 0.3s ease;
        }
        
        .feature-box:hover {
            transform: translateY(-5px);
        }
        
        .feature-icon {
            font-size: 3rem;
            color: var(--forest-green);
            margin-bottom: 20px;
        }
        
        /* Work Process */
        .process-step {
            text-align: center;
            position: relative;
            padding: 30px 20px;
        }
        
        .process-number {
            width: 60px;
            height: 60px;
            background: var(--forest-green);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            margin: 0 auto 20px;
        }
        
        /* Reviews */
        .review-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            margin-bottom: 20px;
            height: 100%;
        }
        
        .review-stars {
            color: #ffc107;
            margin-bottom: 15px;
        }
        
        /* FAQ */
        .accordion-button:not(.collapsed) {
            background-color: var(--sage);
            color: var(--forest-green);
        }
        
        .accordion-button:focus {
            box-shadow: none;
        }
        
        /* Footer */
        footer {
            background: var(--forest-green);
            color: white;
            padding: 60px 0 20px;
        }
        
        footer h5 {
            color: var(--sage);
            margin-bottom: 20px;
        }
        
        footer a {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        footer a:hover {
            color: var(--sage);
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--forest-green) 0%, var(--sage) 100%);
            padding: 80px 0;
            color: white;
            text-align: center;
        }
        
        /* Vision Mission */
        .vision-mission-box {
            background: var(--cream);
            padding: 40px;
            border-radius: 15px;
            height: 100%;
        }
        
        /* Contact Form */
        .contact-form {
            background: var(--cream);
            padding: 40px;
            border-radius: 15px;
        }
        
        .form-control:focus {
            border-color: var(--sage);
            box-shadow: 0 0 0 0.2rem rgba(149, 213, 178, 0.25);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
        }
