
        .service-hero {
            padding: 80px 0;

            position: relative;
            overflow: hidden;
        }

        .service-hero-content {
            display: flex;
            flex-direction: row-reverse;
            align-items: center;
            gap: 50px;
        }

        .service-hero-text {
            flex: 1;
        }
    .service-hero-text p{
          margin-top: 10px;
        }
        .service-hero-text h1 {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
            color: #2c3e50;
        }

        .service-hero-text h1 span {
            color: #F8821D;
        }

        .service-hero-text p {
            font-size: 18px;
            margin-bottom: 5px;
            color: #6c757d;
            line-height: 1.6;
        }

        .btn-primary {
            display: inline-block;
            background-color: #F8821D;
            color: white;
            padding: 12px 30px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .btn-primary:hover {
            background-color: #e67300;
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(248, 130, 29, 0.3);
        }

        .service-hero-image {
            flex: 1;
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            transform: perspective(1000px) rotateY(10deg);
            transition: transform 0.5s ease;
        }

        .service-hero-image:hover {
            transform: perspective(1000px) rotateY(0deg);
        }

        .service-hero-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }

        .service-hero-image:hover img {
            transform: scale(1.02);
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .service-hero-content {
                flex-direction: column;
                gap: 30px;
            }

            .service-hero-text {
                text-align: center;
            }

            .service-hero-text h1 {
                font-size: 36px;
            }

            .service-hero-image {
                max-width: 80%;
                margin: 0 auto;
            }
        }

        @media (max-width: 768px) {
            .service-hero {
                padding: 60px 0;
            }

            .service-hero-text h1 {
                font-size: 22px;
            }

            .service-hero-text p {
                font-size: 16px;
            }

            .service-hero-image {
                max-width: 100%;
            }
        }
    