/* Global Settings */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* Top Scrolling Bar */
.top-bar {
    background-color: #0f172a;
    font-size: 13px;
}

.blink-dot {
    animation: blink 1s linear infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

.marquee-wrapper {
    white-space: nowrap;
}

.marquee-text {
    display: inline-block;
    color: #f59e0b;
    font-weight: 600;
    animation: marquee 18s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Hero Section */
.hero-section {
    min-height: 80vh;
}

.hero-card {
    transition: transform 0.3s ease;
}

.hero-card:hover {
    transform: translateY(-5px);
}

/* Service Banners & Cards */
.service-banner,
.proof-img {
    height: 190px;
    object-fit: cover;
}

.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

