/* Additional app styles - main styles are in blade layouts */
:root { scroll-behavior: smooth; }
img { max-width: 100%; }
.swiper-button-prev, .swiper-button-next { color: white !important; }
.hero-swiper,
.hero-content-swiper,
.testimonials-swiper {
    width: 100%;
}

.hero-swiper .swiper-slide,
.hero-content-swiper .swiper-slide,
.testimonials-swiper .swiper-slide {
    width: 100%;
}

.hero-swiper .swiper-slide,
.hero-content-swiper .swiper-slide {
    opacity: 0;
    transition: opacity 0.6s ease;
}

.hero-swiper .swiper-slide-active,
.hero-content-swiper .swiper-slide-active {
    opacity: 1;
}

.hero-content-swiper {
    overflow: hidden;
}

.trusted-strip {
    padding: 30px 0;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.trusted-marquee {
    display: flex;
    align-items: center;
    gap: 32px;
}

.trusted-label {
    color: #94a3b8;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
}

.trusted-track-wrap {
    overflow: hidden;
    flex: 1;
}

.trusted-track {
    display: flex;
    align-items: center;
    gap: 40px;
    width: max-content;
    animation: trusted-scroll 28s linear infinite;
}

.trusted-item {
    font-size: 15px;
    font-weight: 700;
    color: #94a3b8;
    white-space: nowrap;
    transition: color 0.2s;
    cursor: default;
}

.trusted-item:hover {
    color: #0f4c81;
}

.trusted-marquee:hover .trusted-track {
    animation-play-state: paused;
}

@keyframes trusted-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .trusted-marquee {
        gap: 16px;
    }

    .trusted-track {
        gap: 24px;
        animation-duration: 22s;
    }
}
.pagination { display: flex; gap: 6px; list-style: none; flex-wrap: wrap; }
.pagination .page-item .page-link {
    padding: 7px 13px; border-radius: 7px; text-decoration: none;
    background: #f8fafc; color: #475569; font-size: 13.5px; border: 1.5px solid #e2e8f0;
    transition: all 0.15s;
}
.pagination .page-item.active .page-link {
    background: var(--primary, #0f4c81); color: white; border-color: var(--primary, #0f4c81);
}
.pagination .page-item .page-link:hover { background: #e2e8f0; }
