html {
    scroll-behavior: smooth;
}

#profil {
    scroll-margin-top: 100px; 
}

.hero-section {
    margin-top: -100px; 
    height: 85vh; 
    min-height: 600px;
    position: relative;
    background-attachment: fixed; 
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(0, 35, 82, 0.9) 0%, rgba(13, 110, 253, 0.6) 100%);
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlap-container {
    margin-top: -100px;
    position: relative;
    z-index: 10;
}

.stat-box {
    background: #fff;
    padding: 20px;
    text-align: center;
    border-right: 1px solid #eee;
    transition: transform 0.3s;
}

.stat-box:hover { 
    transform: translateY(-5px); 
}

.stat-box i { 
    font-size: 2.5rem; 
    margin-bottom: 10px; 
    color: #0d6efd; 
}

.stat-number { 
    font-size: 2rem; 
    font-weight: 800; 
    color: #333; 
    line-height: 1; 
}

.stat-label { 
    font-size: 0.9rem; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    color: #666; 
}

.stat-box.no-border {
    border-right: none;
}

.section-title-wrapper {
    position: relative;
    margin-bottom: 3rem;
    display: inline-block;
}

.section-title-wrapper::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #0d6efd;
    margin: 10px auto 0;
    border-radius: 2px;
}

.vm-card {
    border: none;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-top: 5px solid #0d6efd;
    height: 100%;
    transition: all 0.3s ease;
}

.vm-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(13, 110, 253, 0.15);
}

.vm-icon-wrapper {
    width: 70px; height: 70px;
    background: rgba(13, 110, 253, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #0d6efd;
}

.vm-card.variant-yellow {
    border-top-color: #ffc107;
}

.vm-icon-wrapper.variant-yellow {
    color: #ffc107; 
    background: rgba(255, 193, 7, 0.1);
}

.news-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
    height: 100%;
    background: #fff;
    position: relative;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.news-img-wrapper {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.news-img-wrapper.placeholder-bg {
    background-color: #f8f9fa;
}

.news-img-wrapper img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s;
}

.news-card:hover .news-img-wrapper img { 
    transform: scale(1.1); 
}

.date-badge {
    position: absolute;
    top: 15px; right: 15px;
    background: rgba(255,255,255,0.95);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    color: #333;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.bg-pattern {
    background-color: #f8f9fa;
    background-image: radial-gradient(#dee2e6 1px, transparent 1px);
    background-size: 20px 20px;
}

.bg-gradient-primary {
    background: linear-gradient(45deg, #0b5ed7, #0d6efd);
}

.running-text-container {
    width: 100%;
    background-color: #ffc107;  
    color: #000; 
    overflow: hidden;
    white-space: nowrap;
    padding: 12px 0;
    position: relative;
    z-index: 9999;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.running-text-content {
    display: inline-block;
    font-weight: bold;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;

    padding-left: 100%;
    animation: marquee-animation 20s linear infinite;
}

@keyframes marquee-animation {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(-100%, 0);
    }
}