.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;
    }
}

.services-portfolio {
    padding: 90px 0;
}

/* ===== Card ===== */
.portfolio-card {
    border-radius: 22px;
    overflow: hidden;
    transition: all 0.45s ease;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    height: 100%;
}

/* Image */
.portfolio-img img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    transition: 0.5s ease;
}

/* Hover image zoom */
.portfolio-card:hover .portfolio-img img {
    transform: scale(1.1);
}

/* Body */
.portfolio-body {
    padding: 28px;
    text-align: center;
}

/* Icon */
.portfolio-body i {
    font-size: 32px;
    margin-bottom: 14px;
    color: #0d6efd;
}

/* Icon color for dark cards */
.bg-primary .portfolio-body i,
.bg-dark .portfolio-body i {
    color: #ffffff;
}

/* Title */
.portfolio-body h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Text */
.portfolio-body p {
    font-size: 15px;
    line-height: 1.7;
}

/* Card hover */
.portfolio-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.18);
}

/* Responsive */
@media(max-width:575px) {
    .portfolio-img img {
        height: 180px;
    }

    .portfolio-body {
        padding: 22px;
    }
}