@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;800&display=swap');

body, html {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

.hero-section {
    background: linear-gradient(135deg, rgba(33, 37, 41, 0.85), rgba(33, 37, 41, 0.7)), url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?auto=format&fit=crop&q=80&w=1920');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.tracking-wide {
    letter-spacing: 0.15em;
}

.ls-2 {
    letter-spacing: 2px;
}

.mvv-section-container {
    background: white;
}

.mvv-item {
    padding: 1rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.mvv-item:hover {
    transform: translateY(-5px);
}

.mvv-item-icon {
    width: 80px;
    height: 80px;
    font-size: 2.5rem;
    background-color: #f0f8ff;
    color: #0d6efd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    transition: all 0.3s ease;
}

.mvv-item:hover .mvv-item-icon {
    background-color: #0d6efd;
    color: white;
    box-shadow: 0 10px 20px rgba(13, 110, 253, 0.3);
}

@media (min-width: 768px) {
    .side-borders {
        border-left: 1px solid #eee;
        border-right: 1px solid #eee;
    }
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: #e9ecef;
    left: 24px;
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 3rem;
}

.timeline-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border: 4px solid #0d6efd;
    border-radius: 50%;
    left: 15px;
    top: 5px;
    z-index: 2;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-dot {
    background-color: #0d6efd;
    transform: scale(1.3);
    box-shadow: 0 0 0 5px rgba(13, 110, 253, 0.2);
}

.timeline-content {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #f1f1f1;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-content {
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    background-color: white !important;
}

.social-icons-row .social-icon-link {
    color: #6c757d;
    font-size: 2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons-row .social-icon-link:hover {
    transform: scale(1.15);
}

.social-icons-row .social-icon-link.bi-facebook:hover { color: #1877F2; }
.social-icons-row .social-icon-link.bi-instagram:hover { color: #E1306C; }

.social-icons-row .social-icon-link.bi-telegram:hover { color: #0088cc; }

.social-icons-row .social-icon-link.bi-tiktok:hover { color: #000000; filter: drop-shadow(2px 2px 0px rgba(255,0,80,0.5)); }

@media (max-width: 768px) {
    .timeline::before { left: 19px; }
    .timeline-dot { left: 10px; }
    .timeline-item { padding-left: 45px; }
    .display-3 { font-size: 2.5rem; }
}