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

.hv-landing-page {
    font-family: 'Poppins', sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.hv-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hv-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.hv-header .hv-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hv-logo h2 {
    margin: 0;
    color: #fff;
    font-weight: 700;
}

.hv-nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    font-weight: 500;
    transition: color 0.3s;
}

.hv-nav a:hover {
    color: #7C3AED;
}

.hv-btn {
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.hv-btn-primary {
    background: linear-gradient(135deg, #4F46E5, #7C3AED);
    color: #fff;
    border: none;
}

.hv-btn-secondary {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.hv-hero {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1541339907198-e08756dedf3f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.hv-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hv-hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
    text-align: center;
    width: 100%;
}

.hv-badge {
    background: rgba(124, 58, 237, 0.2);
    border: 1px solid #7C3AED;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 20px;
}

.hv-hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin: 0 0 20px;
    line-height: 1.2;
}

.hv-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 50px;
}

.hv-stat-item h3 {
    font-size: 2.5rem;
    margin: 0;
    color: #4F46E5;
}