
        :root {
            --primary-color: #EA580C;
            --secondary-color: #FCD34D;
            --text-color: #78716C;
            --light-bg: #FAFAF9;
            --dark-text: #1F2937;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--text-color);
            line-height: 1.6;
        }

        /* Navbar Styles */
        .navbar {
            background-color: transparent !important;
            padding: 1rem 0;
            transition: all 0.3s ease;
        }

        .navbar-brand {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--primary-color) !important;
        }

        .navbar-brand i {
            color: var(--secondary-color);
            margin-right: 8px;
        }

        .navbar-nav .nav-link {
            color: var(--text-color) !important;
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s ease;
        }

        .navbar-nav .nav-link:hover {
            color: var(--primary-color) !important;
        }

        .cta-btn {
            background: linear-gradient(135deg, var(--primary-color), #DC2626);
            color: white;
            padding: 10px 25px;
            border-radius: 50px;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            border: none;
            font-weight: 600;
        }

        .cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(234, 88, 12, 0.3);
            color: white;
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, rgba(26, 25, 24, 0.9), rgba(252, 211, 77, 0.9)), url('https://cdn.prod.website-files.com/65125dd5b6de2942229d8923/6525c66dc0be07b89568184a_full-hose-project--5.jpg');
            background-size: cover;
            background-position: center;
            padding: 150px 0;
            color: white;
            text-align: center;
        }

        .hero-section h1 {
            font-size:6rem;
            font-weight: bold;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .hero-section p {
            font-size: 1.3rem;
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Section Styles */
        .section {
            padding: 80px 0;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--primary-color);
            text-align: center;
            margin-bottom: 50px;
        }

        .bg-light {
            background-color: var(--light-bg) !important;
        }

        /* About Section */
        .about-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        /* Counter Section */
        .counter-box {
            text-align: center;
            padding: 30px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
        }

        .counter-box:hover {
            transform: translateY(-5px);
        }

        .counter-box i {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        .counter {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--dark-text);
        }

        /* Vision Mission Box */
        .vision-mission-box {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            height: 100%;
        }

        .vision-mission-box h3 {
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        /* Book Service Cards */
        .service-booking-card {
            background: white;
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            height: 100%;
        }

        .service-booking-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .service-booking-card i {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        /* Process Step */
        .process-step {
            text-align: center;
            padding: 30px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            height: 100%;
        }

        .process-step:hover {
            transform: translateY(-5px);
        }

        .process-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }

        .process-icon i {
            font-size: 2rem;
            color: white;
        }

        /* Feature Box */
        .feature-box {
            background: white;
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            height: 100%;
        }

        .feature-box:hover {
            transform: translateY(-5px);
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }

        .feature-icon i {
            font-size: 1.8rem;
            color: white;
        }

        /* Service Cards */
        .service-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            height: 100%;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .service-card img {
            width: 100%;
            height: 350px;
            object-fit: cover;
        }

        .service-card-body {
            padding: 25px;
        }

        .service-card-body h4 {
            color: var(--primary-color);
            font-weight: bold;
            margin-bottom: 15px;
        }

        /* Review Cards */
        .review-card {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            height: 100%;
        }

        .stars {
            color: var(--secondary-color);
            margin-bottom: 15px;
        }

        .review-card h6 {
            color: var(--primary-color);
            font-weight: bold;
            margin-top: 15px;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-color), #000000);
            padding: 80px 0;
            text-align: center;
            color: white;
        }

        .nav-item{
            margin-left:30px ;
        }

        /* Contact Info Box */
        .contact-info-box {
            background: white;
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
        }

        .contact-info-box i {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-right: 15px;
            width: 30px;
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, #1F2937, #111827);
            color: white;
            padding: 50px 0 20px;
        }

        footer h5 {
            color: var(--secondary-color);
            margin-bottom: 20px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #D1D5DB;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--secondary-color);
        }

        /* Accordion */
        .accordion-button {
            background-color: var(--light-bg) !important;
            color: var(--text-color) !important;
            font-weight: 600;
        }

        .accordion-button:not(.collapsed) {
            background-color: var(--primary-color) !important;
            color: white !important;
        }

        .accordion-item {
            border: none;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
            margin-bottom: 10px;
            border-radius: 10px !important;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }
