﻿/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

    .hero-section::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 500px;
        height: 500px;
        background: rgba(13, 110, 253, 0.05);
        border-radius: 50%;
        z-index: 0;
    }

.hero-content {
    position: relative;
    z-index: 1;
}

.min-vh-75 {
    min-height: 75vh;
}

/* Floating Cards Animation */
.illustration-container {
    position: relative;
    height: 500px;
}

.stat-card {
    animation: float 3s ease-in-out infinite;
    transition: transform 0.3s ease;
}

    .stat-card:nth-child(1) {
        animation-delay: 0s;
    }

    .stat-card:nth-child(2) {
        animation-delay: 1s;
    }

    .stat-card:nth-child(3) {
        animation-delay: 2s;
    }

    .stat-card:hover {
        transform: translateY(-10px) !important;
    }

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Feature Cards */
.hover-lift {
    transition: all 0.3s ease;
}

    .hover-lift:hover {
        transform: translateY(-10px);
        box-shadow: 0 1rem 3rem rgba(0,0,0,.175) !important;
    }

.feature-icon {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Stats Section */
.stat-item {
    padding: 2rem;
    transition: all 0.3s ease;
}

    .stat-item:hover {
        transform: scale(1.05);
    }

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
}

/* Buttons */
.btn-lg {
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .display-3 {
        font-size: 2.5rem;
    }

    .illustration-container {
        height: 300px;
    }

    .stat-card {
        position: relative !important;
        margin-bottom: 1rem;
    }
}
