   /* Header */
        .header-bg {
            background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(/img/pakhal-img/7.jpg) center center no-repeat;
            background-size: cover;
        }


        /* Service Items */
        .service-item {
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .service-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(48, 199, 124, 0.3);
            border-color: var(--primary);
            background: white !important;
        }

        .service-item .rounded-circle {
            transition: all 0.3s ease;
        }

        .service-item:hover .rounded-circle {
            background: var(--primary) !important;
            transform: rotate(360deg);
        }

        .service-item:hover .rounded-circle i {
            color: white !important;
        }

        /* Contact Box */
        .contact-box {
            transition: all 0.3s ease;
        }

        .contact-box:hover {
            transform: scale(1.02);
        }

          /* Responsive */
        @media (max-width: 768px) {
            .header-bg h1 {
                font-size: 2rem;
            }
        }