  
        /* Additional CSS for service filtering */
        .service-filter {
            margin-bottom: 40px;
            text-align: center;
        }
        .service-filter button {
            background: #f5f5f5;
            border: none;
            padding: 10px 20px;
            margin: 5px;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 14px;
        }
        .service-filter button:hover, 
        .service-filter button.active {
            background: #3CB043;
            color: white;
        }
        .service-item {
            transition: all 0.3s ease;
            margin-bottom: 30px;
        }
        .service-item.hide {
            display: none;
        }
      
        .special-offer-banner {
            position: relative;
            width: auto;
            height: 1000px;
            background: url('assets/img/low.jpg') no-repeat center center;
            background-size: cover;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: #fff;
            text-align: center;
            padding: 60px 20px;
            overflow: hidden;
            animation: fadeInUp 1.2s ease-in-out forwards;
        }

        .special-offer-banner h3 {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 20px;
            animation: fadeIn 1.4s ease-in-out forwards;
        }

        .special-offer-banner p {
            font-size: 1.2rem;
            max-width: 700px;
            opacity: 0.95;
            margin-bottom: 30px;
            animation: fadeIn 1.6s ease-in-out forwards;
        }

        .special-offer-banner .btn {
            background: #fff;
            color: #3CB043;
            padding: 14px 36px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 1rem;
            text-transform: uppercase;
            text-decoration: none;
            transition: all 0.3s ease;
            animation: fadeIn 1.8s ease-in-out forwards;
        }

        .special-offer-banner .btn:hover {
            background: #3CB043;
            color: #fff;
        }

        .special-offer-banner .offer-tag {
            position: absolute;
            top: 20px;
            right: 20px;
            background: #fff;
            color: #3CB043;
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: bold;
            font-size: 0.9rem;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
            animation: fadeInDown 1s ease-in-out forwards;
        }

        /* Animations */
        @keyframes fadeInUp {
            0% {
                transform: translateY(50px);
                opacity: 0;
            }
            100% {
                transform: translateY(0);
                opacity: 1;
            }
        }

        @keyframes fadeIn {
            0% {
                opacity: 0;
                transform: scale(0.95);
            }
            100% {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes fadeInDown {
            0% {
                transform: translateY(-30px);
                opacity: 0;
            }
            100% {
                transform: translateY(0);
                opacity: 1;
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .special-offer-banner {
                height: auto;
                padding: 80px 20px;
            }

            .special-offer-banner h3 {
                font-size: 2rem;
            }

            .special-offer-banner p {
                font-size: 1rem;
            }

            .special-offer-banner .btn {
                font-size: 0.95rem;
                padding: 12px 26px;
            }
            
            .service-filter {
                overflow-x: auto;
                white-space: nowrap;
                padding-bottom: 10px;
            }
            
            .service-filter button {
                margin: 3px;
                padding: 8px 15px;
                font-size: 13px;
            }
        }
        
        /* Fallback for brand logos */
        .brand-box {
            min-height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .brand-box a {
            font-weight: bold;
            color: #333;
            text-decoration: none;
        }
        
        /* Breadcrumb Styles */
        .breadcumb-wrapper {
            background-size: cover; 
            background-position: center; 
            background-repeat: no-repeat; 
            width: 100%; 
            min-height: 300px; 
            display: flex; 
            align-items: center; 
            justify-content: center;
        }
        
        .breadcumb-content {
            text-align: center; 
            color: #fff;
        }
        
        .breadcumb-menu {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .breadcumb-menu li {
            display: inline-block;
            margin-right: 10px;
        }
        
        .breadcumb-menu a {
            color: #fff;
            text-decoration: none;
        }
        
        .breadcumb-menu a:hover {
            color: #3CB043;
        }
        
        /* Scroll to top button */
        .scroll-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            background: #3CB043;
            border-radius: 50%;
            cursor: pointer;
            display: none;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
        }
        
        .scroll-top:hover {
            background: #072e75;
            transform: translateY(-3px);
        }
        
        .scroll-top svg {
            width: 100%;
            height: 100%;
        }
        
        /* Desktop */
        .breadcumb-wrapper {
            height: 500px;
        }
        /* Tablet */
        @media (max-width: 992px) {
            .breadcumb-wrapper {
                height: 400px;
            }
        }
        /* Mobile */
        @media (max-width: 576px) {
            .breadcumb-wrapper {
                height: 250px;
            }
            
            .breadcumb-title {
                font-size: 28px !important;
            }
        }
        
        /* Service Section Spacing */
        .space-top {
            padding-top: 80px;
        }
        
        .space-bottom {
            padding-bottom: 80px;
        }
        
        /* Section Title Styling */
        .title-area {
            margin-bottom: 50px;
        }
        
        .sub-title {
            color: #3CB043;
            font-weight: 600;
            font-size: 16px;
            text-transform: uppercase;
            letter-spacing: 2px;
            display: block;
            margin-bottom: 10px;
        }
        
        .sec-title {
            color: #072e75;
            font-size: 42px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 15px;
        }
        
        .sec-text {
            color: #666;
            font-size: 18px;
            line-height: 1.6;
        }
        
        @media (max-width: 768px) {
            .sec-title {
                font-size: 32px;
            }
            
            .sec-text {
                font-size: 16px;
            }
            
            .space-top, .space-bottom {
                padding-top: 60px;
                padding-bottom: 60px;
            }
        }

      