@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-color: #f9fafb;
}

.navbar {
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

    .navbar.scrolled {
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

.hero-section {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.9), rgba(168, 85, 247, 0.9)), url('https://images.unsplash.com/photo-1456513080510-7bf3a84b82f8');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.3);
        z-index: 1;
    }

.hero-content {
    position: relative;
    z-index: 2;
}

.timeline-dot {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .timeline-dot:hover {
        transform: scale(1.2);
        box-shadow: 0 0 12px rgba(99, 102, 241, 0.6);
    }

.timeline-line {
    background: linear-gradient(to bottom, #6366f1, #a855f7);
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.4);
}

.btn-primary {
    background: #6366f1;
    border: none;
    transition: all 0.3s ease;
}

    .btn-primary:hover {
        background: #4f46e5;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
    }

.logo-img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 0.5rem;
}

@keyframes slide-down {
    from {
        transform: translateY(-10px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.animate-slide-down:not(.hidden) {
    animation: slide-down 0.3s ease-out forwards;
}
