/* Home Page Specific Styles */

/* Hero Section Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes scrollDown {
    0% { top: 0; opacity: 1; }
    30% { opacity: 1; }
    60% { opacity: 0; }
    100% { top: 100%; opacity: 0; }
}

@keyframes subtle-move {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100px 100px;
    }
}

/* Hero Button Styles */
.hero-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.hero-btn.secondary:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-3px);
}

/* Stat Card Hover Effects */
.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Feature Card Hover Effects */
.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.25);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.feature-card-modern {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-card-modern:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-xl);
}

.feature-icon-bg {
    transition: all 0.4s ease;
}

.feature-card-modern:hover .feature-icon-bg {
    transform: scale(1.1) rotate(5deg);
}

/* Training Card Styles */
.training-card-hover:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.register-btn-hover:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* CTA Button Styles */
.cta-btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    color: var(--primary-color);
}

.cta-btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
    color: white;
    transform: translateY(-4px);
}

/* Floating Icons Enhanced Animation */
.floating-icon {
    transition: all 0.3s ease;
}

.floating-icon:hover {
    transform: scale(1.1) rotate(5deg);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem !important;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-content .tagline,
    .hero-content .d-flex {
        justify-content: center;
    }
    
    .hero-illustration {
        margin-top: 40px;
    }
    
    .section-header .section-title {
        font-size: 2rem !important;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem !important;
    }
    
    .stat-card {
        padding: 10px !important;
    }
    
    .stat-value {
        font-size: 1.4rem !important;
    }
    
    .stat-label {
        font-size: 0.7rem !important;
    }
    
    .hero-btn {
        padding: 12px 20px !important;
        font-size: 0.9rem !important;
    }
    
    .section-header .section-title {
        font-size: 1.75rem !important;
    }
    
    .section-header .section-subtitle {
        font-size: 1rem !important;
    }
    
    .feature-title {
        font-size: 1.1rem !important;
    }
    
    .feature-card-modern {
        padding: 20px !important;
    }
    
    .feature-icon-bg {
        width: 60px !important;
        height: 60px !important;
    }
    
    .feature-icon-bg i {
        font-size: 1.5rem !important;
    }
}
