 /* Hero Section Styles */
.hero-section {
    min-height: 100vh;
    background-color: #0037FF;
    position: relative;
}

/* Minimum viewport height utility */
.min-vh-75 {
    min-height: 75vh;
}

/* Hover Effects */
.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

.hover-glow {
    transition: box-shadow 0.3s ease;
}

.hover-glow:hover {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

/* Stats Container */
.stats-container {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

/* Stat Cards */
.stat-card {
    background: rgba(255, 255, 255, 0.95);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    will-change: transform; /* Optimize animation performance */
    transform: translateZ(0); /* Force GPU acceleration */
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.stats-container {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
    overflow: visible; /* Important! */
}


/* Animation Keyframes */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .hero-section {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .stats-container {
        margin-top: 3rem;
    }
}

@media (max-width: 767.98px) {
    .display-3 {
        font-size: 2.5rem;
    }

    .stat-card {
        padding: 1rem !important;
    }
}

/* Button Styles */
.btn-lg {
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 0.5rem;
}

.btn-light {
    background-color: #ffffff;
    border-color: #ffffff;
    color: #0037FF;
}

.btn-light:hover {
    background-color: #f8f9fa;
    border-color: #f8f9fa;
    color: #0037FF;
}

.btn-outline-light {
    color: #ffffff;
    border-color: #ffffff;
}

.btn-outline-light:hover {
    background-color: #ffffff;
    color: #0037FF;
}

/* Text Shadow */
.text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

/* Wave Effect */
.wave-effect {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    transform: translateY(1px);
}

/* Background Pattern */
.pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 25px 25px, rgba(255, 255, 255, 0.2) 2%, transparent 0%),
        radial-gradient(circle at 75px 75px, rgba(255, 255, 255, 0.2) 2%, transparent 0%);
    background-size: 100px 100px;
    opacity: 0.5;
    mix-blend-mode: overlay;
}

/* Custom Colors */
.text-primary-orange {
    color: #FF9D23 !important;
}

/* Icon Styles */
.fa-graduation-cap,
.fa-certificate {
    color: #0037FF;
}

/* Gradient Background */
.bg-gradient-primary {
    background: linear-gradient(135deg, rgba(0, 55, 255, 0.5) 70%, rgba(0, 55, 255, 0.7) 100%);
}

/* Additional Utilities */
.rounded-4 {
    border-radius: 1rem;
}

.bg-opacity-10 {
    --bs-bg-opacity: 0.1;
}

.z-index-1 {
    z-index: 1;
}

.z-index-2 {
    z-index: 2;
}

.z-index-3 {
    z-index: 3;
}
