
        
        /***home ****/
        
        
        
       
        :root {
            --primary-color: #244B6F;
            --primary-light: #2d5a83;
            --primary-dark: #1a3952;
            --secondary-color: #E8F0F7;
            --accent-color: #F59340;
            --accent-light: #F7A865;
            --success-color: #28a745;
            --warning-color: #ffc107;
            --error-color: #dc3545;
            --light-gray: #f8f9fa;
            --dark-gray: #6c757d;
            --white: #ffffff;
            --black: #000000;
            --shadow-light: 0 4px 20px rgba(0, 0, 0, 0.1);
            --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.15);
            --shadow-heavy: 0 15px 50px rgba(0, 0, 0, 0.2);
            --gradient-primary: linear-gradient(135deg, #244B6F 0%, #1a3952 100%);
            --gradient-accent: linear-gradient(135deg, #F59340 0%, #F7A865 100%);
            --gradient-overlay: linear-gradient(135deg, rgba(36, 75, 111, 0.9) 0%, rgba(26, 57, 82, 0.9) 100%);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }



        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--black);
          
        }

html, body {
  overflow-x: hidden;
}

        /* Enhanced Typography */
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        .display-1 { font-size: 4.5rem; font-weight: 800; }
        .display-2 { font-size: 3.5rem; font-weight: 700; }
        .display-3 { font-size: 2.8rem; font-weight: 700; }
        .display-4 { font-size: 2.2rem; font-weight: 600; }
        .display-6 {font-size:1rem; font-weight:500;}

        p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--dark-gray);
        }

        /* Enhanced Buttons */
        .btn {
            font-weight: 600;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 0.9rem;
            border: none;
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn-primary, .btn-warning {
            background: #F6913B;
            color: var(--white);
            box-shadow: var(--shadow-light);
        }

        .btn-primary:hover, .btn-warning:hover {
            background: var(--gradient-primary);
            transform: translateY(-2px);
            box-shadow: var(--shadow-medium);
            color: var(--white);
        }

        .custom-btn, .btn-outline-light {
            border: 2px solid var(--white);
            color: var(--white);
            background: transparent;
        }

        /*.custom-btn, .btn-outline-light:hover {*/
        /*    background: var(--white);*/
        /*    color:#000;*/
        /*    transform: translateY(-2px);*/
        /*}*/

        /* Enhanced Header */
        .top-header {
            background: var(--white);
            border-bottom: 1px solid var(--secondary-color);
            box-shadow: var(--shadow-light);
            position: relative;
            overflow: hidden;
        }

        .top-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gradient-primary);
        }

        .logo img {
            height: 70px;
            transition: transform 0.3s ease;
            filter: drop-shadow(0 2px 8px rgba(0,0,0,0.1));
        }

        .logo img:hover {
            transform: scale(1.05);
        }

        .contact-info {
            display: flex;
            gap: 2rem;
        }

        .contact-info > div {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 0.5rem 1rem;
            border-radius: 15px;
            background: rgba(36, 75, 111, 0.05);
            transition: all 0.3s ease;
        }

        .contact-info > div:hover {
            background: var(--secondary-color);
            transform: translateY(-2px);
        }

        .contact-info i {
            font-size: 1.5rem;
            color: var(--primary-color);
            background: var(--secondary-color);
            padding: 0.8rem;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .contact-info i:hover {
            background: var(--primary-color);
            color: var(--white);
            transform: scale(1.1);
        }

        .contact-info .label {
            font-size: 0.9rem;
            color: var(--dark-gray);
            font-weight: 500;
        }

        .contact-info .value {
            font-size: 1rem;
            color: var(--primary-color);
            font-weight: 700;
        }

        /* Enhanced Navigation */
        .main-navbar {
            background: var(--white);
            box-shadow: var(--shadow-light);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .main-navbar.scrolled {
            padding: 0.5rem 0;
            box-shadow: var(--shadow-medium);
        }

        .navbar-nav .nav-link {
            color: var(--primary-color);
            font-weight: 500;
            padding: 0.5rem 1rem;
            margin: 0 0.2rem;
            border-radius: 25px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 0.9rem;
            position: relative;
        }

        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--gradient-primary);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .navbar-nav .nav-link:hover {
            background: var(--secondary-color);
            color: var(--primary-dark);
            transform: translateY(-2px);
        }

        .navbar-nav .nav-link:hover::after {
            width: 80%;
        }

        /* Banner Enhancement */
        .banner-only {
            height: 100vh;
            padding-top: 50px !important;
            background: linear-gradient(135deg, rgba(36, 75, 111, 0.9) 0%, rgba(26, 57, 82, 0.9) 100%), 
                        url('https://www.nobrokerhood.com/blog/wp-content/uploads/2024/12/NoBrokerHood-Plumbing-Services.jpg') center/cover no-repeat;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .banner-only::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 50%, rgba(245, 147, 64, 0.1) 0%, transparent 50%);
        }

        .banner-content {
            z-index: 2;
            position: relative;
        }

        .banner-content h1 {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .banner-content p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2rem;
            max-width: 600px;
        }

        .highlight {
            color: var(--secondary-color) !important;
            position: relative;
        }

        .highlight::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50%;
            height: 3px;
            background: linear-gradient(90deg, var(--secondary-color), transparent);
            animation: shimmer 2s infinite;
        }

        @keyframes shimmer {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        /* Enhanced Plumbing Section */
        .plumbing-section {
            padding: 6rem 0;
            background: var(--white);
        }

        .plumbing-image img {
            border-radius: 20px;
            box-shadow: var(--shadow-heavy);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }



        .intro-title {
            color: #F6913B;
            font-weight: bold;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .feature-lists li {
            transition: all 0.3s ease;
            padding: 5px 0;
        }

        .feature-lists li:hover {
            transform: translateX(10px);
            color: var(--primary-color);
        }

        .feature-lists li:hover i {
            transform: scale(1.2);
            color: var(--primary-color);
        }

        /* Enhanced Stats Section */
        .stats-section {
            background: var(--gradient-primary);
            padding: 4rem 0;
            position: relative;
        }

        .stats-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            opacity: 0.3;
        }

        .stat-box {
            text-align: center;
            padding: 2rem;
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
            position: relative;
        }

        .stat-box:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.15);
            box-shadow: var(--shadow-heavy);
        }

        .stat-box h3 {
            font-size: 3.5rem;
            font-weight: 900;
            color: var(--white);
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .stat-box p {
            color: rgba(255, 255, 255, 0.9);
            font-weight: 600;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Enhanced Service Cards */
        .what-we-offer-section {
            padding: 6rem 0;
            background: var(--light-gray);
        }

        .card {
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
            border: none;
            border-radius: 20px;
            box-shadow: var(--shadow-light);
        }

        .card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: var(--shadow-heavy);
        }

        .card img {
            transition: all 0.5s ease;
            height: 250px;
            object-fit: cover;
        }

        .card:hover img {
            transform: scale(1.1);
        }

        .card-body-overlay {
            padding: 2rem;
            background: var(--white);
        }

        .card-footer {
            height: 4px;
            background: var(--gradient-primary) !important;
            border: none;
        }

        /* Enhanced Process Section */
        .our-process-section {
            padding: 6rem 0;
            background: var(--secondary-color) !important;
        }

        .process-card {
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(36, 75, 111, 0.1);
            border-radius: 20px;
        }

        .process-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(36, 75, 111, 0.1) 0%, transparent 70%);
            transform: scale(0);
            transition: transform 0.6s ease;
        }

        .process-card:hover::before {
            transform: scale(1);
        }

        .process-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-heavy);
        }

        .step-badge {
            background:#f6913b !important;
            color: var(--white);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .process-icon {
            color: var(--primary-color);
            transition: all 0.4s ease;
        }

        /* Enhanced Why Choose Us Section */
        .why-choose-us-section {
            background: var(--gradient-primary);
            min-height: 600px;
        }

        .why-choose-us-left-col {
            background: var(--gradient-primary);
            color: var(--white);
            padding: 4rem 2rem;
        }

        .why-choose-us-right-col {
            background: url('https://www.plumbtexas.net/wp-content/uploads/2023/09/13758.jpg') center center / cover no-repeat;
            min-height: 600px;
        }

        .why-choose-icon {
            color:#f59544;
            font-size: 2rem;
            transition: all 0.4s ease;
        }

        .why-choose-us-section .col-12:hover .why-choose-icon {
            transform: scale(1.3) rotate(360deg);
            color: var(--white);
        }

        /* Enhanced Brand Section */
        .hero-section {
            padding: 4rem 0;
            background: var(--white);
        }

        .swiper-slide img {
            transition: all 0.4s ease;
            filter: grayscale(100%);
            opacity: 0.7;
        }

        .swiper-slide:hover img {
            filter: grayscale(0%);
            opacity: 1;
            transform: scale(1.1);
        }

        /* Enhanced Testimonials */
        .customer-say-section {
            padding: 6rem 0;
            background: var(--white);
        }

        .testimonial-card {
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            border: 1px solid rgba(36, 75, 111, 0.1);
            border-radius: 20px;
        }

        .testimonial-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-heavy);
        }

        .testimonial-card .quote-icon {
            transition: all 0.4s ease;
        }

        .testimonial-card:hover .quote-icon {
            transform: rotate(15deg) scale(1.2);
            color: var(--primary-color);
        }

        /* Enhanced Contact Section */
        .contact-plumber-section {
            background: var(--secondary-color);
        }

        .contact-plumber-info-box {
            background: var(--white);
            padding: 1.5rem;
            border-radius: 15px;
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
            transition: all 0.3s ease;
            border: 1px solid rgba(36, 75, 111, 0.1);
            box-shadow: var(--shadow-light);
        }

        .contact-plumber-info-box:hover {
            background: var(--primary-color);
            transform: translateY(-3px);
            box-shadow: var(--shadow-medium);
        }

        .contact-plumber-info-box:hover i {
            color: var(--white);
        }

        .contact-plumber-info-box:hover .label,
        .contact-plumber-info-box:hover .value {
            color: var(--white);
        }

        .contact-plumber-info-box i {
            font-size: 2rem;
            color: var(--primary-color);
            transition: all 0.3s ease;
        }

        .contact-plumber-info-box .label {
            color: var(--dark-gray);
            font-size: 0.9rem;
            font-weight: 500;
        }

        .contact-plumber-info-box .value {
            color: var(--primary-color);
            font-weight: 700;
            font-size: 1.1rem;
        }

        .footer {
            background-color: #000;
            padding-top: 30px;
            padding-left:20px;
            padding-bottom:15px;
            padding-right:20px;
            border-top: 4px solid rgba(36, 75, 111, 0.3);
        }

        .footer-container { 
            display: flex;
            flex-wrap: wrap;
            max-width: 1200px;
            margin: auto;
            justify-content: space-between;
        }


        .footer-column {
            flex: 1 1 220px;
            min-width: 200px;
        }

        .footer-logo img {
            max-width: 180px;
            height: auto;
            margin-bottom: 20px;
        }

        .footer h3 {
            font-size: 1.25rem;
            margin-bottom: 20px;
            color: #f6913b;
            font-weight: 600;
        }

        .footer p, .footer li, .footer a {
            font-size: 0.95rem;
            color: white;
            text-decoration: none;
            line-height: 1.8;
            transition: all 0.3s ease;
        }

        .footer ul {
            list-style: none;
            padding: 0;
        }

        .footer a:hover {
            color: #A7C7F3;
            transform: translateX(5px);
        }

        .footer li:hover {
            transform: translateX(5px);
            color: #A7C7F3;
        }

        .social-icons {
            margin-top: 10px;
        }

        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            margin-right: 10px;
            border-radius: 50%;
            background-color: #244B6F;
            color: #ffffff;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 0 0 transparent;
        }

        .social-icons a:hover {
            transform: scale(1.15);
            background-color: #ffffff;
            color: #244B6F;
            border: 1px solid #244B6F;
            box-shadow: 0 0 10px rgba(167, 199, 243, 0.5);
        }

        .footer-bottom {
            text-align: center;
            margin-top: 40px;
            font-size: 0.85rem;
            color: #A7C7F3;
            border-top: 1px solid rgba(36, 75, 111, 0.3);
            padding-top: 20px;
        }

        @media (max-width: 768px) {
            .footer-container {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            

            .social-icons {
                justify-content: center;
            }
        }

        /* Enhanced Scroll to Top */
        .scroll-to-top {
            position: fixed;
            bottom: 100px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: var(--gradient-primary);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 1.2rem;
            box-shadow: var(--shadow-medium);
            opacity: 0;
            visibility: hidden;
            transform: translateY(100px);
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .scroll-to-top.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .scroll-to-top:hover {
            background: var(--gradient-accent);
            transform: translateY(-5px);
            box-shadow: var(--shadow-heavy);
            color: var(--white);
        }

        /* Floating Animation */
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        .service-card:nth-child(odd) {
            animation: float 6s ease-in-out infinite;
        }

        .service-card:nth-child(even) {
            animation: float 6s ease-in-out infinite reverse;
        }

        /* Pulse Animation for Important Elements */
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        .btn-warning:focus, .btn-primary:focus {
            animation: pulse 0.6s ease-in-out;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .banner-content h1 {
                font-size: 2.5rem;
            }
            
            .display-3 {
                font-size: 2rem;
            }
            
            .contact-info {
                flex-direction: column;
                gap: 1rem;
            }

            .display-1 { font-size: 2.5rem; }
            .display-2 { font-size: 2rem; }
            .display-4 { font-size: 1.5rem; }
        }

        @media (max-width: 576px) {
            .banner-content h1 {
                font-size: 2rem;
            }
            
            .btn {
                padding: 0.6rem 1.5rem;
                font-size: 0.8rem;
            }
        }

        /* Additional Utility Classes */
        .text-gradient {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .text-accent {
            color: var(--accent-color) !important;
        }

        .bg-gradient-primary {
            background: var(--gradient-primary) !important;
        }

        .bg-gradient-accent {
            background: var(--gradient-accent) !important;
        }

        .shadow-custom {
            box-shadow: var(--shadow-medium) !important;
        }
        
        /***social icon **/
        
        .social-icons .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background-color: #244B6F; /* Updated to new primary color */
            color: white;
            border-radius: 50%;
            text-decoration: none;
            font-size: 18px;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }

        .social-icons .social-icon:hover {
            transform: scale(1.1);
        }

        /* Update specific color references throughout */
       
        .stars i {
            color: #244B6F !important;
        }

        .underline {
            background-color: #f6913b !important;
        }
  

        
        
        /****about us ****/
 
        

        /* Enhanced Typography */
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 500;
            line-height: 1.2;
            margin-bottom: 1rem;
        }
        
        .statetext{
             font-family: 'Playfair Display', serif;
            font-weight: 500;
             font-size:1rem;
        }

        .display-1 { font-size: 4.5rem; font-weight: 800; }
        .display-2 { font-size: 3.5rem; font-weight: 700; }
        .display-3 { font-size: 2.8rem; font-weight: 700; }
        .display-4 { font-size: 2.2rem; font-weight: 600; }

        p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--dark-gray);
        }

        /* Enhanced Buttons */
        .btn {
            font-weight: 600;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 0.9rem;
            border: none;
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn-primary {
            background: var(--gradient-primary);
            color: var(--white);
            box-shadow: var(--shadow-light);
        }

        .btn-primary:hover {
            background: var(--gradient-primary);
            transform: translateY(-2px);
            box-shadow: var(--shadow-medium);
        }

        .btn-warning {
            background: var(--gradient-accent);
            color: var(--white);
            box-shadow: var(--shadow-light);
        }

        .btn-warning:hover {
            background: var(--gradient-accent);
            transform: translateY(-2px);
            box-shadow: var(--shadow-medium);
            color: var(--white);
        }

        .btn-outline-light {
            border: 2px solid var(--white);
            color: var(--white);
            background: transparent;
        }

        .btn-outline-light:hover {
            background: var(--white);
            color: var(--primary-color);
            transform: translateY(-2px);
        }

        /* Enhanced Header */
        .top-header {
            background: var(--white);
            border-bottom: 1px solid var(--secondary-color);
            box-shadow: var(--shadow-light);
            position: relative;
            overflow: hidden;
        }

        .top-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gradient-primary);
        }

        .logo img {
            height: 70px;
            transition: transform 0.3s ease;
            filter: drop-shadow(0 2px 8px rgba(0,0,0,0.1));
        }

        .logo img:hover {
            transform: scale(1.05);
        }

        .contact-info {
            display: flex;
            gap: 2rem;
        }

        .contact-info > div {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 0.5rem 1rem;
            border-radius: 15px;
            background: rgba(36, 75, 111, 0.05);
            transition: all 0.3s ease;
        }

        .contact-info > div:hover {
            background: var(--secondary-color);
            transform: translateY(-2px);
        }

        .contact-info i {
            font-size: 1.5rem;
            color: var(--primary-color);
            background: var(--secondary-color);
            padding: 0.8rem;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .contact-info i:hover {
            background: var(--primary-color);
            color: var(--white);
            transform: scale(1.1);
        }

        .contact-info .label {
            font-size: 0.9rem;
            color: var(--dark-gray);
            font-weight: 500;
        }

        .contact-info .value {
            font-size: 1rem;
            color: var(--primary-color);
            font-weight: 700;
        }

        /* Enhanced Navigation */
        .main-navbar {
            background: var(--white);
            box-shadow: var(--shadow-light);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .main-navbar.scrolled {
            padding: 0.5rem 0;
            box-shadow: var(--shadow-medium);
        }

        .navbar-nav .nav-link {
            color: var(--primary-color);
            font-weight: 500;
            padding: 0.5rem 1rem;
            margin: 0 0.2rem;
            border-radius: 25px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 0.9rem;
            position: relative;
        }

        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--gradient-primary);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .navbar-nav .nav-link:hover {
            background: var(--secondary-color);
            color: var(--primary-dark);
            transform: translateY(-2px);
        }

        .navbar-nav .nav-link:hover::after {
            width: 80%;
        }

        .search-bar {
            background: var(--secondary-color);
            border: none;
            border-radius: 30px;
            padding: 0.5rem 1rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .search-bar::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s;
        }

        .search-bar:focus-within {
            box-shadow: var(--shadow-medium);
            transform: scale(1.05);
        }

        .search-bar:focus-within::before {
            left: 100%;
        }

        .search-bar input {
            background: transparent;
            border: none;
            color: var(--primary-color);
        }

        .search-bar input::placeholder {
            color: var(--dark-gray);
        }

        .search-bar i {
            color: var(--primary-color);
        }

        /* Enhanced Hero Section */
        .hero-banner {
            background: linear-gradient(135deg, rgba(36, 75, 111, 0.9) 0%, rgba(26, 57, 82, 0.9) 100%), url('https://assets-news.housing.com/news/wp-content/uploads/2022/10/14181532/PLUMBING-MATERIAL-FEATURE-compressed.jpg') center/cover no-repeat;
            min-height: 60vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 50%, rgba(245, 147, 64, 0.1) 0%, transparent 50%);
        }

        .banner-content {
            z-index: 2;
            position: relative;
        }

        .banner-content h1 {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .banner-content p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2rem;
            max-width: 600px;
        }

        /* Enhanced About Section */
        .about-content {
            padding: 3rem 0;
            position: relative;
            overflow: hidden;
        }

        .section-title {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 3rem;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--gradient-accent);
            border-radius: 2px;
        }

        .section-title.text-center::after {
            left: 50%;
            transform: translateX(-50%);
        }

        /* Animation Keyframes */
        @keyframes pulseBackground {
            0%, 100% {
                transform: scale(1);
                opacity: 0.8;
            }
            50% {
                transform: scale(1.15);
                opacity: 1;
            }
        }

        @keyframes pulseHeight {
            0%, 100% {
                transform: scaleY(1);
            }
            50% {
                transform: scaleY(1.2);
            }
        }

        @keyframes float {
            0%, 100% { transform: translateY(-50%) rotate(0deg); }
            50% { transform: translateY(-60%) rotate(3deg); }
        }

        .about-div {
            width: 220px;
            height: 350px;
            background-color: #E6F1FF;
            position: absolute;
            top: 0;
            left: 60%;
            transform: translate(-50%, -50%);
            z-index: 1;
            animation: pulseBackground 3s infinite ease-in-out;
            border-radius: 20px;
        }

        .about-image {
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .about-image img {
            border-radius: 20px;
            box-shadow: var(--shadow-heavy);
            transition: transform 0.3s ease;
        }

        .about-image img:hover {
            transform: scale(1.05);
        }

        .about-div-2.animated-circle {
            background-color: #E6F1FF;
            width: 300px;
            height: 350px;
            position: absolute;
            top: 0;
            left: 0px;
            z-index: -1;
            animation: pulseHeight 3s ease-in-out infinite;
            opacity: 1;
            border-radius: 20px;
        }

        /* Enhanced Stats Section */
        .stats-section {
            background: var(--gradient-primary);
            padding: 4rem 0;
            position: relative;
        }

        .stats-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            opacity: 0.3;
        }

        .stat-box {
            text-align: center;
            padding: 2rem;
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
            position: relative;
        }

        .stat-box:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.15);
            box-shadow: var(--shadow-heavy);
        }

        .stat-box h3 {
            font-size: 3.5rem;
            font-weight: 900;
            color: var(--white);
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .stat-box p {
            color: rgba(255, 255, 255, 0.9);
            font-weight: 600;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .text-warning {
            color: var(--white) !important;
        }

        /* Enhanced Values Section */
        .values-section {
            padding: 6rem 0;
            background: var(--light-gray);
        }

        .value-card {
            background: var(--white);
            padding: 3rem 2rem;
            border-radius: 20px;
            text-align: center;
            box-shadow: var(--shadow-light);
            transition: all 0.3s ease;
            height: 100%;
            border: 1px solid rgba(36, 75, 111, 0.1);
        }

        .value-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-heavy);
            border-color: var(--primary-color);
        }

        .value-icon-wrapper {
            width: 100px;
            height: 100px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            color: var(--white);
            font-size: 2.5rem;
            box-shadow: var(--shadow-medium);
            transition: all 0.3s ease;
        }

        .value-card:hover .value-icon-wrapper {
            background: var(--gradient-accent);
            transform: scale(1.1) rotate(5deg);
        }

        .value-card h5 {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        .value-card p {
            font-size: 1rem;
            color: var(--dark-gray);
            line-height: 1.6;
        }

        /* Enhanced Contact Section */
        .contact-plumber-section {
            background: var(--white);
        }

        .contact-plumber-info-box {
            background: var(--secondary-color);
            padding: 1.5rem;
            border-radius: 15px;
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
            transition: all 0.3s ease;
            border: 1px solid rgba(36, 75, 111, 0.1);
        }

        .contact-plumber-info-box:hover {
            background: var(--primary-color);
            transform: translateY(-3px);
            box-shadow: var(--shadow-medium);
        }

        .contact-plumber-info-box:hover i {
            color: var(--white);
        }

        .contact-plumber-info-box:hover .label,
        .contact-plumber-info-box:hover .value {
            color: var(--white);
        }

        .contact-plumber-info-box i {
            font-size: 2rem;
            color: var(--primary-color);
            transition: all 0.3s ease;
        }

        .contact-plumber-info-box .label {
            color: var(--dark-gray);
            font-size: 0.9rem;
            font-weight: 500;
        }

        .contact-plumber-info-box .value {
            color: var(--primary-color);
            font-weight: 700;
            font-size: 1.1rem;
        }

        .cta-bottom-bar {
            background: var(--gradient-primary);
            padding: 3rem 0;
            margin-top: 3rem;
            position: relative;
            overflow: hidden;
        }

        .cta-bottom-bar::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 70% 30%, rgba(245, 147, 64, 0.2) 0%, transparent 50%);
        }

        .cta-bottom-bar h3 {
            color: var(--white);
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 0;
        }

        .btn-make-appointment {
            background: var(--white);
            color: var(--primary-color);
            font-weight: 700;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            box-shadow: var(--shadow-light);
        }

        .btn-make-appointment:hover {
            background: var(--accent-color);
            color: var(--white);
            transform: translateY(-3px);
            box-shadow: var(--shadow-medium);
        }

     
        /* Enhanced Scroll to Top */
        .scroll-to-top {
            position: fixed;
            bottom: 100px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: var(--gradient-primary);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 1.2rem;
            box-shadow: var(--shadow-medium);
            opacity: 0;
            visibility: hidden;
            transform: translateY(100px);
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .scroll-to-top.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .scroll-to-top:hover {
            background: var(--gradient-accent);
            transform: translateY(-5px);
            box-shadow: var(--shadow-heavy);
            color: var(--white);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .banner-content h1 {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .about-div, .about-div-2 {
                width: 200px;
                height: 250px;
            }
            
            .stat-box h3 {
                font-size: 2.5rem;
            }
            
            .contact-info {
                flex-direction: column;
                gap: 1rem;
            }

            .display-1 { font-size: 2.5rem; }
            .display-2 { font-size: 2rem; }
            .display-3 { font-size: 1.8rem; }
            .display-4 { font-size: 1.5rem; }
        }

        @media (max-width: 576px) {
            .banner-content h1 {
                font-size: 2rem;
            }
            
            .btn {
                padding: 0.6rem 1.5rem;
                font-size: 0.8rem;
            }
            
            .value-icon-wrapper {
                width: 80px;
                height: 80px;
                font-size: 2rem;
            }
        }

        /* Additional Utility Classes */
        .text-gradient {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .text-accent {
            color: var(--accent-color) !important;
        }

        .bg-gradient-primary {
            background: var(--gradient-primary) !important;
        }

        .bg-gradient-accent {
            background: var(--gradient-accent) !important;
        }

        .shadow-custom {
            box-shadow: var(--shadow-medium) !important;
        }
        
        /***social icons ***/
             
     .social-icons .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: #244B6F; /* Updated to new primary color */
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 18px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-icons .social-icon:hover {
   
    transform: scale(1.1);
}
  /*****blog ****/
  
  
    

        /* Enhanced Typography */
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        .display-1 { font-size: 4.5rem; font-weight: 800; }
        .display-2 { font-size: 3.5rem; font-weight: 700; }
        .display-3 { font-size: 2.8rem; font-weight: 700; }
        .display-4 { font-size: 2.2rem; font-weight: 600; }

        p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--dark-gray);
        }

        /* Enhanced Buttons */
        .btn {
            font-weight: 600;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 0.9rem;
            border: none;
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn-primary {
            background: var(--gradient-primary);
            color: var(--white);
            box-shadow: var(--shadow-light);
        }

        .btn-primary:hover {
            background: var(--gradient-primary);
            transform: translateY(-2px);
            box-shadow: var(--shadow-medium);
        }

        .btn-warning {
            background: var(--gradient-accent);
            color: var(--white);
            box-shadow: var(--shadow-light);
        }

        .btn-warning:hover {
            background: var(--gradient-accent);
            transform: translateY(-2px);
            box-shadow: var(--shadow-medium);
            color: var(--white);
        }

        .btn-outline-light {
            border: 2px solid var(--white);
            color: var(--white);
            background: transparent;
        }

        .btn-outline-light:hover {
            background: var(--white);
            color: var(--primary-color);
            transform: translateY(-2px);
        }

        /* Enhanced Header */
        .top-header {
            background: var(--white);
            border-bottom: 1px solid var(--secondary-color);
            box-shadow: var(--shadow-light);
            position: relative;
            overflow: hidden;
        }

        .top-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gradient-primary);
        }

        .logo img {
            height: 70px;
            transition: transform 0.3s ease;
            filter: drop-shadow(0 2px 8px rgba(0,0,0,0.1));
        }

        .logo img:hover {
            transform: scale(1.05);
        }

        .contact-info {
            display: flex;
            gap: 2rem;
        }

        .contact-info > div {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 0.5rem 1rem;
            border-radius: 15px;
            background: rgba(36, 75, 111, 0.05);
            transition: all 0.3s ease;
        }

        .contact-info > div:hover {
            background: var(--secondary-color);
            transform: translateY(-2px);
        }

        .contact-info i {
            font-size: 1.5rem;
            color: var(--primary-color);
            background: var(--secondary-color);
            padding: 0.8rem;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .contact-info i:hover {
            background: var(--primary-color);
            color: var(--white);
            transform: scale(1.1);
        }

        .contact-info .label {
            font-size: 0.9rem;
            color: var(--dark-gray);
            font-weight: 500;
        }

        .contact-info .value {
            font-size: 1rem;
            color: var(--primary-color);
            font-weight: 700;
        }

        /* Enhanced Navigation */
        .main-navbar {
            background: var(--white);
            box-shadow: var(--shadow-light);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .main-navbar.scrolled {
            padding: 0.5rem 0;
            box-shadow: var(--shadow-medium);
        }

        .navbar-nav .nav-link {
            color: var(--primary-color);
            font-weight: 500;
            padding: 0.5rem 1rem;
            margin: 0 0.2rem;
            border-radius: 25px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 0.9rem;
            position: relative;
        }

        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--gradient-primary);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .navbar-nav .nav-link:hover {
            background: var(--secondary-color);
            color: var(--primary-dark);
            transform: translateY(-2px);
        }

        .navbar-nav .nav-link:hover::after {
            width: 80%;
        }

        /* Enhanced Hero Section */
        .hero-banner {
            background: linear-gradient(135deg, rgba(36, 75, 111, 0.9) 0%, rgba(26, 57, 82, 0.9) 100%), url('https://images.pexels.com/photos/261662/pexels-photo-261662.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1') center/cover no-repeat;
            min-height: 60vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 50%, rgba(245, 147, 64, 0.1) 0%, transparent 50%);
        }

        .banner-content {
            z-index: 2;
            position: relative;
        }

        .banner-content h1 {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .banner-content p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2rem;
            max-width: 600px;
        }

        /* Blog Section */
        .blog-section {
            padding: 6rem 0;
            background: linear-gradient(135deg, var(--secondary-color) 0%, white 100%);
        }

        .section-title {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 3rem;
            position: relative;
            text-align: center;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: var(--gradient-accent);
            border-radius: 2px;
        }

        /* Blog Cards */
        .blog-card {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-light);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            position: relative;
            border: 1px solid rgba(36, 75, 111, 0.1);
            height: 100%;
        }

        .blog-card:hover {
            transform: translateY(-15px) scale(1.03);
            box-shadow: var(--shadow-heavy);
            border-color: var(--primary-color);
        }

        .blog-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s ease;
        }

        .blog-card:hover .blog-image img {
            transform: scale(1.15);
        }

        .blog-content {
            padding: 2rem;
        }

        .blog-meta {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
            font-size: 0.9rem;
            color: var(--dark-gray);
        }

        .blog-category {
            background: var(--secondary-color);
            color: var(--primary-color);
            padding: 0.3rem 1rem;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .blog-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 1rem;
            line-height: 1.3;
        }

        .blog-excerpt {
            color: var(--dark-gray);
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .blog-author {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding-top: 1rem;
            border-top: 1px solid var(--secondary-color);
        }

        .author-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--gradient-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-weight: 600;
        }

        .author-info h6 {
            margin: 0;
            color: var(--primary-color);
            font-size: 0.9rem;
        }

        .author-info small {
            color: var(--dark-gray);
            font-size: 0.8rem;
        }

        .read-more-btn {
            background: var(--gradient-primary);
            color: var(--white);
            padding: 0.5rem 1.5rem;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            display: inline-block;
            margin-top: 1rem;
        }

        .read-more-btn:hover {
            background: var(--gradient-accent);
            transform: translateY(-2px);
            color: var(--white);
            box-shadow: var(--shadow-medium);
        }

        /* Enhanced Sidebar Styles */
        .sidebar-widget {
            background: var(--white);
            border-radius: 25px;
            padding: 2.5rem;
            margin-bottom: 2.5rem;
            box-shadow: var(--shadow-light);
            border: 1px solid rgba(36, 75, 111, 0.08);
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .sidebar-widget:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-medium);
        }

        .sidebar-widget::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-primary);
            border-radius: 25px 25px 0 0;
        }

        .widget-header {
            margin-bottom: 2rem;
            position: relative;
        }

        .widget-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary-color);
            margin: 0;
            display: flex;
            align-items: center;
            gap: 0.8rem;
            position: relative;
            padding-bottom: 1rem;
        }

        .widget-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--gradient-accent);
            border-radius: 2px;
        }

        .widget-title i {
            font-size: 1.2rem;
            color: var(--accent-color);
        }

        /* Enhanced Search Widget */
        .search-form {
            position: relative;
        }

        .search-input-group {
            position: relative;
            display: flex;
            align-items: center;
            background: var(--light-gray);
            border-radius: 50px;
            padding: 0.5rem;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .search-input-group:focus-within {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(36, 75, 111, 0.1);
        }

        .search-input {
            flex: 1;
            border: none;
            background: transparent;
            padding: 0.8rem 1.2rem;
            font-size: 1rem;
            color: var(--black);
            outline: none;
        }

        .search-input::placeholder {
            color: var(--dark-gray);
        }

        .search-button {
            background: var(--gradient-primary);
            border: none;
            color: var(--white);
            width: 65px;
            height: 55px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .search-button:hover {
            background: var(--gradient-accent);
            transform: scale(1.1);
        }

        /* Enhanced Recent Posts */
        .recent-posts-list {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .recent-post-item {
            display: flex;
            gap: 1rem;
            padding: 1rem;
            border-radius: 15px;
            background: rgba(36, 75, 111, 0.02);
            transition: all 0.3s ease;
            cursor: pointer;
            border: 1px solid rgba(36, 75, 111, 0.05);
        }

        .recent-post-item:hover {
            background: var(--secondary-color);
            transform: translateX(5px);
            box-shadow: 0 5px 15px rgba(36, 75, 111, 0.1);
        }

        .recent-post-image {
            width: 80px;
            height: 80px;
            border-radius: 12px;
            overflow: hidden;
            flex-shrink: 0;
            position: relative;
        }

        .post-thumbnail {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .recent-post-item:hover .post-thumbnail {
            transform: scale(1.1);
        }

        .recent-post-content {
            flex: 1;
        }

        .recent-post-title {
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
            line-height: 1.3;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .recent-post-meta {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--dark-gray);
            font-size: 0.8rem;
        }

        .recent-post-meta i {
            color: var(--accent-color);
        }

        .post-date {
            font-weight: 500;
        }

        /* Enhanced Categories */
        .categories-list {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

        .category-item {
            display: flex;
            justify-content: between;
            align-items: center;
            padding: 1rem 1.2rem;
            background: rgba(36, 75, 111, 0.02);
            border-radius: 12px;
            transition: all 0.3s ease;
            cursor: pointer;
            border: 1px solid rgba(36, 75, 111, 0.05);
        }

        .category-item:hover {
            background: var(--secondary-color);
            transform: translateX(5px);
            box-shadow: 0 5px 15px rgba(36, 75, 111, 0.1);
        }

        .category-name {
            font-weight: 600;
            color: var(--primary-color);
            flex: 1;
        }

        .category-count {
            background: var(--primary-color);
            color: var(--white);
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        /* Enhanced Tags */
        .tags-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
        }

        .tag-button {
            background: var(--secondary-color);
            color: var(--primary-color);
            padding: 0.6rem 1.2rem;
            border-radius: 25px;
            border: none;
            font-size: 0.85rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .tag-button:hover {
            background: var(--primary-color);
            color: var(--white);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(36, 75, 111, 0.3);
        }

        .tag-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .tag-button:hover::before {
            left: 100%;
        }

       
        /* Responsive Design */
        @media (max-width: 768px) {
            .banner-content h1 {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }

            .contact-info {
                flex-direction: column;
                gap: 1rem;
            }

            .display-1 { font-size: 2.5rem; }
            .display-2 { font-size: 2rem; }
            .display-3 { font-size: 1.8rem; }
            .display-4 { font-size: 1.5rem; }

            .footer-container {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .footer-column {
                margin-bottom: 30px;
            }

            .social-icons {
                justify-content: center;
            }

            .sidebar-widget {
                padding: 1.5rem;
                margin-bottom: 1.5rem;
            }

            .widget-title {
                font-size: 1.1rem;
            }
        }

        @media (max-width: 576px) {
            .banner-content h1 {
                font-size: 2rem;
            }
            
            .btn {
                padding: 0.6rem 1.5rem;
                font-size: 0.8rem;
            }
        }
   

/****gallery****/
    
 
  
        /* Enhanced Typography */
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        .display-1 { font-size: 4.5rem; font-weight: 800; }
        .display-2 { font-size: 3.5rem; font-weight: 700; }
        .display-3 { font-size: 2.8rem; font-weight: 700; }
        .display-4 { font-size: 2.2rem; font-weight: 600; }

        p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--dark-gray);
        }

        /* Enhanced Buttons */
        .btn {
            font-weight: 600;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 0.9rem;
            border: none;
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn-primary {
            background: var(--gradient-primary);
            color: var(--white);
            box-shadow: var(--shadow-light);
        }

        .btn-primary:hover {
            background: var(--gradient-primary);
            transform: translateY(-2px);
            box-shadow: var(--shadow-medium);
        }

        .btn-warning {
            background: var(--gradient-accent);
            color: var(--white);
            box-shadow: var(--shadow-light);
        }

        .btn-warning:hover {
            background: var(--gradient-accent);
            transform: translateY(-2px);
            box-shadow: var(--shadow-medium);
            color: var(--white);
        }

        .btn-outline-light {
            border: 2px solid var(--white);
            color: var(--white);
            background: transparent;
        }

        .btn-outline-light:hover {
            background: var(--white);
            color: var(--primary-color);
            transform: translateY(-2px);
        }

        /* Enhanced Header */
        .top-header {
            background: var(--white);
            border-bottom: 1px solid var(--secondary-color);
            box-shadow: var(--shadow-light);
            position: relative;
            overflow: hidden;
        }

        .top-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gradient-primary);
        }

        .logo img {
            height: 70px;
            transition: transform 0.3s ease;
            filter: drop-shadow(0 2px 8px rgba(0,0,0,0.1));
        }

        .logo img:hover {
            transform: scale(1.05);
        }

        .contact-info {
            display: flex;
            gap: 2rem;
        }

        .contact-info > div {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 0.5rem 1rem;
            border-radius: 15px;
            background: rgba(36, 75, 111, 0.05);
            transition: all 0.3s ease;
        }

        .contact-info > div:hover {
            background: var(--secondary-color);
            transform: translateY(-2px);
        }

        .contact-info i {
            font-size: 1.5rem;
            color: var(--primary-color);
            background: var(--secondary-color);
            padding: 0.8rem;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .contact-info i:hover {
            background: var(--primary-color);
            color: var(--white);
            transform: scale(1.1);
        }

        .contact-info .label {
            font-size: 0.9rem;
            color: var(--dark-gray);
            font-weight: 500;
        }

        .contact-info .value {
            font-size: 1rem;
            color: var(--primary-color);
            font-weight: 700;
        }

        /* Enhanced Navigation */
        .main-navbar {
            background: var(--white);
            box-shadow: var(--shadow-light);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .main-navbar.scrolled {
            padding: 0.5rem 0;
            box-shadow: var(--shadow-medium);
        }

        .navbar-nav .nav-link {
            color: var(--primary-color);
            font-weight: 500;
            padding: 0.5rem 1rem;
            margin: 0 0.2rem;
            border-radius: 25px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 0.9rem;
            position: relative;
        }

        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--gradient-primary);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .navbar-nav .nav-link:hover {
            background: var(--secondary-color);
            color: var(--primary-dark);
            transform: translateY(-2px);
        }

        .navbar-nav .nav-link:hover::after {
            width: 80%;
        }

        .search-bar {
            background: var(--secondary-color);
            border: none;
            border-radius: 30px;
            padding: 0.5rem 1rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .search-bar::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s;
        }

        .search-bar:focus-within {
            box-shadow: var(--shadow-medium);
            transform: scale(1.05);
        }

        .search-bar:focus-within::before {
            left: 100%;
        }

        .search-bar input {
            background: transparent;
            border: none;
            color: var(--primary-color);
        }

        .search-bar input::placeholder {
            color: var(--dark-gray);
        }

        .search-bar i {
            color: var(--primary-color);
        }

        /* Enhanced Hero Section */
        .hero-banner {
            background: linear-gradient(135deg, rgba(36, 75, 111, 0.9) 0%, rgba(26, 58, 92, 0.9) 100%), url('https://assets-news.housing.com/news/wp-content/uploads/2022/10/14181532/PLUMBING-MATERIAL-FEATURE-compressed.jpg') center/cover no-repeat;
            min-height: 60vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 50%, rgba(245, 147, 64, 0.1) 0%, transparent 50%);
        }

        .banner-content {
            z-index: 2;
            position: relative;
        }

        .banner-content h1 {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .banner-content p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2rem;
            max-width: 600px;
        }

        /* Gallery Section */
        .gallery-section {
            padding: 6rem 0;
            background: linear-gradient(135deg, var(--secondary-color) 0%, white 100%);
        }

        .section-title {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 3rem;
            position: relative;
            text-align: center;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 7%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: var(--gradient-accent);
            border-radius: 2px;
        }

        /* Filter Buttons */
        .filter-container {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 4rem;
        }

        .filter-btn {
            background: var(--white);
            color:#f6913b;
            border: 2px solid var(--primary-color);
            padding: 0.75rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 0.9rem;
        }

        .filter-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--gradient-primary);
            transition: left 0.3s ease;
            z-index: 0;
        }

        .filter-btn span {
            position: relative;
            z-index: 1;
        }

        .filter-btn:hover::before,
        .filter-btn.active::before {
            left: 0;
        }

        .filter-btn:hover,
        .filter-btn.active {
            color: var(--white);
            transform: translateY(-3px);
            box-shadow: var(--shadow-medium);
        }

        /* Gallery Grid */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        @media (max-width: 768px) {
            .gallery-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
        }

        /* Gallery Cards */
        .gallery-card {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-light);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            position: relative;
            opacity: 0;
            transform: translateY(50px);
            border: 1px solid rgba(36, 75, 111, 0.1);
        }

        .gallery-card.animate-in {
            opacity: 1;
            transform: translateY(0);
        }

        .gallery-card:hover {
            transform: translateY(-15px) scale(1.03);
            box-shadow: var(--shadow-heavy);
            border-color: var(--primary-color);
        }

        .card-image {
            position: relative;
            height: 300px;
            overflow: hidden;
        }

        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s ease;
        }

        .gallery-card:hover .card-image img {
            transform: scale(1.15) rotate(2deg);
        }

        .card-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--gradient-overlay);
            opacity: 0;
            transition: all 0.4s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .gallery-card:hover .card-overlay {
            opacity: 1;
        }

        .overlay-content {
            text-align: center;
            color: var(--white);
            transform: translateY(30px) scale(0.8);
            transition: all 0.4s ease;
        }

        .gallery-card:hover .overlay-content {
            transform: translateY(0) scale(1);
        }

        .overlay-icon {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            animation: pulse 2s infinite;
        }

        .overlay-text {
            font-size: 1.3rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Compact Lightbox Styles */
        .lightbox {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            padding: 20px;
        }

        .lightbox.active {
            opacity: 1;
            visibility: visible;
        }

        .lightbox-content {
            position: relative;
            max-width: 50vw;
            max-height: 50vh;
            transition: transform 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .lightbox.active .lightbox-content {
            transform: scale(1);
        }

        .lightbox-image {
            max-width: 90%;
            max-height: 80%;
            object-fit: contain;
            border-radius: 15px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
        }

        .lightbox-close {
            position: absolute;
            top: -10px;
            right: 200px;
            background: var(--primary-color);
            color: var(--white);
            border: none;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            font-size: 1.3rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            opacity:0;
            justify-content: center;
            z-index: 10000;
            box-shadow: var(--shadow-medium);
        }

        /*.lightbox-close:hover {*/
        /*    background: var(--primary-dark);*/
        /*    transform: scale(1.1);*/
        /*    box-shadow: var(--shadow-heavy);*/
        /*}*/

        .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: var(--primary-color);
            color: var(--white);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10000;
            box-shadow: var(--shadow-medium);
        }

        .lightbox-nav:hover {
            background: var(--primary-dark);
            transform: translateY(-50%) scale(1.1);
            box-shadow: var(--shadow-heavy);
        }

        .lightbox-prev {
            left: -70px;
        }

        .lightbox-next {
            right: -70px;
        }

        .lightbox-counter {
            position: absolute;
            bottom: -50px;
            left: 50%;
            transform: translateX(-50%);
            color: var(--white);
            font-size: 1.1rem;
            font-weight: 600;
            background: rgba(36, 75, 111, 0.9);
            padding: 8px 20px;
            border-radius: 25px;
            z-index: 10000;
            box-shadow: var(--shadow-medium);
        }

        /* Mobile Responsive for Lightbox */
        @media (max-width: 768px) {
            .lightbox-content {
                max-width: 85vw;
                max-height: 60vh;
            }

            .lightbox-close {
                top: -40px;
                right: -5px;
                width: 40px;
                height: 40px;
                font-size: 1.1rem;
            }

            .lightbox-nav {
                width: 45px;
                height: 45px;
                font-size: 1.3rem;
            }

            .lightbox-prev {
                left: -55px;
            }

            .lightbox-next {
                right: -55px;
            }

            .lightbox-counter {
                bottom: -40px;
                font-size: 1rem;
                padding: 6px 16px;
            }
        }

        @media (max-width: 480px) {
            .lightbox-content {
                max-width: 90vw;
                max-height: 50vh;
            }

            .lightbox-close {
                top: -35px;
                right: 0;
                width: 35px;
                height: 35px;
                font-size: 1rem;
            }

            .lightbox-nav {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }

            .lightbox-prev {
                left: -5px;
            }

            .lightbox-next {
                right: -5px;
            }

            .lightbox-counter {
                bottom: -35px;
                font-size: 0.9rem;
                padding: 5px 12px;
            }
        }

         

        @media (max-width: 768px) {
            .footer-container {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .footer-column {
                margin-bottom: 30px;
            }

            .social-icons {
                justify-content: center;
            }
        }

        /* Scroll to Top */
        .scroll-to-top {
            position: fixed;
            bottom: 100px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: var(--gradient-primary);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 1.2rem;
            box-shadow: var(--shadow-medium);
            opacity: 0;
            visibility: hidden;
            transform: translateY(100px);
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .scroll-to-top.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .scroll-to-top:hover {
            background: var(--gradient-accent);
            transform: translateY(-5px);
            box-shadow: var(--shadow-heavy);
            color: var(--white);
        }

        /* Animations */
        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.1);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-fade-in {
            animation: fadeInUp 0.8s ease-out;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .banner-content h1 {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .filter-container {
                gap: 0.5rem;
            }
            
            .filter-btn {
                padding: 0.5rem 1rem;
                font-size: 0.8rem;
            }

            .contact-info {
                flex-direction: column;
                gap: 1rem;
            }

            .display-1 { font-size: 2.5rem; }
            .display-2 { font-size: 2rem; }
            .display-3 { font-size: 1.8rem; }
            .display-4 { font-size: 1.5rem; }
        }

        @media (max-width: 576px) {
            .banner-content h1 {
                font-size: 2rem;
            }
            
            .btn {
                padding: 0.6rem 1.5rem;
                font-size: 0.8rem;
            }
        }

        .social-icons .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background-color: #244B6F;
            color: white;
            border-radius: 50%;
            text-decoration: none;
            font-size: 18px;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }

        .social-icons .social-icon:hover {
            background-color: var(--accent-color);
            transform: scale(1.1);
        }

/****contact us *****/

     

  

/****boiler maintenance 
   
        /* Enhanced Typography */
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        h1 { font-size: 2.5rem; }
        h2 { font-size: 1.8rem; }
        h3 { font-size: 1.5rem; }
        h4 { font-size: 1.3rem; }
        h5 { font-size: 1.1rem; }

        p {
            font-size: 1rem;
            line-height: 1.6;
            color: var(--dark-gray);
        }

        /* Enhanced Buttons */
        .btn {
            font-weight: 600;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 0.9rem;
            border: none;
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn-primary {
            background: var(--gradient-primary);
            color: var(--white);
            box-shadow: var(--shadow-light);
        }

        .btn-primary:hover {
            background: var(--gradient-primary);
            transform: translateY(-2px);
            box-shadow: var(--shadow-medium);
        }

        .btn-warning {
            background: var(--gradient-accent);
            color: var(--white);
            box-shadow: var(--shadow-light);
        }

        .btn-warning:hover {
            background: var(--gradient-accent);
            transform: translateY(-2px);
            box-shadow: var(--shadow-medium);
            color: var(--white);
        }

        .btn-outline-light {
            border: 2px solid var(--white);
            color: var(--white);
            background: transparent;
        }

        .btn-outline-light:hover {
            background: var(--white);
            color: var(--primary-color);
            transform: translateY(-2px);
        }

        /* Enhanced Header */
        .top-header {
            background: var(--white);
            border-bottom: 1px solid var(--secondary-color);
            box-shadow: var(--shadow-light);
            position: relative;
            overflow: hidden;
        }

        .top-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gradient-primary);
        }

        .logo img {
            height: 70px;
            transition: transform 0.3s ease;
            filter: drop-shadow(0 2px 8px rgba(0,0,0,0.1));
        }

        .logo img:hover {
            transform: scale(1.05);
        }

        .contact-info {
            display: flex;
            gap: 2rem;
        }

        .contact-info > div {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 0.5rem 1rem;
            border-radius: 15px;
            background: rgba(36, 75, 111, 0.05);
            transition: all 0.3s ease;
        }

        .contact-info > div:hover {
            background: var(--secondary-color);
            transform: translateY(-2px);
        }

        .contact-info i {
            font-size: 1.5rem;
            color: var(--primary-color);
            background: var(--secondary-color);
            padding: 0.8rem;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .contact-info i:hover {
            background: var(--primary-color);
            color: var(--white);
            transform: scale(1.1);
        }

        .contact-info .label {
            font-size: 0.9rem;
            color: var(--dark-gray);
            font-weight: 500;
        }

        .contact-info .value {
            font-size: 1rem;
            color: var(--primary-color);
            font-weight: 700;
        }

        /* Enhanced Navigation */
        .main-navbar {
            background: var(--white);
            box-shadow: var(--shadow-light);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .main-navbar.scrolled {
            padding: 0.5rem 0;
            box-shadow: var(--shadow-medium);
        }

        .navbar-nav .nav-link {
            color: var(--primary-color);
            font-weight: 500;
            padding: 0.5rem 1rem;
            margin: 0 0.2rem;
            border-radius: 25px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 0.9rem;
            position: relative;
        }

        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--gradient-primary);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .navbar-nav .nav-link:hover {
            background: var(--secondary-color);
            color: var(--primary-dark);
            transform: translateY(-2px);
        }

        .navbar-nav .nav-link:hover::after {
            width: 80%;
        }

        /* Social Icons */
        .social-icons .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background-color: #244B6F;
            color: white;
            border-radius: 50%;
            text-decoration: none;
            font-size: 18px;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }

        .social-icons .social-icon:hover {
            transform: scale(1.1);
        }

        /* Enhanced Hero Section */
        .hero-banner {
            background: linear-gradient(135deg, rgba(36, 75, 111, 0.9) 0%, rgba(26, 57, 82, 0.9) 100%), url('https://images.pexels.com/photos/5691659/pexels-photo-5691659.jpeg?auto=compress&cs=tinysrgb&w=1920&h=1080') center/cover no-repeat;
            min-height: 80vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 50%, rgba(245, 147, 64, 0.1) 0%, transparent 50%);
        }

        .banner-content {
            z-index: 2;
            position: relative;
        }

        .banner-content h1 {
            font-size: 3rem;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .banner-content p {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2rem;
            max-width: 600px;
        }

        /* Appointment Form */
        .appointment-form {
            background: var(--white);
            padding: 2rem;
            border-radius: 20px;
            box-shadow: var(--shadow-heavy);
            position: relative;
            z-index: 3;
            border: 1px solid rgba(36, 75, 111, 0.1);
        }

        .appointment-form h2 {
            color: var(--primary-color);
            text-align: center;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }

        .appointment-form span {
            color: var(--accent-color);
        }

        .form-control, .form-select {
            border: 2px solid var(--secondary-color);
            border-radius: 15px;
            padding: 0.8rem 1rem;
            transition: all 0.3s ease;
            font-size: 0.9rem;
            background: var(--light-gray);
        }

        .form-control:focus, .form-select:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(36, 75, 111, 0.15);
            background: var(--white);
            transform: translateY(-2px);
        }

        /* Equal Height Containers */
        .equal-height-container {
            display: flex;
            align-items: stretch;
        }

        .equal-height-container .col-lg-6,
        .equal-height-container .col-lg-7,
        .equal-height-container .col-lg-5 {
            display: flex;
            flex-direction: column;
        }

        .service-content {
            padding: 6rem 0;
            position: relative;
        }

        .service-section {
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .service-section h2 {
            color: var(--primary-color);
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            position: relative;
        }

        .service-section h2::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--gradient-accent);
            border-radius: 2px;
        }

        .service-section p {
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            color: var(--dark-gray);
        }

        .service-section ul {
            list-style: none;
            padding: 0;
        }

        .service-section ul li {
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 0.8rem;
            background: var(--white);
            border-radius: 12px;
            box-shadow: var(--shadow-light);
            transition: all 0.3s ease;
        }

        .service-section ul li:hover {
            transform: translateX(8px);
            box-shadow: var(--shadow-medium);
        }

        .service-section ul li i {
            color: var(--accent-color);
            font-size: 1.2rem;
            background: var(--secondary-color);
            padding: 0.8rem;
            border-radius: 50%;
            min-width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Service Images */
        .service-image {
            border-radius: 20px;
            overflow: hidden;
          
            transition: all 0.3s ease;
            position: relative;
            height: 100%;
            display: flex;
            align-items: center;
        }

        .service-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--gradient-primary);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 1;
        }

       
       
        .service-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .service-image:hover img {
            transform: scale(1.05);
        }

        /* Service Cards Slider */
        .service-card {
            background: var(--white);
            border-radius: 20px;
            padding: 2rem 1.5rem;
            margin: 1rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(36, 75, 111, 0.1);
            box-shadow: var(--shadow-light);
            height: 450px;
            display: flex;
            flex-direction: column;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-accent);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-heavy);
        }

        .service-card-image {
            width: 100%;
            height: 200px;
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 1.5rem;
        }

        .service-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .service-card:hover .service-card-image img {
            transform: scale(1.1);
        }

        .service-card h5 {
            color: var(--primary-color);
            font-size: 1.2rem;
            margin-bottom: 1rem;
            text-align: center;
            font-weight: 700;
        }

        .service-card p {
            text-align: center;
            margin-bottom: 1.5rem;
            color: var(--dark-gray);
            font-size: 0.9rem;
            flex-grow: 1;
        }

        .service-card .btn {
            background: var(--gradient-accent);
            color: white;
            padding: 0.6rem 1.5rem;
            border-radius: 25px;
            text-decoration: none;
            transition: all 0.3s ease;
            display: block;
            text-align: center;
            width: fit-content;
            margin: 0 auto;
            font-weight: 600;
            font-size: 0.8rem;
        }

        .service-card .btn:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-medium);
        }

        /* FAQ Section */
        .faq-section {
            padding: 6rem 0;
            background: var(--light-gray);
            position: relative;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }
        
         .section-title1 {
            text-align: center;
            font-weight:bold;
            margin-top:-20px;
            color:#1D3F5C;
            margin-bottom: 3rem;
        }

        .section-title h4 {
            color: var(--accent-color);
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
        }

        .section-title h2 {
            color: var(--primary-color);
            font-size: 2.2rem;
            font-weight: 800;
        }

        .accordion-item {
            border: none;
            border-radius: 15px !important;
            margin-bottom: 1rem;
            overflow: hidden;
            box-shadow: var(--shadow-light);
            transition: all 0.3s ease;
        }

        .accordion-item:hover {
            box-shadow: var(--shadow-medium);
        }

        .accordion-button {
            background: var(--white);
            color: var(--primary-color);
            font-weight: 600;
            font-size: 1rem;
            border: none;
            border-radius: 15px !important;
            padding: 1.5rem;
            transition: all 0.3s ease;
            position: relative;
        }

        .accordion-button::after {
            background-image: none;
            content: '\f067';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            color: var(--accent-color);
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .accordion-button:not(.collapsed)::after {
            content: '\f068';
            transform: rotate(0deg);
        }

        .accordion-button:not(.collapsed) {
            background: var(--gradient-primary);
            color: var(--white);
            box-shadow: none;
        }

        .accordion-button:not(.collapsed)::after {
            color: var(--white);
        }

        .accordion-button:focus {
            box-shadow: none;
            border: none;
        }

        .accordion-body {
            padding: 1.5rem;
            background: var(--secondary-color);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* Reviews Section */
        .reviews-section {
            padding: 6rem 0;
            background: var(--white);
        }

        .review-card {
            background: var(--white);
            border: 1px solid rgba(36, 75, 111, 0.1);
            border-radius: 20px;
            padding: 2rem;
            margin: 1rem;
            transition: all 0.3s ease;
            position: relative;
            box-shadow: var(--shadow-light);
            height: 340px;
            display: flex;
            flex-direction: column;
        }

        .review-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, var(--secondary-color) 0%, var(--white) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
            border-radius: 20px;
        }

        .review-card:hover::before {
            opacity: 1;
        }

        .review-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-heavy);
        }

        .review-card h5 {
            color: var(--primary-color);
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            font-weight: 700;
            position: relative;
            z-index: 1;
        }

        .review-card .stars {
            color: #FFD700;
            margin: 1rem 0;
            font-size: 1rem;
            position: relative;
            z-index: 1;
        }

        .review-card .google-icon {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            width: 35px;
            height: 35px;
            background: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-light);
        }

        .review-card p {
            position: relative;
            z-index: 1;
            font-style: italic;
            font-size: 0.9rem;
            flex-grow: 1;
            display: flex;
            align-items: center;
        }

        /* Owl Carousel Styling */
        .owl-nav .owl-prev,
        .owl-nav .owl-next {
            background: var(--gradient-primary) !important;
            color: white !important;
            border-radius: 50% !important;
            width: 50px !important;
            height: 50px !important;
            line-height: 50px !important;
            font-size: 2rem !important;
            margin: 0 10px !important;
            transition: all 0.3s ease !important;
            box-shadow: var(--shadow-medium) !important;
        }

        .owl-nav .owl-prev:hover,
        .owl-nav .owl-next:hover {
            background: var(--gradient-accent) !important;
            transform: scale(1.1) !important;
            box-shadow: var(--shadow-heavy) !important;
        }

        .owl-dots {
            text-align: center;
            margin-top: 2rem;
            display:hidden;
        }

        .owl-dots .owl-dot {
            margin: 0 5px;
        }

        .owl-dots .owl-dot span {
            background: var(--primary-color) !important;
            width: 10px !important;
            height: 10px !important;
            border-radius: 50% !important;
            transition: all 0.3s ease !important;
        }

        .owl-dots .owl-dot.active span,
        .owl-dots .owl-dot:hover span {
            background: var(--accent-color) !important;
            transform: scale(1.2) !important;
        }

     
        /* Scroll to Top */
        .scroll-to-top {
            position: fixed;
            bottom: 100px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--gradient-primary);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 1.2rem;
            box-shadow: var(--shadow-medium);
            opacity: 0;
            visibility: hidden;
            transform: translateY(100px);
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .scroll-to-top.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .scroll-to-top:hover {
            background: var(--gradient-accent);
            transform: translateY(-3px);
            box-shadow: var(--shadow-heavy);
            color: var(--white);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .banner-content h1 {
                font-size: 2rem;
            }
            
            .service-section h2 {
                font-size: 1.5rem;
            }
            
            .contact-info {
                flex-direction: column;
                gap: 1rem;
            }

            .footer-container {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .footer-column {
                margin-bottom: 30px;
            }

            .social-icons {
                justify-content: center;
            }

            .appointment-form {
                padding: 1.5rem;
            }

            .service-content {
                padding: 4rem 0;
            }

            .service-image img {
                height: 300px;
            }

            .equal-height-container {
                flex-direction: column;
            }

            .equal-height-container .col-lg-6,
            .equal-height-container .col-lg-7,
            .equal-height-container .col-lg-5 {
                margin-bottom: 2rem;
            }
        }

        @media (max-width: 576px) {
            .banner-content h1 {
                font-size: 1.8rem;
            }
            
            .btn {
                padding: 0.6rem 1.5rem;
                font-size: 0.8rem;
            }

            .section-title h2 {
                font-size: 1.8rem;
            }

            .service-card {
                height: auto;
                min-height: 400px;
            }

            .review-card {
                height: auto;
                min-height: 250px;
            }
        }
    

/***boiler repair ****/
 
      

        /* Enhanced Typography */
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        h1 { font-size: 2.5rem; }
        h2 { font-size: 1.8rem; }
        h3 { font-size: 1.5rem; }
        h4 { font-size: 1.3rem; }
        h5 { font-size: 1.1rem; }

        p {
            font-size: 1rem;
            line-height: 1.6;
            color: var(--dark-gray);
        }

        /* Enhanced Buttons */
        .btn {
            font-weight: 600;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 0.9rem;
            border: none;
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn-primary {
            background: var(--gradient-primary);
            color: var(--white);
            box-shadow: var(--shadow-light);
        }

        .btn-primary:hover {
            background: var(--gradient-primary);
            transform: translateY(-2px);
            box-shadow: var(--shadow-medium);
        }

        .btn-warning {
            background: var(--gradient-accent);
            color: var(--white);
            box-shadow: var(--shadow-light);
        }

        .btn-warning:hover {
            background: var(--gradient-accent);
            transform: translateY(-2px);
            box-shadow: var(--shadow-medium);
            color: var(--white);
        }

        .btn-outline-light {
            border: 2px solid var(--white);
            color: var(--white);
            background: transparent;
        }

        .btn-outline-light:hover {
            background: var(--white);
            color: var(--primary-color);
            transform: translateY(-2px);
        }

        /* Enhanced Header */
        .top-header {
            background: var(--white);
            border-bottom: 1px solid var(--secondary-color);
            box-shadow: var(--shadow-light);
            position: relative;
            overflow: hidden;
        }

        .top-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gradient-primary);
        }

        .logo img {
            height: 70px;
            transition: transform 0.3s ease;
            filter: drop-shadow(0 2px 8px rgba(0,0,0,0.1));
        }

        .logo img:hover {
            transform: scale(1.05);
        }

        .contact-info {
            display: flex;
            gap: 2rem;
        }

        .contact-info > div {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 0.5rem 1rem;
            border-radius: 15px;
            background: rgba(36, 75, 111, 0.05);
            transition: all 0.3s ease;
        }

        .contact-info > div:hover {
            background: var(--secondary-color);
            transform: translateY(-2px);
        }

        .contact-info i {
            font-size: 1.5rem;
            color: var(--primary-color);
            background: var(--secondary-color);
            padding: 0.8rem;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .contact-info i:hover {
            background: var(--primary-color);
            color: var(--white);
            transform: scale(1.1);
        }

        .contact-info .label {
            font-size: 0.9rem;
            color: var(--dark-gray);
            font-weight: 500;
        }

        .contact-info .value {
            font-size: 1rem;
            color: var(--primary-color);
            font-weight: 700;
        }

        /* Enhanced Navigation */
        .main-navbar {
            background: var(--white);
            box-shadow: var(--shadow-light);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .main-navbar.scrolled {
            padding: 0.5rem 0;
            box-shadow: var(--shadow-medium);
        }

        .navbar-nav .nav-link {
            color: var(--primary-color);
            font-weight: 500;
            padding: 0.5rem 1rem;
            margin: 0 0.2rem;
            border-radius: 25px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 0.9rem;
            position: relative;
        }

        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--gradient-primary);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .navbar-nav .nav-link:hover {
            background: var(--secondary-color);
            color: var(--primary-dark);
            transform: translateY(-2px);
        }

        .navbar-nav .nav-link:hover::after {
            width: 80%;
        }

        /* Social Icons */
        .social-icons .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background-color: #244B6F;
            color: white;
            border-radius: 50%;
            text-decoration: none;
            font-size: 18px;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }

        .social-icons .social-icon:hover {
            transform: scale(1.1);
        }

        /* Enhanced Hero Section */
        .hero-banner {
            background: linear-gradient(135deg, rgba(36, 75, 111, 0.9) 0%, rgba(26, 57, 82, 0.9) 100%), url('https://images.pexels.com/photos/5691659/pexels-photo-5691659.jpeg?auto=compress&cs=tinysrgb&w=1920&h=1080') center/cover no-repeat;
            min-height: 80vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 50%, rgba(245, 147, 64, 0.1) 0%, transparent 50%);
        }

        .banner-content {
            z-index: 2;
            position: relative;
        }

        .banner-content h1 {
            font-size: 3rem;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .banner-content p {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2rem;
            max-width: 600px;
        }

        /* Appointment Form */
        .appointment-form {
            background: var(--white);
            padding: 2rem;
            border-radius: 20px;
            box-shadow: var(--shadow-heavy);
            position: relative;
            z-index: 3;
            border: 1px solid rgba(36, 75, 111, 0.1);
        }

        .appointment-form h2 {
            color: var(--primary-color);
            text-align: center;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }

        .appointment-form span {
            color: var(--accent-color);
        }

        .form-control, .form-select {
            border: 2px solid var(--secondary-color);
            border-radius: 15px;
            padding: 0.8rem 1rem;
            transition: all 0.3s ease;
            font-size: 0.9rem;
            background: var(--light-gray);
        }

        .form-control:focus, .form-select:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(36, 75, 111, 0.15);
            background: var(--white);
            transform: translateY(-2px);
        }

        /* Equal Height Containers */
        .equal-height-container {
            display: flex;
            align-items: stretch;
        }

        .equal-height-container .col-lg-6,
        .equal-height-container .col-lg-7,
        .equal-height-container .col-lg-5 {
            display: flex;
            flex-direction: column;
        }

        .service-content {
            padding: 6rem 0;
            position: relative;
        }

        .service-section {
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .service-section h2 {
            color: var(--primary-color);
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            position: relative;
        }

        .service-section h2::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--gradient-accent);
            border-radius: 2px;
        }

        .service-section p {
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            color: var(--dark-gray);
        }

        .service-section ul {
            list-style: none;
            padding: 0;
        }

        .service-section ul li {
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 0.8rem;
            background: var(--white);
            border-radius: 12px;
            box-shadow: var(--shadow-light);
            transition: all 0.3s ease;
        }

        .service-section ul li:hover {
            transform: translateX(8px);
            box-shadow: var(--shadow-medium);
        }

        .service-section ul li i {
            color: var(--accent-color);
            font-size: 1.2rem;
            background: var(--secondary-color);
            padding: 0.8rem;
            border-radius: 50%;
            min-width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Service Images */
        .service-image {
            border-radius: 20px;
            overflow: hidden;
          
            transition: all 0.3s ease;
            position: relative;
            height: 100%;
            display: flex;
            align-items: center;
        }

        .service-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--gradient-primary);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 1;
        }

       
       
        .service-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .service-image:hover img {
            transform: scale(1.05);
        }

        /* Service Cards Slider */
        .service-card {
            background: var(--white);
            border-radius: 20px;
            padding: 2rem 1.5rem;
            margin: 1rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(36, 75, 111, 0.1);
            box-shadow: var(--shadow-light);
            height: 450px;
            display: flex;
            flex-direction: column;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-accent);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-heavy);
        }

        .service-card-image {
            width: 100%;
            height: 200px;
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 1.5rem;
        }

        .service-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .service-card:hover .service-card-image img {
            transform: scale(1.1);
        }

        .service-card h5 {
            color: var(--primary-color);
            font-size: 1.2rem;
            margin-bottom: 1rem;
            text-align: center;
            font-weight: 700;
        }

        .service-card p {
            text-align: center;
            margin-bottom: 1.5rem;
            color: var(--dark-gray);
            font-size: 0.9rem;
            flex-grow: 1;
        }

        .service-card .btn {
            background: var(--gradient-accent);
            color: white;
            padding: 0.6rem 1.5rem;
            border-radius: 25px;
            text-decoration: none;
            transition: all 0.3s ease;
            display: block;
            text-align: center;
            width: fit-content;
            margin: 0 auto;
            font-weight: 600;
            font-size: 0.8rem;
        }

        .service-card .btn:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-medium);
        }

        /* FAQ Section */
        .faq-section {
            padding: 6rem 0;
            background: var(--light-gray);
            position: relative;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title h4 {
            color: var(--accent-color);
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
        }

        .section-title h2 {
            color: var(--primary-color);
            font-size: 2.2rem;
            font-weight: 800;
        }

        .accordion-item {
            border: none;
            border-radius: 15px !important;
            margin-bottom: 1rem;
            overflow: hidden;
            box-shadow: var(--shadow-light);
            transition: all 0.3s ease;
        }

        .accordion-item:hover {
            box-shadow: var(--shadow-medium);
        }

        .accordion-button {
            background: var(--white);
            color: var(--primary-color);
            font-weight: 600;
            font-size: 1rem;
            border: none;
            border-radius: 15px !important;
            padding: 1.5rem;
            transition: all 0.3s ease;
            position: relative;
        }

        .accordion-button::after {
            background-image: none;
            content: '\f067';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            color: var(--accent-color);
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .accordion-button:not(.collapsed)::after {
            content: '\f068';
            transform: rotate(0deg);
        }

        .accordion-button:not(.collapsed) {
            background: var(--gradient-primary);
            color: var(--white);
            box-shadow: none;
        }

        .accordion-button:not(.collapsed)::after {
            color: var(--white);
        }

        .accordion-button:focus {
            box-shadow: none;
            border: none;
        }

        .accordion-body {
            padding: 1.5rem;
            background: var(--secondary-color);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* Reviews Section */
        .reviews-section {
            padding: 6rem 0;
            background: var(--white);
        }

        .review-card {
            background: var(--white);
            border: 1px solid rgba(36, 75, 111, 0.1);
            border-radius: 20px;
            padding: 2rem;
            margin: 1rem;
            transition: all 0.3s ease;
            position: relative;
            box-shadow: var(--shadow-light);
            height: 340px;
            display: flex;
            flex-direction: column;
        }

        .review-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, var(--secondary-color) 0%, var(--white) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
            border-radius: 20px;
        }

        .review-card:hover::before {
            opacity: 1;
        }

        .review-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-heavy);
        }

        .review-card h5 {
            color: var(--primary-color);
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            font-weight: 700;
            position: relative;
            z-index: 1;
        }

        .review-card .stars {
            color: #FFD700;
            margin: 1rem 0;
            font-size: 1rem;
            position: relative;
            z-index: 1;
        }

        .review-card .google-icon {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            width: 35px;
            height: 35px;
            background: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-light);
        }

        .review-card p {
            position: relative;
            z-index: 1;
            font-style: italic;
            font-size: 0.9rem;
            flex-grow: 1;
            display: flex;
            align-items: center;
        }

        /* Owl Carousel Styling */
        .owl-nav .owl-prev,
        .owl-nav .owl-next {
            background: var(--gradient-primary) !important;
            color: white !important;
            border-radius: 50% !important;
            width: 50px !important;
            height: 50px !important;
            line-height: 50px !important;
            font-size: 2rem !important;
            margin: 0 10px !important;
            transition: all 0.3s ease !important;
            box-shadow: var(--shadow-medium) !important;
        }

        .owl-nav .owl-prev:hover,
        .owl-nav .owl-next:hover {
            background: var(--gradient-accent) !important;
            transform: scale(1.1) !important;
            box-shadow: var(--shadow-heavy) !important;
        }

        .owl-dots {
            text-align: center;
            margin-top: 2rem;
            display:hidden;
        }

        .owl-dots .owl-dot {
            margin: 0 5px;
        }

        .owl-dots .owl-dot span {
            background: var(--primary-color) !important;
            width: 10px !important;
            height: 10px !important;
            border-radius: 50% !important;
            transition: all 0.3s ease !important;
        }

        .owl-dots .owl-dot.active span,
        .owl-dots .owl-dot:hover span {
            background: var(--accent-color) !important;
            transform: scale(1.2) !important;
        }

       
        /* Scroll to Top */
        .scroll-to-top {
            position: fixed;
            bottom: 100px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--gradient-primary);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 1.2rem;
            box-shadow: var(--shadow-medium);
            opacity: 0;
            visibility: hidden;
            transform: translateY(100px);
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .scroll-to-top.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .scroll-to-top:hover {
            background: var(--gradient-accent);
            transform: translateY(-3px);
            box-shadow: var(--shadow-heavy);
            color: var(--white);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .banner-content h1 {
                font-size: 2rem;
            }
            
            .service-section h2 {
                font-size: 1.5rem;
            }
            
            .contact-info {
                flex-direction: column;
                gap: 1rem;
            }

            .footer-container {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .footer-column {
                margin-bottom: 30px;
            }

            .social-icons {
                justify-content: center;
            }

            .appointment-form {
                padding: 1.5rem;
            }

            .service-content {
                padding: 4rem 0;
            }

            .service-image img {
                height: 300px;
            }

            .equal-height-container {
                flex-direction: column;
            }

            .equal-height-container .col-lg-6,
            .equal-height-container .col-lg-7,
            .equal-height-container .col-lg-5 {
                margin-bottom: 2rem;
            }
        }

        @media (max-width: 576px) {
            .banner-content h1 {
                font-size: 1.8rem;
            }
            
            .btn {
                padding: 0.6rem 1.5rem;
                font-size: 0.8rem;
            }

            .section-title h2 {
                font-size: 1.8rem;
            }

            .service-card {
                height: auto;
                min-height: 400px;
            }

            .review-card {
                height: auto;
                min-height: 250px;
            }
        }
 
 
/*****boiler service****/

        /* Enhanced Typography */
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        h1 { font-size: 2.5rem; }
        h2 { font-size: 1.8rem; }
        h3 { font-size: 1.5rem; }
        h4 { font-size: 1.3rem; }
        h5 { font-size: 1.1rem; }

        p {
            font-size: 1rem;
            line-height: 1.6;
            color: var(--dark-gray);
        }

        /* Enhanced Buttons */
        .btn {
            font-weight: 600;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 0.9rem;
            border: none;
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn-primary {
            background: var(--gradient-primary);
            color: var(--white);
            box-shadow: var(--shadow-light);
        }

        .btn-primary:hover {
            background: var(--gradient-primary);
            transform: translateY(-2px);
            box-shadow: var(--shadow-medium);
        }

        .btn-warning {
            background: var(--gradient-accent);
            color: var(--white);
            box-shadow: var(--shadow-light);
        }

        .btn-warning:hover {
            background: var(--gradient-accent);
            transform: translateY(-2px);
            box-shadow: var(--shadow-medium);
            color: var(--white);
        }

        .btn-outline-light {
            border: 2px solid var(--white);
            color: var(--white);
            background: transparent;
        }

        .btn-outline-light:hover {
            background: var(--white);
            color: var(--primary-color);
            transform: translateY(-2px);
        }

        /* Enhanced Header */
        .top-header {
            background: var(--white);
            border-bottom: 1px solid var(--secondary-color);
            box-shadow: var(--shadow-light);
            position: relative;
            overflow: hidden;
        }

        .top-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gradient-primary);
        }

        .logo img {
            height: 70px;
            transition: transform 0.3s ease;
            filter: drop-shadow(0 2px 8px rgba(0,0,0,0.1));
        }

        .logo img:hover {
            transform: scale(1.05);
        }

        .contact-info {
            display: flex;
            gap: 2rem;
        }

        .contact-info > div {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 0.5rem 1rem;
            border-radius: 15px;
            background: rgba(36, 75, 111, 0.05);
            transition: all 0.3s ease;
        }

        .contact-info > div:hover {
            background: var(--secondary-color);
            transform: translateY(-2px);
        }
  
   
        .contact-info i {
            font-size: 1.5rem;
            color: var(--primary-color);
            background: var(--secondary-color);
            padding: 0.8rem;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .contact-info i:hover {
            background: var(--primary-color);
            color: var(--white);
            transform: scale(1.1);
        }

        .contact-info .label {
            font-size: 0.9rem;
            color: var(--dark-gray);
            font-weight: 500;
        }

        .contact-info .value {
            font-size: 1rem;
            color: var(--primary-color);
            font-weight: 700;
        }

        /* Enhanced Navigation */
        .main-navbar {
            background: var(--white);
            box-shadow: var(--shadow-light);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .main-navbar.scrolled {
            padding: 0.5rem 0;
            box-shadow: var(--shadow-medium);
        }

        .navbar-nav .nav-link {
            color: var(--primary-color);
            font-weight: 500;
            padding: 0.5rem 1rem;
            margin: 0 0.2rem;
            border-radius: 25px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 0.9rem;
            position: relative;
        }

        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--gradient-primary);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .navbar-nav .nav-link:hover {
            background: var(--secondary-color);
            color: var(--primary-dark);
            transform: translateY(-2px);
        }

        .navbar-nav .nav-link:hover::after {
            width: 80%;
        }

        /* Social Icons */
        .social-icons .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background-color: #244B6F;
            color: white;
            border-radius: 50%;
            text-decoration: none;
            font-size: 18px;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }

        .social-icons .social-icon:hover {
            transform: scale(1.1);
        }

        /* Enhanced Hero Section */
        .hero-banner {
            background: linear-gradient(135deg, rgba(36, 75, 111, 0.9) 0%, rgba(26, 57, 82, 0.9) 100%), url('https://images.pexels.com/photos/5691659/pexels-photo-5691659.jpeg?auto=compress&cs=tinysrgb&w=1920&h=1080') center/cover no-repeat;
            min-height: 80vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 50%, rgba(245, 147, 64, 0.1) 0%, transparent 50%);
        }

        .banner-content {
            z-index: 2;
            position: relative;
        }

        .banner-content h1 {
            font-size: 3rem;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .banner-content p {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2rem;
            max-width: 600px;
        }

        /* Appointment Form */
        .appointment-form {
            background: var(--white);
            padding: 2rem;
            border-radius: 20px;
            box-shadow: var(--shadow-heavy);
            position: relative;
            z-index: 3;
            border: 1px solid rgba(36, 75, 111, 0.1);
        }

        .appointment-form h2 {
            color: var(--primary-color);
            text-align: center;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }

        .appointment-form span {
            color: var(--accent-color);
        }

        .form-control, .form-select {
            border: 2px solid var(--secondary-color);
            border-radius: 15px;
            padding: 0.8rem 1rem;
            transition: all 0.3s ease;
            font-size: 0.9rem;
            background: var(--light-gray);
        }

        .form-control:focus, .form-select:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(36, 75, 111, 0.15);
            background: var(--white);
            transform: translateY(-2px);
        }

        /* Equal Height Containers */
        .equal-height-container {
            display: flex;
            align-items: stretch;
        }

        .equal-height-container .col-lg-6,
        .equal-height-container .col-lg-7,
        .equal-height-container .col-lg-5 {
            display: flex;
            flex-direction: column;
        }

        .service-content {
            padding: 6rem 0;
            position: relative;
        }

        .service-section {
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .service-section h2 {
            color: var(--primary-color);
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            position: relative;
        }

        .service-section h2::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--gradient-accent);
            border-radius: 2px;
        }

        .service-section p {
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            color: var(--dark-gray);
        }

        .service-section ul {
            list-style: none;
            padding: 0;
        }

        .service-section ul li {
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 0.8rem;
            background: var(--white);
            border-radius: 12px;
            box-shadow: var(--shadow-light);
            transition: all 0.3s ease;
        }

        .service-section ul li:hover {
            transform: translateX(8px);
            box-shadow: var(--shadow-medium);
        }

        .service-section ul li i {
            color: var(--accent-color);
            font-size: 1.2rem;
            background: var(--secondary-color);
            padding: 0.8rem;
            border-radius: 50%;
            min-width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Service Images */
        .service-image {
            border-radius: 20px;
            overflow: hidden;
          
            transition: all 0.3s ease;
            position: relative;
            height: 100%;
            display: flex;
            align-items: center;
        }

        .service-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--gradient-primary);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 1;
        }

       
       
        .service-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .service-image:hover img {
            transform: scale(1.05);
        }

        /* Service Cards Slider */
        .service-card {
            background: var(--white);
            border-radius: 20px;
            padding: 2rem 1.5rem;
            margin: 1rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(36, 75, 111, 0.1);
            box-shadow: var(--shadow-light);
            height: 450px;
            display: flex;
            flex-direction: column;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-accent);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-heavy);
        }

        .service-card-image {
            width: 100%;
            height: 200px;
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 1.5rem;
        }

        .service-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .service-card:hover .service-card-image img {
            transform: scale(1.1);
        }

        .service-card h5 {
            color: var(--primary-color);
            font-size: 1.2rem;
            margin-bottom: 1rem;
            text-align: center;
            font-weight: 700;
        }

        .service-card p {
            text-align: center;
            margin-bottom: 1.5rem;
            color: var(--dark-gray);
            font-size: 0.9rem;
            flex-grow: 1;
        }

        .service-card .btn {
            background: var(--gradient-accent);
            color: white;
            padding: 0.6rem 1.5rem;
            border-radius: 25px;
            text-decoration: none;
            transition: all 0.3s ease;
            display: block;
            text-align: center;
            width: fit-content;
            margin: 0 auto;
            font-weight: 600;
            font-size: 0.8rem;
        }

        .service-card .btn:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-medium);
        }

        /* FAQ Section */
        .faq-section {
            padding: 6rem 0;
            background: var(--light-gray);
            position: relative;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title h4 {
            color: var(--accent-color);
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
        }

        .section-title h2 {
            color: var(--primary-color);
            font-size: 2.2rem;
            font-weight: 800;
        }

        .accordion-item {
            border: none;
            border-radius: 15px !important;
            margin-bottom: 1rem;
            overflow: hidden;
            box-shadow: var(--shadow-light);
            transition: all 0.3s ease;
        }

        .accordion-item:hover {
            box-shadow: var(--shadow-medium);
        }

        .accordion-button {
            background: var(--white);
            color: var(--primary-color);
            font-weight: 600;
            font-size: 1rem;
            border: none;
            border-radius: 15px !important;
            padding: 1.5rem;
            transition: all 0.3s ease;
            position: relative;
        }

        .accordion-button::after {
            background-image: none;
            content: '\f067';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            color: var(--accent-color);
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .accordion-button:not(.collapsed)::after {
            content: '\f068';
            transform: rotate(0deg);
        }

        .accordion-button:not(.collapsed) {
            background: var(--gradient-primary);
            color: var(--white);
            box-shadow: none;
        }

        .accordion-button:not(.collapsed)::after {
            color: var(--white);
        }

        .accordion-button:focus {
            box-shadow: none;
            border: none;
        }

        .accordion-body {
            padding: 1.5rem;
            background: var(--secondary-color);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* Reviews Section */
        .reviews-section {
            padding: 6rem 0;
            background: var(--white);
        }

        .review-card {
            background: var(--white);
            border: 1px solid rgba(36, 75, 111, 0.1);
            border-radius: 20px;
            padding: 2rem;
            margin: 1rem;
            transition: all 0.3s ease;
            position: relative;
            box-shadow: var(--shadow-light);
            height: 340px;
            display: flex;
            flex-direction: column;
        }

        .review-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, var(--secondary-color) 0%, var(--white) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
            border-radius: 20px;
        }

        .review-card:hover::before {
            opacity: 1;
        }

        .review-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-heavy);
        }

        .review-card h5 {
            color: var(--primary-color);
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            font-weight: 700;
            position: relative;
            z-index: 1;
        }

        .review-card .stars {
            color: #FFD700;
            margin: 1rem 0;
            font-size: 1rem;
            position: relative;
            z-index: 1;
        }

        .review-card .google-icon {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            width: 35px;
            height: 35px;
            background: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-light);
        }

        .review-card p {
            position: relative;
            z-index: 1;
            font-style: italic;
            font-size: 0.9rem;
            flex-grow: 1;
            display: flex;
            align-items: center;
        }

        /* Owl Carousel Styling */
        .owl-nav .owl-prev,
        .owl-nav .owl-next {
            background: var(--gradient-primary) !important;
            color: white !important;
            border-radius: 50% !important;
            width: 50px !important;
            height: 50px !important;
            line-height: 50px !important;
            font-size: 2rem !important;
            margin: 0 10px !important;
            transition: all 0.3s ease !important;
            box-shadow: var(--shadow-medium) !important;
        }

        .owl-nav .owl-prev:hover,
        .owl-nav .owl-next:hover {
            background: var(--gradient-accent) !important;
            transform: scale(1.1) !important;
            box-shadow: var(--shadow-heavy) !important;
        }

        .owl-dots {
            text-align: center;
            margin-top: 2rem;
            display:hidden;
        }

        .owl-dots .owl-dot {
            margin: 0 5px;
        }

        .owl-dots .owl-dot span {
            background: var(--primary-color) !important;
            width: 10px !important;
            height: 10px !important;
            border-radius: 50% !important;
            transition: all 0.3s ease !important;
        }

        .owl-dots .owl-dot.active span,
        .owl-dots .owl-dot:hover span {
            background: var(--accent-color) !important;
            transform: scale(1.2) !important;
        }

       
        /* Scroll to Top */
        .scroll-to-top {
            position: fixed;
            bottom: 100px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--gradient-primary);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 1.2rem;
            box-shadow: var(--shadow-medium);
            opacity: 0;
            visibility: hidden;
            transform: translateY(100px);
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .scroll-to-top.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .scroll-to-top:hover {
            background: var(--gradient-accent);
            transform: translateY(-3px);
            box-shadow: var(--shadow-heavy);
            color: var(--white);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .banner-content h1 {
                font-size: 2rem;
            }
            
            .service-section h2 {
                font-size: 1.5rem;
            }
            
            .contact-info {
                flex-direction: column;
                gap: 1rem;
            }

        }

        @media (max-width: 576px) {
            .banner-content h1 {
                font-size: 1.8rem;
            }
            
            .btn {
                padding: 0.6rem 1.5rem;
                font-size: 0.8rem;
            }

            .section-title h2 {
                font-size: 1.8rem;
            }

            .service-card {
                height: auto;
                min-height: 400px;
            }

            .review-card {
                height: auto;
                min-height: 250px;
            }
        }

