
        /* ================= HERO SLIDER ================= */
        .service-hero {
            overflow: hidden;
        }

        .service-hero-slide {
            min-height: 620px;
            display: flex;
            align-items: center;
            background-image: linear-gradient(270deg, #8d8a3a 0%, #73bf44 100%);
        }

        .service-hero h1 {
            font-size: 42px;
            line-height: 1.2;
        }

        .service-hero p {
            font-size: 16px;
            opacity: 0.95;
        }

        .service-hero-img img {
            width: 100%;
            height: 620px;
            object-fit: cover;
        }

        .hero-buttons .btn {
            padding: 10px 24px;
        }

        .carousel-control-prev,
        .carousel-control-next {
            width: 60px;
        }

        /* ================= MOBILE RESPONSIVE ================= */
        @media (max-width: 991px) {

            .service-hero-slide {
                min-height: auto;
                padding: 30px 0;
            }

            .service-hero h1 {
                font-size: 28px;
            }

            .service-hero-img img {
                height: 260px;
            }

            .hero-content {
                text-align: center;
            }

            .hero-buttons .btn {
                width: 100%;
                margin-bottom: 10px;
            }
        }
