.header-style-03+.banner {
    margin-top: -250px !important;
}
.page-title-strip {
        background: linear-gradient(135deg, #046DFF, #0047ab);
        padding: 14px 0;
        overflow: hidden;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
    }

    /* BREADCRUMB */
    .page-title-strip .breadcrumb {
        margin: 0;
        padding: 0;
        background: transparent;
    }

    .page-title-strip .breadcrumb li {
        display: inline-block;
        color: #fff;
        font-size: 13px;
        font-weight: 500;
    }

    .page-title-strip .breadcrumb li a {
        color: #fff;
        text-decoration: none;
        opacity: 0.9;
        transition: 0.3s;
    }

    .page-title-strip .breadcrumb li a:hover {
        opacity: 1;
        text-decoration: underline;
    }

    .page-title-strip .breadcrumb li+li:before {
        content: "›";
        padding: 0 8px;
        color: #ddd;
    }

    /* MARQUEE */
    .marquee-box {
        overflow: hidden;
        position: relative;
    }

    .marquee-track {
        display: inline-flex;
        white-space: nowrap;
        animation: marquee 22s linear infinite;
    }

    .marquee-track span {
        color: #ffffff;
        font-weight: 500;
        margin-right: 40px;
        font-size: 14px;
        opacity: 0.95;
    }

    /* Hover pause */
    .marquee-box:hover .marquee-track {
        animation-play-state: paused;
    }

    @keyframes marquee {
        0% {
            transform: translateX(100%);
        }

        100% {
            transform: translateX(-100%);
        }
    }

    /* MOBILE */
    @media (max-width: 768px) {
        .page-title-strip {
            text-align: center;
        }

        .marquee-track span {
            font-size: 13px;
            margin-right: 25px;
        }
    }

     .service-card-best {
        height: 100%;
        border-radius: 20px;
        padding: 32px 26px;
        transition: all 0.45s ease;
    }

    .service-card-best:hover {
        transform: translateY(-10px);
        box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18);
    }

    .service-text {
        text-align: justify;
        font-size: 15px;
        line-height: 1.75;
        margin-top: 10px;
    }

    .service-card-best {
        height: 100%;
        border-radius: 20px;
        padding: 32px 26px;
        transition: all 0.45s ease;
        position: relative;
    }

    .service-card-best:hover {
        transform: translateY(-10px);
        box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18);
    }

    .feature-info-icon {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
    }

    .feature-info-icon i {
        width: 64px;
        height: 64px;
        min-width: 64px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 26px;
        border-radius: 50%;
        background: linear-gradient(135deg, #0d6efd, #4facfe);
        color: #fff;
        box-shadow: 0 12px 30px rgba(13, 110, 253, 0.45);
        transition: all 0.4s ease;
    }

    .bg-primary .feature-info-icon i,
    .bg-dark .feature-info-icon i {
        background: linear-gradient(135deg, #ffffff, #e7efff);
        color: #0d6efd;
    }

    .service-card-best:hover .feature-info-icon i {
        transform: rotate(360deg) scale(1.08);
    }

    .feature-info-title {
        font-weight: 600;
    }

    p {
        line-height: 1.7;
    }