/***gas leak detection **/
 
     
        /* Enhanced Typography */
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        h1 { font-size: 2.5rem; }
        h2 { font-size: 1.8rem; }
        h3 { font-size: 1.5rem; }
        h4 { font-size: 1.3rem; }
        h5 { font-size: 1.1rem; }

        p {
            font-size: 1rem;
            line-height: 1.6;
            color: var(--dark-gray);
        }

        /* Enhanced Buttons */
        .btn {
            font-weight: 600;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 0.9rem;
            border: none;
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn-primary {
            background: var(--gradient-primary);
            color: var(--white);
            box-shadow: var(--shadow-light);
        }

        .btn-primary:hover {
            background: var(--gradient-primary);
            transform: translateY(-2px);
            box-shadow: var(--shadow-medium);
        }

        .btn-warning {
            background: var(--gradient-accent);
            color: var(--white);
            box-shadow: var(--shadow-light);
        }

        .btn-warning:hover {
            background: var(--gradient-accent);
            transform: translateY(-2px);
            box-shadow: var(--shadow-medium);
            color: var(--white);
        }

        .btn-outline-light {
            border: 2px solid var(--white);
            color: var(--white);
            background: transparent;
        }

        .btn-outline-light:hover {
            background: var(--white);
            color: var(--primary-color);
            transform: translateY(-2px);
        }

        /* Enhanced Header */
        .top-header {
            background: var(--white);
            border-bottom: 1px solid var(--secondary-color);
            box-shadow: var(--shadow-light);
            position: relative;
            overflow: hidden;
        }

        .top-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gradient-primary);
        }

        .logo img {
            height: 70px;
            transition: transform 0.3s ease;
            filter: drop-shadow(0 2px 8px rgba(0,0,0,0.1));
        }

        .logo img:hover {
            transform: scale(1.05);
        }

        .contact-info {
            display: flex;
            gap: 2rem;
        }

        .contact-info > div {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 0.5rem 1rem;
            border-radius: 15px;
            background: rgba(36, 75, 111, 0.05);
            transition: all 0.3s ease;
        }

        .contact-info > div:hover {
            background: var(--secondary-color);
            transform: translateY(-2px);
        }

        .contact-info i {
            font-size: 1.5rem;
            color: var(--primary-color);
            background: var(--secondary-color);
            padding: 0.8rem;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .contact-info i:hover {
            background: var(--primary-color);
            color: var(--white);
            transform: scale(1.1);
        }

        .contact-info .label {
            font-size: 0.9rem;
            color: var(--dark-gray);
            font-weight: 500;
        }

        .contact-info .value {
            font-size: 1rem;
            color: var(--primary-color);
            font-weight: 700;
        }

        /* Enhanced Navigation */
        .main-navbar {
            background: var(--white);
            box-shadow: var(--shadow-light);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .main-navbar.scrolled {
            padding: 0.5rem 0;
            box-shadow: var(--shadow-medium);
        }

        .navbar-nav .nav-link {
            color: var(--primary-color);
            font-weight: 500;
            padding: 0.5rem 1rem;
            margin: 0 0.2rem;
            border-radius: 25px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 0.9rem;
            position: relative;
        }

        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--gradient-primary);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .navbar-nav .nav-link:hover {
            background: var(--secondary-color);
            color: var(--primary-dark);
            transform: translateY(-2px);
        }

        .navbar-nav .nav-link:hover::after {
            width: 80%;
        }

        /* Social Icons */
        .social-icons .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background-color: #244B6F;
            color: white;
            border-radius: 50%;
            text-decoration: none;
            font-size: 18px;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }

        .social-icons .social-icon:hover {
            transform: scale(1.1);
        }

        /* Enhanced Hero Section */
        .hero-banner {
            background: linear-gradient(135deg, rgba(36, 75, 111, 0.9) 0%, rgba(26, 57, 82, 0.9) 100%), url('https://images.pexels.com/photos/5691659/pexels-photo-5691659.jpeg?auto=compress&cs=tinysrgb&w=1920&h=1080') center/cover no-repeat;
            min-height: 80vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 50%, rgba(245, 147, 64, 0.1) 0%, transparent 50%);
        }

        .banner-content {
            z-index: 2;
            position: relative;
        }

        .banner-content h1 {
            font-size: 3rem;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .banner-content p {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2rem;
            max-width: 600px;
        }

        /* Appointment Form */
        .appointment-form {
            background: var(--white);
            padding: 2rem;
            border-radius: 20px;
            box-shadow: var(--shadow-heavy);
            position: relative;
            z-index: 3;
            border: 1px solid rgba(36, 75, 111, 0.1);
        }

        .appointment-form h2 {
            color: var(--primary-color);
            text-align: center;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }

        .appointment-form span {
            color: var(--accent-color);
        }

        .form-control, .form-select {
            border: 2px solid var(--secondary-color);
            border-radius: 15px;
            padding: 0.8rem 1rem;
            transition: all 0.3s ease;
            font-size: 0.9rem;
            background: var(--light-gray);
        }

        .form-control:focus, .form-select:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(36, 75, 111, 0.15);
            background: var(--white);
            transform: translateY(-2px);
        }

        /* Equal Height Containers */
        .equal-height-container {
            display: flex;
            align-items: stretch;
        }

        .equal-height-container .col-lg-6,
        .equal-height-container .col-lg-7,
        .equal-height-container .col-lg-5 {
            display: flex;
            flex-direction: column;
        }

        .service-content {
            padding: 6rem 0;
            position: relative;
        }

        .service-section {
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .service-section h2 {
            color: var(--primary-color);
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            position: relative;
        }

        .service-section h2::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--gradient-accent);
            border-radius: 2px;
        }

        .service-section p {
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            color: var(--dark-gray);
        }

        .service-section ul {
            list-style: none;
            padding: 0;
        }

        .service-section ul li {
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 0.8rem;
            background: var(--white);
            border-radius: 12px;
            box-shadow: var(--shadow-light);
            transition: all 0.3s ease;
        }

        .service-section ul li:hover {
            transform: translateX(8px);
            box-shadow: var(--shadow-medium);
        }

        .service-section ul li i {
            color: var(--accent-color);
            font-size: 1.2rem;
            background: var(--secondary-color);
            padding: 0.8rem;
            border-radius: 50%;
            min-width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Service Images */
        .service-image {
            border-radius: 20px;
            overflow: hidden;
          
            transition: all 0.3s ease;
            position: relative;
            height: 100%;
            display: flex;
            align-items: center;
        }

        .service-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--gradient-primary);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 1;
        }

       
       
        .service-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .service-image:hover img {
            transform: scale(1.05);
        }

        /* Service Cards Slider */
        .service-card {
            background: var(--white);
            border-radius: 20px;
            padding: 2rem 1.5rem;
            margin: 1rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(36, 75, 111, 0.1);
            box-shadow: var(--shadow-light);
            height: 450px;
            display: flex;
            flex-direction: column;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-accent);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-heavy);
        }

        .service-card-image {
            width: 100%;
            height: 200px;
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 1.5rem;
        }

        .service-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .service-card:hover .service-card-image img {
            transform: scale(1.1);
        }

        .service-card h5 {
            color: var(--primary-color);
            font-size: 1.2rem;
            margin-bottom: 1rem;
            text-align: center;
            font-weight: 700;
        }

        .service-card p {
            text-align: center;
            margin-bottom: 1.5rem;
            color: var(--dark-gray);
            font-size: 0.9rem;
            flex-grow: 1;
        }

        .service-card .btn {
            background: var(--gradient-accent);
            color: white;
            padding: 0.6rem 1.5rem;
            border-radius: 25px;
            text-decoration: none;
            transition: all 0.3s ease;
            display: block;
            text-align: center;
            width: fit-content;
            margin: 0 auto;
            font-weight: 600;
            font-size: 0.8rem;
        }

        .service-card .btn:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-medium);
        }

        /* FAQ Section */
        .faq-section {
            padding: 6rem 0;
            background: var(--light-gray);
            position: relative;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title h4 {
            color: var(--accent-color);
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
        }

        .section-title h2 {
            color: var(--primary-color);
            font-size: 2.2rem;
            font-weight: 800;
        }

        .accordion-item {
            border: none;
            border-radius: 15px !important;
            margin-bottom: 1rem;
            overflow: hidden;
            box-shadow: var(--shadow-light);
            transition: all 0.3s ease;
        }

        .accordion-item:hover {
            box-shadow: var(--shadow-medium);
        }

        .accordion-button {
            background: var(--white);
            color: var(--primary-color);
            font-weight: 600;
            font-size: 1rem;
            border: none;
            border-radius: 15px !important;
            padding: 1.5rem;
            transition: all 0.3s ease;
            position: relative;
        }

        .accordion-button::after {
            background-image: none;
            content: '\f067';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            color: var(--accent-color);
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .accordion-button:not(.collapsed)::after {
            content: '\f068';
            transform: rotate(0deg);
        }

        .accordion-button:not(.collapsed) {
            background: var(--gradient-primary);
            color: var(--white);
            box-shadow: none;
        }

        .accordion-button:not(.collapsed)::after {
            color: var(--white);
        }

        .accordion-button:focus {
            box-shadow: none;
            border: none;
        }

        .accordion-body {
            padding: 1.5rem;
            background: var(--secondary-color);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* Reviews Section */
        .reviews-section {
            padding: 6rem 0;
            background: var(--white);
        }

        .review-card {
            background: var(--white);
            border: 1px solid rgba(36, 75, 111, 0.1);
            border-radius: 20px;
            padding: 2rem;
            margin: 1rem;
            transition: all 0.3s ease;
            position: relative;
            box-shadow: var(--shadow-light);
            height: 340px;
            display: flex;
            flex-direction: column;
        }

        .review-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, var(--secondary-color) 0%, var(--white) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
            border-radius: 20px;
        }

        .review-card:hover::before {
            opacity: 1;
        }

        .review-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-heavy);
        }

        .review-card h5 {
            color: var(--primary-color);
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            font-weight: 700;
            position: relative;
            z-index: 1;
        }

        .review-card .stars {
            color: #FFD700;
            margin: 1rem 0;
            font-size: 1rem;
            position: relative;
            z-index: 1;
        }

        .review-card .google-icon {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            width: 35px;
            height: 35px;
            background: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-light);
        }

        .review-card p {
            position: relative;
            z-index: 1;
            font-style: italic;
            font-size: 0.9rem;
            flex-grow: 1;
            display: flex;
            align-items: center;
        }

        /* Owl Carousel Styling */
        .owl-nav .owl-prev,
        .owl-nav .owl-next {
            background: var(--gradient-primary) !important;
            color: white !important;
            border-radius: 50% !important;
            width: 50px !important;
            height: 50px !important;
            line-height: 50px !important;
            font-size: 2rem !important;
            margin: 0 10px !important;
            transition: all 0.3s ease !important;
            box-shadow: var(--shadow-medium) !important;
        }

        .owl-nav .owl-prev:hover,
        .owl-nav .owl-next:hover {
            background: var(--gradient-accent) !important;
            transform: scale(1.1) !important;
            box-shadow: var(--shadow-heavy) !important;
        }

        .owl-dots {
            text-align: center;
            margin-top: 2rem;
            display:hidden;
        }

        .owl-dots .owl-dot {
            margin: 0 5px;
        }

        .owl-dots .owl-dot span {
            background: var(--primary-color) !important;
            width: 10px !important;
            height: 10px !important;
            border-radius: 50% !important;
            transition: all 0.3s ease !important;
        }

        .owl-dots .owl-dot.active span,
        .owl-dots .owl-dot:hover span {
            background: var(--accent-color) !important;
            transform: scale(1.2) !important;
        }

        

        /* Responsive Design */
        @media (max-width: 768px) {
            .banner-content h1 {
                font-size: 2rem;
            }
            
            .service-section h2 {
                font-size: 1.5rem;
            }
            
            .contact-info {
                flex-direction: column;
                gap: 1rem;
            }

            .footer-container {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .footer-column {
                margin-bottom: 30px;
            }

            .social-icons {
                justify-content: center;
            }

            .appointment-form {
                padding: 1.5rem;
            }

            .service-content {
                padding: 4rem 0;
            }

            .service-image img {
                height: 300px;
            }

            .equal-height-container {
                flex-direction: column;
            }

            .equal-height-container .col-lg-6,
            .equal-height-container .col-lg-7,
            .equal-height-container .col-lg-5 {
                margin-bottom: 2rem;
            }
        }

        @media (max-width: 576px) {
            .banner-content h1 {
                font-size: 1.8rem;
            }
            
            .btn {
                padding: 0.6rem 1.5rem;
                font-size: 0.8rem;
            }

            .section-title h2 {
                font-size: 1.8rem;
            }

            .service-card {
                height: auto;
                min-height: 400px;
            }

            .review-card {
                height: auto;
                min-height: 250px;
            }
        }
    
/***landlord gas safety ****/
 

        /* Enhanced Typography */
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        h1 { font-size: 2.5rem; }
        h2 { font-size: 1.8rem; }
        h3 { font-size: 1.5rem; }
        h4 { font-size: 1.3rem; }
        h5 { font-size: 1.1rem; }

        p {
            font-size: 1rem;
            line-height: 1.6;
            color: var(--dark-gray);
        }

        /* Enhanced Buttons */
        .btn {
            font-weight: 600;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 0.9rem;
            border: none;
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn-primary {
            background: var(--gradient-primary);
            color: var(--white);
            box-shadow: var(--shadow-light);
        }

        .btn-primary:hover {
            background: var(--gradient-primary);
            transform: translateY(-2px);
            box-shadow: var(--shadow-medium);
        }

        .btn-warning {
            background: var(--gradient-accent);
            color: var(--white);
            box-shadow: var(--shadow-light);
        }

        .btn-warning:hover {
            background: var(--gradient-accent);
            transform: translateY(-2px);
            box-shadow: var(--shadow-medium);
            color: var(--white);
        }

        .btn-outline-light {
            border: 2px solid var(--white);
            color: var(--white);
            background: transparent;
        }

        .btn-outline-light:hover {
            background: var(--white);
            color: var(--primary-color);
            transform: translateY(-2px);
        }

        /* Enhanced Header */
        .top-header {
            background: var(--white);
            border-bottom: 1px solid var(--secondary-color);
            box-shadow: var(--shadow-light);
            position: relative;
            overflow: hidden;
        }

        .top-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gradient-primary);
        }

        .logo img {
            height: 70px;
            transition: transform 0.3s ease;
            filter: drop-shadow(0 2px 8px rgba(0,0,0,0.1));
        }

        .logo img:hover {
            transform: scale(1.05);
        }

        .contact-info {
            display: flex;
            gap: 2rem;
        }

        .contact-info > div {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 0.5rem 1rem;
            border-radius: 15px;
            background: rgba(36, 75, 111, 0.05);
            transition: all 0.3s ease;
        }

        .contact-info > div:hover {
            background: var(--secondary-color);
            transform: translateY(-2px);
        }

        .contact-info i {
            font-size: 1.5rem;
            color: var(--primary-color);
            background: var(--secondary-color);
            padding: 0.8rem;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .contact-info i:hover {
            background: var(--primary-color);
            color: var(--white);
            transform: scale(1.1);
        }

        .contact-info .label {
            font-size: 0.9rem;
            color: var(--dark-gray);
            font-weight: 500;
        }

        .contact-info .value {
            font-size: 1rem;
            color: var(--primary-color);
            font-weight: 700;
        }

        /* Enhanced Navigation */
        .main-navbar {
            background: var(--white);
            box-shadow: var(--shadow-light);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .main-navbar.scrolled {
            padding: 0.5rem 0;
            box-shadow: var(--shadow-medium);
        }

        .navbar-nav .nav-link {
            color: var(--primary-color);
            font-weight: 500;
            padding: 0.5rem 1rem;
            margin: 0 0.2rem;
            border-radius: 25px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 0.9rem;
            position: relative;
        }

        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--gradient-primary);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .navbar-nav .nav-link:hover {
            background: var(--secondary-color);
            color: var(--primary-dark);
            transform: translateY(-2px);
        }

        .navbar-nav .nav-link:hover::after {
            width: 80%;
        }

        /* Social Icons */
        .social-icons .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background-color: #244B6F;
            color: white;
            border-radius: 50%;
            text-decoration: none;
            font-size: 18px;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }

        .social-icons .social-icon:hover {
            transform: scale(1.1);
        }

        /* Enhanced Hero Section */
        .hero-banner {
            background: linear-gradient(135deg, rgba(36, 75, 111, 0.9) 0%, rgba(26, 57, 82, 0.9) 100%), url('https://images.pexels.com/photos/5691659/pexels-photo-5691659.jpeg?auto=compress&cs=tinysrgb&w=1920&h=1080') center/cover no-repeat;
            min-height: 80vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 50%, rgba(245, 147, 64, 0.1) 0%, transparent 50%);
        }

        .banner-content {
            z-index: 2;
            position: relative;
        }

        .banner-content h1 {
            font-size: 3rem;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .banner-content p {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2rem;
            max-width: 600px;
        }

        /* Appointment Form */
        .appointment-form {
            background: var(--white);
            padding: 2rem;
            border-radius: 20px;
            box-shadow: var(--shadow-heavy);
            position: relative;
            z-index: 3;
            border: 1px solid rgba(36, 75, 111, 0.1);
        }

        .appointment-form h2 {
            color: var(--primary-color);
            text-align: center;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }

        .appointment-form span {
            color: var(--accent-color);
        }

        .form-control, .form-select {
            border: 2px solid var(--secondary-color);
            border-radius: 15px;
            padding: 0.8rem 1rem;
            transition: all 0.3s ease;
            font-size: 0.9rem;
            background: var(--light-gray);
        }

        .form-control:focus, .form-select:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(36, 75, 111, 0.15);
            background: var(--white);
            transform: translateY(-2px);
        }

        /* Equal Height Containers */
        .equal-height-container {
            display: flex;
            align-items: stretch;
        }

        .equal-height-container .col-lg-6,
        .equal-height-container .col-lg-7,
        .equal-height-container .col-lg-5 {
            display: flex;
            flex-direction: column;
        }

        .service-content {
            padding: 6rem 0;
            position: relative;
        }

        .service-section {
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .service-section h2 {
            color: var(--primary-color);
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            position: relative;
        }

        .service-section h2::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--gradient-accent);
            border-radius: 2px;
        }

        .service-section p {
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            color: var(--dark-gray);
        }

        .service-section ul {
            list-style: none;
            padding: 0;
        }

        .service-section ul li {
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 0.8rem;
            background: var(--white);
            border-radius: 12px;
            box-shadow: var(--shadow-light);
            transition: all 0.3s ease;
        }

        .service-section ul li:hover {
            transform: translateX(8px);
            box-shadow: var(--shadow-medium);
        }

        .service-section ul li i {
            color: var(--accent-color);
            font-size: 1.2rem;
            background: var(--secondary-color);
            padding: 0.8rem;
            border-radius: 50%;
            min-width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Service Images */
        .service-image {
            border-radius: 20px;
            overflow: hidden;
          
            transition: all 0.3s ease;
            position: relative;
            height: 100%;
            display: flex;
            align-items: center;
        }

        .service-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--gradient-primary);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 1;
        }

       
       
        .service-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .service-image:hover img {
            transform: scale(1.05);
        }

        /* Service Cards Slider */
        .service-card {
            background: var(--white);
            border-radius: 20px;
            padding: 2rem 1.5rem;
            margin: 1rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(36, 75, 111, 0.1);
            box-shadow: var(--shadow-light);
            height: 450px;
            display: flex;
            flex-direction: column;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-accent);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-heavy);
        }

        .service-card-image {
            width: 100%;
            height: 200px;
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 1.5rem;
        }

        .service-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .service-card:hover .service-card-image img {
            transform: scale(1.1);
        }

        .service-card h5 {
            color: var(--primary-color);
            font-size: 1.2rem;
            margin-bottom: 1rem;
            text-align: center;
            font-weight: 700;
        }

        .service-card p {
            text-align: center;
            margin-bottom: 1.5rem;
            color: var(--dark-gray);
            font-size: 0.9rem;
            flex-grow: 1;
        }

        .service-card .btn {
            background: var(--gradient-accent);
            color: white;
            padding: 0.6rem 1.5rem;
            border-radius: 25px;
            text-decoration: none;
            transition: all 0.3s ease;
            display: block;
            text-align: center;
            width: fit-content;
            margin: 0 auto;
            font-weight: 600;
            font-size: 0.8rem;
        }

        .service-card .btn:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-medium);
        }

        /* FAQ Section */
        .faq-section {
            padding: 6rem 0;
            background: var(--light-gray);
            position: relative;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title h4 {
            color: var(--accent-color);
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
        }

        .section-title h2 {
            color: var(--primary-color);
            font-size: 2.2rem;
            font-weight: 800;
        }

        .accordion-item {
            border: none;
            border-radius: 15px !important;
            margin-bottom: 1rem;
            overflow: hidden;
            box-shadow: var(--shadow-light);
            transition: all 0.3s ease;
        }

        .accordion-item:hover {
            box-shadow: var(--shadow-medium);
        }

        .accordion-button {
            background: var(--white);
            color: var(--primary-color);
            font-weight: 600;
            font-size: 1rem;
            border: none;
            border-radius: 15px !important;
            padding: 1.5rem;
            transition: all 0.3s ease;
            position: relative;
        }

        .accordion-button::after {
            background-image: none;
            content: '\f067';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            color: var(--accent-color);
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .accordion-button:not(.collapsed)::after {
            content: '\f068';
            transform: rotate(0deg);
        }

        .accordion-button:not(.collapsed) {
            background: var(--gradient-primary);
            color: var(--white);
            box-shadow: none;
        }

        .accordion-button:not(.collapsed)::after {
            color: var(--white);
        }

        .accordion-button:focus {
            box-shadow: none;
            border: none;
        }

        .accordion-body {
            padding: 1.5rem;
            background: var(--secondary-color);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* Reviews Section */
        .reviews-section {
            padding: 6rem 0;
            background: var(--white);
        }

        .review-card {
            background: var(--white);
            border: 1px solid rgba(36, 75, 111, 0.1);
            border-radius: 20px;
            padding: 2rem;
            margin: 1rem;
            transition: all 0.3s ease;
            position: relative;
            box-shadow: var(--shadow-light);
            height: 340px;
            display: flex;
            flex-direction: column;
        }

        .review-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, var(--secondary-color) 0%, var(--white) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
            border-radius: 20px;
        }

        .review-card:hover::before {
            opacity: 1;
        }

        .review-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-heavy);
        }

        .review-card h5 {
            color: var(--primary-color);
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            font-weight: 700;
            position: relative;
            z-index: 1;
        }

        .review-card .stars {
            color: #FFD700;
            margin: 1rem 0;
            font-size: 1rem;
            position: relative;
            z-index: 1;
        }

        .review-card .google-icon {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            width: 35px;
            height: 35px;
            background: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-light);
        }

        .review-card p {
            position: relative;
            z-index: 1;
            font-style: italic;
            font-size: 0.9rem;
            flex-grow: 1;
            display: flex;
            align-items: center;
        }

        /* Owl Carousel Styling */
        .owl-nav .owl-prev,
        .owl-nav .owl-next {
            background: var(--gradient-primary) !important;
            color: white !important;
            border-radius: 50% !important;
            width: 50px !important;
            height: 50px !important;
            line-height: 50px !important;
            font-size: 2rem !important;
            margin: 0 10px !important;
            transition: all 0.3s ease !important;
            box-shadow: var(--shadow-medium) !important;
        }

        .owl-nav .owl-prev:hover,
        .owl-nav .owl-next:hover {
            background: var(--gradient-accent) !important;
            transform: scale(1.1) !important;
            box-shadow: var(--shadow-heavy) !important;
        }

        .owl-dots {
            text-align: center;
            margin-top: 2rem;
            display:hidden;
        }

        .owl-dots .owl-dot {
            margin: 0 5px;
        }

        .owl-dots .owl-dot span {
            background: var(--primary-color) !important;
            width: 10px !important;
            height: 10px !important;
            border-radius: 50% !important;
            transition: all 0.3s ease !important;
        }

        .owl-dots .owl-dot.active span,
        .owl-dots .owl-dot:hover span {
            background: var(--accent-color) !important;
            transform: scale(1.2) !important;
        }

      

        /* Scroll to Top */
        .scroll-to-top {
            position: fixed;
            bottom: 100px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--gradient-primary);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 1.2rem;
            box-shadow: var(--shadow-medium);
            opacity: 0;
            visibility: hidden;
            transform: translateY(100px);
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .scroll-to-top.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .scroll-to-top:hover {
            background: var(--gradient-accent);
            transform: translateY(-3px);
            box-shadow: var(--shadow-heavy);
            color: var(--white);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .banner-content h1 {
                font-size: 2rem;
            }
            
            .service-section h2 {
                font-size: 1.5rem;
            }
            
            .contact-info {
                flex-direction: column;
                gap: 1rem;
            }

            .footer-container {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .footer-column {
                margin-bottom: 30px;
            }

            .social-icons {
                justify-content: center;
            }

            .appointment-form {
                padding: 1.5rem;
            }

            .service-content {
                padding: 4rem 0;
            }

            .service-image img {
                height: 300px;
            }

            .equal-height-container {
                flex-direction: column;
            }

            .equal-height-container .col-lg-6,
            .equal-height-container .col-lg-7,
            .equal-height-container .col-lg-5 {
                margin-bottom: 2rem;
            }
        }

        @media (max-width: 576px) {
            .banner-content h1 {
                font-size: 1.8rem;
            }
            
            .btn {
                padding: 0.6rem 1.5rem;
                font-size: 0.8rem;
            }

            .section-title h2 {
                font-size: 1.8rem;
            }

            .service-card {
                height: auto;
                min-height: 400px;
            }

            .review-card {
                height: auto;
                min-height: 250px;
            }
        }
   
   /*****residential *****/
     
        h1 { font-size: 2.5rem; }
        h2 { font-size: 1.8rem; }
        h3 { font-size: 1.5rem; }
        h4 { font-size: 1.3rem; }
        h5 { font-size: 1.1rem; }

        p {
            font-size: 1rem;
            line-height: 1.6;
            color: var(--dark-gray);
        }

        /* Enhanced Buttons */
        .btn {
            font-weight: 600;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 0.9rem;
            border: none;
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn-primary {
            background: var(--gradient-primary);
            color: var(--white);
            box-shadow: var(--shadow-light);
        }

        .btn-primary:hover {
            background: var(--gradient-primary);
            transform: translateY(-2px);
            box-shadow: var(--shadow-medium);
        }

        .btn-warning {
            background: var(--gradient-accent);
            color: var(--white);
            box-shadow: var(--shadow-light);
        }

        .btn-warning:hover {
            background: var(--gradient-accent);
            transform: translateY(-2px);
            box-shadow: var(--shadow-medium);
            color: var(--white);
        }

        .btn-outline-light {
            border: 2px solid var(--white);
            color: var(--white);
            background: transparent;
        }

        .btn-outline-light:hover {
            background: var(--white);
            color: var(--primary-color);
            transform: translateY(-2px);
        }

        /* Enhanced Header */
        .top-header {
            background: var(--white);
            border-bottom: 1px solid var(--secondary-color);
            box-shadow: var(--shadow-light);
            position: relative;
            overflow: hidden;
        }

        .top-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gradient-primary);
        }

        .logo img {
            height: 70px;
            transition: transform 0.3s ease;
            filter: drop-shadow(0 2px 8px rgba(0,0,0,0.1));
        }

        .logo img:hover {
            transform: scale(1.05);
        }

        .contact-info {
            display: flex;
            gap: 2rem;
        }

        .contact-info > div {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 0.5rem 1rem;
            border-radius: 15px;
            background: rgba(36, 75, 111, 0.05);
            transition: all 0.3s ease;
        }

        .contact-info > div:hover {
            background: var(--secondary-color);
            transform: translateY(-2px);
        }

        .contact-info i {
            font-size: 1.5rem;
            color: var(--primary-color);
            background: var(--secondary-color);
            padding: 0.8rem;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .contact-info i:hover {
            background: var(--primary-color);
            color: var(--white);
            transform: scale(1.1);
        }

        .contact-info .label {
            font-size: 0.9rem;
            color: var(--dark-gray);
            font-weight: 500;
        }

        .contact-info .value {
            font-size: 1rem;
            color: var(--primary-color);
            font-weight: 700;
        }

        /* Enhanced Navigation */
        .main-navbar {
            background: var(--white);
            box-shadow: var(--shadow-light);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .main-navbar.scrolled {
            padding: 0.5rem 0;
            box-shadow: var(--shadow-medium);
        }

        .navbar-nav .nav-link {
            color: var(--primary-color);
            font-weight: 500;
            padding: 0.5rem 1rem;
            margin: 0 0.2rem;
            border-radius: 25px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 0.9rem;
            position: relative;
        }

        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--gradient-primary);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .navbar-nav .nav-link:hover {
            background: var(--secondary-color);
            color: var(--primary-dark);
            transform: translateY(-2px);
        }

        .navbar-nav .nav-link:hover::after {
            width: 80%;
        }

        /* Social Icons */
        .social-icons .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background-color: #244B6F;
            color: white;
            border-radius: 50%;
            text-decoration: none;
            font-size: 18px;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }

        .social-icons .social-icon:hover {
            transform: scale(1.1);
        }

        /* Enhanced Hero Section */
        .hero-banner {
            background: linear-gradient(135deg, rgba(36, 75, 111, 0.9) 0%, rgba(26, 57, 82, 0.9) 100%), url('https://images.pexels.com/photos/5691659/pexels-photo-5691659.jpeg?auto=compress&cs=tinysrgb&w=1920&h=1080') center/cover no-repeat;
            min-height: 40vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 50%, rgba(245, 147, 64, 0.1) 0%, transparent 50%);
        }

        .banner-content {
            z-index: 2;
            position: relative;
        }

        .banner-content h1 {
            font-size: 3rem;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .banner-content p {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2rem;
            max-width: 600px;
        }

        /* Appointment Form */
        .appointment-form {
            background: var(--white);
            padding: 2rem;
            border-radius: 20px;
            box-shadow: var(--shadow-heavy);
            position: relative;
            z-index: 3;
            border: 1px solid rgba(36, 75, 111, 0.1);
        }

        .appointment-form h2 {
            color: var(--primary-color);
            text-align: center;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }

        .appointment-form span {
            color: var(--accent-color);
        }

        .form-control, .form-select {
            border: 2px solid var(--secondary-color);
            border-radius: 15px;
            padding: 0.8rem 1rem;
            transition: all 0.3s ease;
            font-size: 0.9rem;
            background: var(--light-gray);
        }

        .form-control:focus, .form-select:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(36, 75, 111, 0.15);
            background: var(--white);
            transform: translateY(-2px);
        }

        /* Equal Height Containers */
        .equal-height-container {
            display: flex;
            align-items: stretch;
        }

        .equal-height-container .col-lg-6,
        .equal-height-container .col-lg-7,
        .equal-height-container .col-lg-5 {
            display: flex;
            flex-direction: column;
        }

        .service-content {
            padding: 6rem 0;
            position: relative;
        }

        .service-section {
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .service-section h2 {
            color: var(--primary-color);
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            position: relative;
        }

        .service-section h2::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--gradient-accent);
            border-radius: 2px;
        }

        .service-section p {
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            color: var(--dark-gray);
        }

        .service-section ul {
            list-style: none;
            padding: 0;
        }

        .service-section ul li {
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 0.8rem;
            background: var(--white);
            border-radius: 12px;
            box-shadow: var(--shadow-light);
            transition: all 0.3s ease;
        }

        .service-section ul li:hover {
            transform: translateX(8px);
            box-shadow: var(--shadow-medium);
        }

        .service-section ul li i {
            color: var(--accent-color);
            font-size: 1.2rem;
            background: var(--secondary-color);
            padding: 0.8rem;
            border-radius: 50%;
            min-width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Service Images */
        .service-image {
            border-radius: 20px;
            overflow: hidden;
          
            transition: all 0.3s ease;
            position: relative;
            height: 100%;
            display: flex;
            align-items: center;
        }

        .service-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--gradient-primary);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 1;
        }

       
       
        .service-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .service-image:hover img {
            transform: scale(1.05);
        }

        /* Service Cards Slider */
        .service-card {
            background: var(--white);
            border-radius: 20px;
            padding: 2rem 1.5rem;
            margin: 1rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(36, 75, 111, 0.1);
            box-shadow: var(--shadow-light);
            height: 450px;
            display: flex;
            flex-direction: column;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-accent);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-heavy);
        }

        .service-card-image {
            width: 100%;
            height: 200px;
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 1.5rem;
        }

        .service-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .service-card:hover .service-card-image img {
            transform: scale(1.1);
        }

        .service-card h5 {
            color: var(--primary-color);
            font-size: 1.2rem;
            margin-bottom: 1rem;
            text-align: center;
            font-weight: 700;
        }

        .service-card p {
            text-align: center;
            margin-bottom: 1.5rem;
            color: var(--dark-gray);
            font-size: 0.9rem;
            flex-grow: 1;
        }

        .service-card .btn {
            background: var(--gradient-accent);
            color: white;
            padding: 0.6rem 1.5rem;
            border-radius: 25px;
            text-decoration: none;
            transition: all 0.3s ease;
            display: block;
            text-align: center;
            width: fit-content;
            margin: 0 auto;
            font-weight: 600;
            font-size: 0.8rem;
        }

        .service-card .btn:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-medium);
        }

        /* FAQ Section */
        .faq-section {
            padding: 6rem 0;
            background: var(--light-gray);
            position: relative;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title h4 {
            color: var(--accent-color);
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
        }

        .section-title h2 {
            color: var(--primary-color);
            font-size: 2.2rem;
            font-weight: 800;
        }

        .accordion-item {
            border: none;
            border-radius: 15px !important;
            margin-bottom: 1rem;
            overflow: hidden;
            box-shadow: var(--shadow-light);
            transition: all 0.3s ease;
        }

        .accordion-item:hover {
            box-shadow: var(--shadow-medium);
        }

        .accordion-button {
            background: var(--white);
            color: var(--primary-color);
            font-weight: 600;
            font-size: 1rem;
            border: none;
            border-radius: 15px !important;
            padding: 1.5rem;
            transition: all 0.3s ease;
            position: relative;
        }

        .accordion-button::after {
            background-image: none;
            content: '\f067';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            color: var(--accent-color);
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .accordion-button:not(.collapsed)::after {
            content: '\f068';
            transform: rotate(0deg);
        }

        .accordion-button:not(.collapsed) {
            background: var(--gradient-primary);
            color: var(--white);
            box-shadow: none;
        }

        .accordion-button:not(.collapsed)::after {
            color: var(--white);
        }

        .accordion-button:focus {
            box-shadow: none;
            border: none;
        }

        .accordion-body {
            padding: 1.5rem;
            background: var(--secondary-color);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* Reviews Section */
        .reviews-section {
            padding: 6rem 0;
            background: var(--white);
        }

        .review-card {
            background: var(--white);
            border: 1px solid rgba(36, 75, 111, 0.1);
            border-radius: 20px;
            padding: 2rem;
            margin: 1rem;
            transition: all 0.3s ease;
            position: relative;
            box-shadow: var(--shadow-light);
            height: 340px;
            display: flex;
            flex-direction: column;
        }

        .review-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, var(--secondary-color) 0%, var(--white) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
            border-radius: 20px;
        }

        .review-card:hover::before {
            opacity: 1;
        }

        .review-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-heavy);
        }

        .review-card h5 {
            color: var(--primary-color);
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            font-weight: 700;
            position: relative;
            z-index: 1;
        }

        .review-card .stars {
            color: #FFD700;
            margin: 1rem 0;
            font-size: 1rem;
            position: relative;
            z-index: 1;
        }

        .review-card .google-icon {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            width: 35px;
            height: 35px;
            background: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-light);
        }

        .review-card p {
            position: relative;
            z-index: 1;
            font-style: italic;
            font-size: 0.9rem;
            flex-grow: 1;
            display: flex;
            align-items: center;
        }

        /* Owl Carousel Styling */
        .owl-nav .owl-prev,
        .owl-nav .owl-next {
            background: var(--gradient-primary) !important;
            color: white !important;
            border-radius: 50% !important;
            width: 50px !important;
            height: 50px !important;
            line-height: 50px !important;
            font-size: 2rem !important;
            margin: 0 10px !important;
            transition: all 0.3s ease !important;
            box-shadow: var(--shadow-medium) !important;
        }

        .owl-nav .owl-prev:hover,
        .owl-nav .owl-next:hover {
            background: var(--gradient-accent) !important;
            transform: scale(1.1) !important;
            box-shadow: var(--shadow-heavy) !important;
        }

        .owl-dots {
            text-align: center;
            margin-top: 2rem;
            display:hidden;
        }

        .owl-dots .owl-dot {
            margin: 0 5px;
        }

        .owl-dots .owl-dot span {
            background: var(--primary-color) !important;
            width: 10px !important;
            height: 10px !important;
            border-radius: 50% !important;
            transition: all 0.3s ease !important;
        }

        .owl-dots .owl-dot.active span,
        .owl-dots .owl-dot:hover span {
            background: var(--accent-color) !important;
            transform: scale(1.2) !important;
        }

        /* Scroll to Top */
        .scroll-to-top {
            position: fixed;
            bottom: 100px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--gradient-primary);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 1.2rem;
            box-shadow: var(--shadow-medium);
            opacity: 0;
            visibility: hidden;
            transform: translateY(100px);
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .scroll-to-top.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .scroll-to-top:hover {
            background: var(--gradient-accent);
            transform: translateY(-3px);
            box-shadow: var(--shadow-heavy);
            color: var(--white);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .banner-content h1 {
                font-size: 2rem;
            }
            
            .service-section h2 {
                font-size: 1.5rem;
            }
            
            .contact-info {
                flex-direction: column;
                gap: 1rem;
            }

            .footer-container {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .footer-column {
                margin-bottom: 0px;
            }

            .social-icons {
                justify-content: center;
            }

            .appointment-form {
                padding: 1.5rem;
            }

            .service-content {
                padding: 4rem 0;
            }

            .service-image img {
                height: 300px;
            }

            .equal-height-container {
                flex-direction: column;
            }

            .equal-height-container .col-lg-6,
            .equal-height-container .col-lg-7,
            .equal-height-container .col-lg-5 {
                margin-bottom: 2rem;
            }
        }

        @media (max-width: 576px) {
            .banner-content h1 {
                font-size: 1.8rem;
            }
            
            .btn {
                padding: 0.6rem 1.5rem;
                font-size: 0.8rem;
            }

            .section-title h2 {
                font-size: 1.8rem;
            }

            .service-card {
                height: auto;
                min-height: 400px;
            }

            .review-card {
                height: auto;
                min-height: 250px;
            }
        }
  


        
    }
    
    
    
    
    /***home responsive ****/
    .banner-only_home {
  min-height: 100vh;
  background-color: #1e1e1e;
  background-size: cover;
  background-position: center;
  padding: 100px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

/* Tablet view */
@media (max-width: 1000px) {
  .banner-only_home {
      height:90vh;
 
    background-position: center top;
  }
}

/* Mobile view */
@media (max-width: 480px) {
  .banner-only_home {
    height:140vh;
    padding:80px 30px;
    background-size: cover;
    text-align: center;
  }
}

@media (max-width: 290px) {
  .banner-only_home {
    height:200vh;
    padding:80px 30px;
    background-size: cover;
    text-align: center;
  }
}

.recaptcha-wrapper {
  transform: scale(0.85);
  transform-origin: 0 0;
  margin-bottom:10px;
  height: 65px; /* Adjust height as per scaled version */
}

@media (max-width: 768px) {
  .recaptcha-wrapper {
    transform: scale(0.75);
    margin-bottom:20px;
    height: 58px;
  }
}

@media (max-width: 480px) {
  .recaptcha-wrapper {
     margin-bottom:20px;
    transform: scale(0.65);
    height: 50px;
  }
}

.customer-say-section .testimonial-card i.fas.fa-star {
  color: #244B6F !important;
}

.owl-carousel .item {
  height: 100%;
}

@media (max-width: 576px) {
  .customer-say-section .container-fluid {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .customer-say-section h2 {
    font-size: 1.75rem;
  }

  .testimonial-card {
    font-size: 0.95rem;
  }
}

.responsive-heading {
  font-size: 2rem; /* Default for mobile */
}

@media (min-width: 576px) {
  .responsive-heading {
    font-size: 2.5rem; /* Bootstrap display-5 */
  }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
  .responsive-heading {
    font-size: 1.75rem; /* Bootstrap display-6 for md and lg */
  }
}

@media (min-width: 1200px) {
  .responsive-heading {
    font-size: 2.5rem; /* Back to display-5 for xl and above */
  }
}

@media(min-width:450px)
{
    .footer-container {
            display: flex;
            flex-wrap: wrap;
            max-width: 1200px;
            margin: auto;
            
            gap: 40px;
            
            justify-content: space-between;
        }

}
@media (max-width:450px)
{
    .footer-container {
            display: flex;
            flex-wrap: wrap;
            max-width: 1200px;
            margin: auto;
            
            gap: -40px;
            
            justify-content: space-between;
        }
}
