:root {
    --primary: #0d6efd;
    --secondary: #198754;
    --light: #f8f9fa;
    --dark: #212529;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background-color: #f4f6f9;
}

body {
    font-family: 'Poppins', sans-serif;
}
h1,h2,h3,h4 {
    font-family: 'Merriweather', serif;
}

img {
    max-width: 100%;
    object-fit: cover;
}


.notification-bar {
    background: #0d6efd;
    color: #fff;
    overflow: hidden;
    font-weight: 500;
}

.notification-inner {
    width: 100%;
    overflow: hidden;
}

.notification-track {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    animation: noticeScroll 20s linear infinite;
}

.notification-item {
    padding: 10px 60px;
    font-size: 15px;
}

/* KEYFRAMES */
@keyframes noticeScroll {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}


.card {
    border: none;
    border-radius: 12px;
    transition: transform .2s ease, box-shadow .2s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

.btn {
    border-radius: 30px;
    padding: 8px 20px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #4f9dff);
    border: none;
}
.navbar-dark .nav-link {
    font-weight: 500;
}

.navbar-dark .nav-link:hover {
    color: #ffc107;
}

.navbar {
    border-radius: 0 0 15px 15px;
}

a.card {
    color: inherit;
}
a.card:hover {
    background-color: #f1f5ff;
}

footer {
    margin-top: 60px;
}