   .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;
        }
    }

     /* ===== Common Card Style ===== */
    .contact-info-card,
    .contact-form-card,
    .location-card,
    .info-card {
        background: #ffffff;
        padding: 32px;
        border-radius: 20px;
        height: 100%;
        position: relative;
        overflow: hidden;
        box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
        transition: all 0.4s ease;
    }

    .contact-info-card p,
    .contact-form-card p,
    .location-card p,
    .info-card p {
        text-align: justify;
    }

    /* Top Gradient Line */
    .contact-info-card::before,
    .contact-form-card::before,
    .location-card::before,
    .info-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, #0d6efd, #4facfe);
    }

    /* Hover */
    .contact-info-card:hover,
    .contact-form-card:hover,
    .location-card:hover,
    .info-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 32px 75px rgba(0, 0, 0, 0.16);
    }

    /* ===== Contact Info Card ===== */
    .contact-info-card h4 {
        font-weight: 600;
        line-height: 1.5;
    }

    .contact-info-card p {
        color: #6c757d;
        margin-bottom: 0;
    }

    /* ===== Form Styling ===== */
    .contact-form-card h3 {
        font-weight: 600;
    }

    .contact-form-card .form-control {
        border-radius: 12px;
        padding: 12px 14px;
        border: 1px solid #e5e5e5;
        transition: 0.3s;
    }

    .contact-form-card .form-control:focus {
        border-color: #0d6efd;
        box-shadow: 0 0 0 0.15rem rgba(13, 110, 253, .15);
    }

    .contact-form-card .btn {
        border-radius: 30px;
        padding: 10px 26px;
    }

    /* ===== Location Cards ===== */
    .location-card {
        text-align: center;
    }

    .location-card img {
        max-width: 68px;
        margin-bottom: 16px;
    }

    .location-card h4 {
        font-size: 18px;
        margin-bottom: 6px;
    }

    .location-card p {
        font-size: 14.5px;
        color: #6c757d;
    }

    /* ===== Info Cards ===== */
    .info-card {
        text-align: center;
    }

    .info-card h4 {
        font-weight: 600;
        margin-bottom: 12px;
    }

    .info-card p {
        color: #6c757d;
        margin-bottom: 20px;
    }

    .info-card .btn {
        border-radius: 30px;
        padding: 8px 24px;
    }

    /* ===== Responsive ===== */
    @media (max-width: 575px) {

        .contact-info-card,
        .contact-form-card,
        .location-card,
        .info-card {
            padding: 24px;
            border-radius: 16px;
        }
    }