        .card-box-01 h1 {
            font-size: 26px;
        }

        .card-box-01 h2 {
            font-size: 26px;
        }

        .card-box-01 p {
            font-size: 16px;
            /* padding-left: 20px; */
        }

        .card-box-01 .list_items li {
            font-size: 16px;
        }

        .service_installation {
            box-shadow: 2px 4px 10px rgb(216, 216, 216);
            border-radius: 10px;
            padding: 10px;
            flex: 1;
            margin: 30px 0px;
        }

        .service_installation h5 {
            font-size: 24px;
            color: #222;
            margin-top: 1em;
        }

        .footer-section {
            background-color: #f8f9fa;
            padding: 40px 0;
            color: #333;
        }

        .footer-section h3 {

            font-size: 24px;
            font-weight: bold;
            color: #d70b0b;
            margin-bottom: 20px;
        }

        .footer-section p {

            font-size: 16px;
            line-height: 1.8;
            color: #555;
        }

        .footer-section .container {
            max-width: 1200px;
            margin: auto;
        }

        .footer-section img {
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            margin-top: 20px;
        }

        .footer-section .row {
            margin-bottom: 20px;
        }

        .footer-section .col-sm-6 {
            padding: 20px;
        }

        .footer-section .col-md-3 img {
            max-width: 150px;
            margin: 0 auto;
        }

        @media screen and (max-width: 425px) {
            .service_installation img {
                max-width: 75px !important;
            }

            .service_installation {
                margin: 10px 0px;
            }
        }


        @media (max-width: 768px) {
            .footer-section h3 {
                font-size: 20px;
            }

            .footer-section p {
                font-size: 14px;
            }

            .card-box-01 p {
                font-size: 14px;
                padding-left: 10px !important;
            }
        }

        .inner-foot-card {
            box-shadow: 2px 4px 10px rgb(226, 226, 226);
            padding: 15px;
            border-radius: 13px;
            flex: 1;
        }



        .service_installation {
            position: relative;
            display: inline-block;
            padding: 20px;
            background-color: #f9f9f9;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
        }

        .service_installation img {
            max-width: 100px;
            transition: transform 0.3s ease;
        }

        .service_installation h5 {
            font-size: 18px;
            font-weight: bold;
            margin-top: 15px;
            transition: color 0.3s ease;
        }

        .service_installation p {
            font-size: 14px;
            color: #555;
            margin-top: 10px;
            transition: color 0.3s ease;
        }


        .service_installation:hover {
            transform: translateY(-10px);
            background-color: #eaf7ff;
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
        }

        .service_installation:hover img {
            transform: scale(1.1);
        }

        .service_installation:hover h5 {
            color: #0078d7;
        }

        .service_installation:hover p {
            color: #333;
        }