/* 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 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #94a3b8;
    white-space: nowrap;
    transition: color 0.2s;
    cursor: default;
}

.trusted-item .trusted-link,
.trusted-item .trusted-text {
    color: inherit;
    text-decoration: none;
    font-weight: inherit;
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

.trusted-logo {
    height: 26px;
    width: auto;
    max-width: 70px;
    object-fit: contain;
    filter: grayscale(10%);
    flex-shrink: 0;
}

.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;
    }
}

.about-trust {
    background:
        radial-gradient(1200px 400px at 10% -10%, rgba(59,130,246,0.12), transparent 60%),
        radial-gradient(900px 300px at 90% 10%, rgba(16,185,129,0.12), transparent 60%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.about-trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    align-items: stretch;
}

.about-trust-card {
    position: relative;
    background: rgba(255,255,255,0.9);
    border-radius: 18px;
    border: 1.5px solid rgba(148,163,184,0.28);
    padding: 16px 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    box-shadow: 0 12px 30px rgba(15,23,42,0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    overflow: hidden;
}

.about-trust-card:hover {
    transform: translateY(-6px);
    border-color: rgba(59,130,246,0.5);
    box-shadow: 0 18px 40px rgba(37,99,235,0.16);
}

.about-trust-logo {
    height: 26px;
    width: auto;
    max-width: 70px;
    object-fit: contain;
    flex-shrink: 0;
}

.about-trust-name {
    color: #64748b;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

.about-trust-glow {
    position: absolute;
    inset: -40% -20% auto auto;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(59,130,246,0.18), transparent 60%);
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}

.about-trust-card:hover .about-trust-glow {
    opacity: 1;
}

@media (max-width: 768px) {
    .about-trust-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
    .about-trust-card {
        padding: 14px 14px;
    }
}
.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; }
