
        :root {
            --accent-orange: #ee6c4d;
            --dark-navy: #293241;
            --white: #FFFFFF;
            --light-bg: #f8f9fa;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--dark-navy);
            overflow-x: hidden;
        }

        h1, h2, h3, .fw-bold { font-family: 'Montserrat', sans-serif; font-weight: 700; }

        /* Navbar */
        .navbar { padding: 20px 0; background: transparent; }
        .nav-link { color: var(--dark-navy) !important; font-weight: 600; text-transform: uppercase; font-size: 0.9rem; }
        .nav-link:hover { color: var(--accent-orange) !important; }
        .btn-orange { background-color: var(--accent-orange); color: white; border-radius: 0; padding: 10px 25px; transition: 0.3s; border: none; }
        .btn-orange:hover { background-color: #d85a3d; color: white; transform: translateY(-2px); }

        /* Hero */
        .hero-section {
            background: linear-gradient(rgba(41, 50, 65, 0.7), rgba(41, 50, 65, 0.7)), url('https://mydecorative.com/wp-content/uploads/2020/10/home-renovation-ideas.jpg') no-repeat center center/cover;
            height: 100vh;
            display: flex;
            align-items: center;
            color: var(--white);
        }

        .nav-item{
            margin-left:20px !important;
        }

        /* Sections */
        section { padding: 90px 0; }
        .bg-light-service { background-color: #f1f3f5; }

        /* Service Cards */
        .service-card {
            border: none;
            border-bottom: 5px solid var(--accent-orange);
            transition: 0.4s;
            height: 100%;
        }
        .service-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
        .service-card img { height: 230px; object-fit: cover; }
        .service-desc { 
            line-height: 1.6; 
            font-size: 0.95rem; 
            height: 160px; /* Force approx 7 lines of text */
            overflow: hidden; 
        }

        /* Counter */
        .counter-section { background-color: var(--dark-navy); color: var(--white); padding: 60px 0; }
        .counter-box h2 { color: var(--accent-orange); font-size: 3rem; }

        /* Contact Section */
        .contact-info-icon { width: 50px; height: 50px; background: var(--accent-orange); color: white; display: flex; align-items: center; justify-content: center; border-radius: 50%; margin-bottom: 15px; }

        /* Footer */
        footer { background-color: #1a1f29; color: #b0b5bd; padding: 80px 0 20px; }
        footer h5 { color: var(--white); margin-bottom: 25px; font-weight: 700; }
        footer a { color: #b0b5bd; text-decoration: none; transition: 0.3s; }
        footer a:hover { color: var(--accent-orange); }

        .form-control { border-radius: 0; padding: 12px; border: 1px solid #ddd; }
        .form-control:focus { border-color: var(--accent-orange); box-shadow: none; }
        .list-unstyled li{

            margin-bottom:20px !important;
        }
