/* Hero Section with Video Background - Override */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0;
    background: #ffffff;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 20px 40px;
    width: 100%;
}

.hero-content-center {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    color: white;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: fadeInUp 1s ease-out 0.2s backwards;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content-center h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 30px;
    color: white;
    animation: fadeInUp 1s ease-out 0.4s backwards;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.5);
}

.hero-content-center h1 .highlight {
    color: #ffd700;
    position: relative;
    display: inline-block;
}

.hero-content-center h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
    animation: glow 2s infinite;
}

@keyframes glow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.95);
    animation: fadeInUp 1s ease-out 0.6s backwards;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.8s backwards;
}

.btn-primary,
.btn-secondary {
    padding: 16px 40px;
    font-size: 1.15rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #2c5aa0, #4a90e2);
    color: white;
    box-shadow: 0 5px 20px rgba(44, 90, 160, 0.4);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(44, 90, 160, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: white;
    color: #2c5aa0;
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(255, 255, 255, 0.3);
}

/* Floating Cards - Enhanced */
.floating-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.floating-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    padding: 25px 20px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.4s ease;
    animation: fadeInUp 1s ease-out backwards;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.floating-card.card-1 { animation-delay: 1s; }
.floating-card.card-2 { animation-delay: 1.1s; }
.floating-card.card-3 { animation-delay: 1.2s; }
.floating-card.card-4 { animation-delay: 1.3s; }

.floating-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.5);
}

.floating-card i {
    font-size: 2.8rem;
    color: #ffd700;
    margin-bottom: 12px;
    filter: drop-shadow(0 2px 10px rgba(255, 215, 0, 0.3));
    transition: all 0.3s ease;
}

.floating-card:hover i {
    transform: scale(1.15);
    filter: drop-shadow(0 4px 15px rgba(255, 215, 0, 0.6));
}

.floating-card span {
    display: block;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Stats Cards - Enhanced */
.stats-cards {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.stat-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    border-top: 4px solid #2c5aa0;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(44, 90, 160, 0.1), transparent);
    transition: left 0.5s ease;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(44, 90, 160, 0.25);
    border-top-color: #ffd700;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #2c5aa0, #4a90e2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-size: 1.05rem;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive - Enhanced */
@media (max-width: 1024px) {
    .hero-content-center h1 {
        font-size: 2.8rem;
    }

    .floating-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 20px 0;
        flex-direction: column;
    }

    .hero-video-container {
        position: relative;
        width: 95%;
        height: 400px;
        margin: 20px auto 0;
        border-radius: 12px;
        overflow: hidden;
        z-index: 0;
        order: -1;
    }

    .hero-background-video {
        position: absolute;
        top: 50%;
        left: 50%;
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
        transform: translate(-50%, -50%);
    }

    .hero-container {
        padding: 20px 20px 30px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-content-center h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    .hero-description {
        font-size: 1rem;
        line-height: 1.7;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        padding: 14px 30px;
        font-size: 1rem;
    }

    .floating-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .floating-card {
        padding: 20px 15px;
    }

    .floating-card i {
        font-size: 2.3rem;
    }

    .floating-card span {
        font-size: 0.9rem;
    }

    .stats-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stat-card {
        padding: 25px 20px;
    }

    .stat-number {
        font-size: 2.8rem;
    }

    .stat-label {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .hero-content-center h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .floating-cards {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .stats-cards {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 374px) {
    .hero-content-center h1 {
        font-size: 1.4rem;
    }

    .hero-subtitle {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }

    .hero-description {
        font-size: 0.85rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}
