     .service-card {
            border-radius: 10px;
            transition: transform 0.3s;
            margin-bottom: 20px;
            height: 100%;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }

        .service-card .card-body {
            padding: 25px;
            text-align: center;
        }

        .service-icon {
            width: 100%;
            height: 100px;
            margin-bottom: 15px;
            object-fit: contain;
        }

        a.service-link {
            text-decoration: none;
            color: inherit;
        }

        a.service-link:hover {
            text-decoration: none;
            color: inherit;
        }

        /* Loading Animation */
        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        #servicesContainer {
            animation: fadeIn 0.5s ease-in-out;
        }

        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .col-md-3 {
                flex: 0 0 50%;
                max-width: 50%;
            }
        }

        @media (max-width: 576px) {
            .col-md-3 {
                flex: 0 0 100%;
                max-width: 100%;
            }

            .search-box input {
                padding: 10px 15px;
            }
        }

        .search-container {
            margin: 20px 0 30px;
        }

        .search-box {
            position: relative;
        }

        #searchInput {
            transition: all 0.3s ease;
            height: 50px;
            font-size: 16px;
        }

        #searchInput:focus {
            border-color: #0d6efd !important;
            box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.1) !important;
        }

        #searchButton,
        #clearSearch {
            background: transparent;
            border: none;
            font-size: 18px;
            padding: 0;
            cursor: pointer;
            transition: color 0.2s;
        }

        #searchButton:hover,
        #clearSearch:hover {
            color: #0d6efd !important;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .search-container {
                margin: 15px 0 25px;
            }

            #searchInput {
                height: 45px;
                font-size: 15px;
            }
        }

        /* Loading Spinner Styles */
        .loading-spinner {
            background-color: rgba(255, 255, 255, 0.9);
            border-radius: 10px;
            animation: fadeIn 0.3s ease-out;
        }

        .spinner-border {
            --bs-spinner-width: 2.5rem;
            --bs-spinner-height: 2.5rem;
            --bs-spinner-vertical-align: -0.65em;
            --bs-spinner-border-width: 0.25em;
            --bs-spinner-animation-speed: 0.75s;
        }

        /* No Results Styles */
        .no-results {
            background-color: rgba(255, 255, 255, 0.9);
            border-radius: 10px;
            animation: fadeIn 0.3s ease-out;
        }

        .no-results-icon {
            margin-bottom: 1.5rem;
        }

        /* Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {

            .loading-spinner,
            .no-results {
                padding: 2rem 1rem !important;
            }

            .no-results-icon i {
                font-size: 2.5rem !important;
            }

            .no-results h4 {
                font-size: 1.25rem;
            }
        }

        