        :root {
            --primary-color: #0071bd;
            --secondary-color: #91cc23;
            --accent-color: #6bcd9c;
            --skyblue-color: #87CEEB;
            --green-color: #2ecc71;
            --light-color: #f8f9fa;
            --dark-color: #333;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--dark-color);
            overflow-x: hidden;
        }

        h1,
        h2,
        h3,
        h4,
        h5 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
        }

        /* Header Styles */
        .navbar-brand {
            font-family: 'Montserrat', sans-serif;
            font-weight: 900;
            font-size: 1.8rem;
            color: var(--primary-color) !important;
        }

        .navbar-brand span {
            color: var(--secondary-color);
        }

        .navbar-brand img {
            width: 180px;
            height: 70px;
            object-fit: cover;
        }

        .footer-logo img {
            width: 180px;
            height: 80px;
            object-fit: cover;
        }

        .whatsapp i {
            color: white;
            font-size: 30px;
            padding: 10px 0;
            font-weight: 700;
        }
        .call i {
            color: white;
            font-size: 30px;
            padding: 10px 0;
        }

        .whatsapp {
            border-radius: 50%;
            height: 50px;
            width: 50px;
            font-size: 14px;
            color: #fff;
            text-align: center;
            position: fixed;
            bottom: 100px;
            line-height: 40px;
            cursor: pointer;
            display: block;
            z-index: 2;
            color: white;
            background: #2ecc71;
        }
        .call {
            border-radius: 50%;
            height: 50px;
            width: 50px;
            font-size: 14px;
            color: #fff;
            text-align: center;
            position: fixed;
            bottom: 20px;
            line-height: 40px;
            cursor: pointer;
            display: block;
            z-index: 2;
            color: white;
            background: var(--primary-color);
        }

        .contact-info {
            font-weight: 500;
        }

        .contact-info i {
            color: var(--secondary-color);
            margin-right: 8px;
        }

        /* Banner Styles */
        .banner-section {
            background: linear-gradient(rgb(0 0 0 / 66%), rgb(7 8 10 / 85%)), url(./img/banner.jpg);
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 0;
            min-height: 80vh;
            display: flex;
            align-items: center;
        }

        .banner-content h1 {
            font-size: 3.2rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .banner-content .highlight {
            color: var(--secondary-color);
        }

        .banner-content ul {
            list-style-type: none;
            padding-left: 0;
            margin: 25px 0;
        }

        .set-js {
            justify-content: space-between;
        }

        .banner-content li {
            padding: 8px 0;
            font-size: 1.1rem;
        }

        .banner-content li i {
            color: var(--accent-color);
            margin-right: 10px;
        }

        .form-container {
            background: rgba(255, 255, 255, 19%);
            border-radius: 15px;
            padding: 30px;
            color: var(--dark-color);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }

        .form-container h3 {
            color: var(--secondary-color);
            margin-bottom: 25px;
            text-align: center;
        }

        .form-control {
            padding: 12px 15px;
            margin-bottom: 20px;
            border: 1px solid #ddd;
            border-radius: 8px;
        }

        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.25rem rgba(74, 111, 165, 0.25);
        }

        .btn-primary {
            background-color: var(--secondary-color);
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 8px;
            width: 100%;
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            background-color: var(--primary-color);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(22, 20, 20, 0.4);
        }

        /* Services Overview Section */
        .services-overview {
            padding: 100px 0;
            background-color: #f9f9f9;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
            color: var(--primary-color);
        }

        .section-title h2 {
            font-size: 2.8rem;
            margin-bottom: 15px;
        }

        .section-title p {
            font-size: 1.2rem;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }

        .service-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 30px;
            height: 100%;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border-top: 5px solid var(--primary-color);
            overflow: hidden;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .service-card.bathroom {
            border-top-color: var(--skyblue-color);
        }

        .service-card.bedrooms {
            border-top-color: var(--green-color);
        }

        .service-card.kitchen {
            border-top-color: var(--secondary-color);
        }

        .service-card-img {
            height: 200px;
            overflow: hidden;
            border-radius: 10px;
            margin-bottom: 20px;
        }

        .service-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .service-card:hover .service-card-img img {
            transform: scale(1.05);
        }

        .service-icon {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .service-card h4 {
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .service-card ul {
            list-style-type: none;
            padding-left: 0;
            margin-bottom: 25px;
        }

        .service-card li {
            padding: 8px 0;
            border-bottom: 1px solid #eee;
        }

        .service-card li:last-child {
            border-bottom: none;
        }

        .service-card li i {
            color: var(--accent-color);
            margin-right: 10px;
        }

        .service-btn {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 10px 25px;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s ease;
            width: 100%;
        }

        .enquire-btn {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 10px 25px;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .service-btn:hover {
            background-color: #3a5a8a;
            color: white;
        }

        /* Detailed Service Sections */
        .service-detail-section {
            padding: 2px 0;
        }

        .service-detail-section:nth-child(even) {
            background-color: #f9f9f9;
        }

        .service-detail-img {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .service-detail-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .service-detail-content {
            padding: 20px;
        }

        .service-detail-content h3 {
            color: var(--primary-color);
            margin-bottom: 30px;
            font-size: 2.5rem;
        }

        .sub-services {
            margin-bottom: 30px;
        }

        .sub-service-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            padding: 10px;
            border-radius: 8px;
            background-color: rgba(255, 255, 255, 0.7);
            transition: all 0.3s ease;
        }

        .sub-service-item:hover {
            background-color: white;
            transform: translateX(5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .sub-service-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            font-size: 1.5rem;
            color: white;
        }

        .bathroom-icon {
            background-color: var(--skyblue-color);
        }

        .bedrooms-icon {
            background-color: var(--green-color);
        }

        .kitchen-icon {
            background-color: var(--secondary-color);
        }

        .sub-service-text h5 {
            margin-bottom: 5px;
            color: var(--primary-color);
        }

        .sub-service-text p {
            margin: 0;
            color: #666;
            font-size: 0.9rem;
        }

        /* Discount Banner */
        .discount-banner {
            background: linear-gradient(to right, var(--secondary-color), #ff9a8b);
            color: white;
            padding: 40px 0;
            text-align: center;
            margin: 50px 0;
        }

        .discount-banner h3 {
            font-size: 2.5rem;
            margin-bottom: 10px;
        }

        .discount-banner p {
            font-size: 1.3rem;
            margin-bottom: 0;
        }

        /* Call to Action */
        .cta-section {
            padding: 100px 0;
            background: linear-gradient(rgba(74, 111, 165, 0.9), rgba(74, 111, 165, 0.9)), url('https://images.unsplash.com/photo-1563453392212-326f5e854473?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
        }

        .cta-section h2 {
            font-size: 2.8rem;
            margin-bottom: 20px;
        }

        .cta-section p {
            font-size: 1.3rem;
            max-width: 700px;
            margin: 0 auto 40px;
        }

        .cta-btn {
            background-color: white;
            color: var(--primary-color);
            border: none;
            padding: 15px 40px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .cta-btn:hover {
            background-color: var(--secondary-color);
            color: white;
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        /* Footer */
        .footer-section {
            background-color: #222;
            color: #ddd;
            padding: 80px 0 30px;
        }

        .footer-logo {
            font-family: 'Montserrat', sans-serif;
            font-weight: 900;
            font-size: 2rem;
            color: white;
            margin-bottom: 20px;
        }

        .footer-logo span {
            color: var(--secondary-color);
        }

        .footer-section h5 {
            color: white;
            margin-bottom: 25px;
            font-size: 1.3rem;
        }

        .footer-links {
            list-style-type: none;
            padding-left: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #bbb;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--secondary-color);
            padding-left: 5px;
        }

        .social-icons {
            margin-top: 20px;
        }

        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: #333;
            color: white;
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin-right: 10px;
            transition: all 0.3s ease;
        }

        .social-icons a:hover {
            background-color: var(--secondary-color);
            transform: translateY(-5px);
        }

        .copyright {
            border-top: 1px solid #444;
            padding-top: 20px;
            margin-top: 50px;
            text-align: center;
            color: #aaa;
            font-size: 0.9rem;
        }

        /* Modal Styles */
        .modal-header {
            background-color: var(--primary-color);
            color: white;
        }

        .modal-title {
            font-weight: 700;
        }

        .modal-body {
            padding: 25px;
        }

        .modal-image {
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 20px;
        }

        .modal-image img {
            width: 100%;
            height: 200px;
            /* object-fit: cover; */
        }

        .modal-footer .btn-primary {
            width: auto;
        }

        a {
            text-decoration: none;
        }

        /* Responsive Styles */
        @media (max-width: 768px) {
            .banner-content h1 {
                font-size: 2.5rem;
            }

            .section-title h2 {
                font-size: 2.2rem;
            }

            .banner-section {
                padding: 60px 0;
            }

            .services-overview,
            .service-detail-section,
            .cta-section {
                padding: 60px 0;
            }

            .discount-banner h3 {
                font-size: 2rem;
            }

            .service-detail-content h3 {
                font-size: 2rem;
            }
        }

        @media (max-width: 576px) {
            .banner-content h1 {
                font-size: 2rem;
            }

            .contact-info {
                font-size: 0.9rem;
            }

            .form-container {
                padding: 20px;
            }

            .service-detail-img {
                margin-bottom: 30px;
            }
        }