/* ============ Academic Success Section ============ */
/* Inter Font - Now loaded via self-hosted WOFF2 in fonts.css */

.academic-success-section {
    padding: 90px 0;
    font-family: 'Inter', sans-serif;
}

.academic-success-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
.academic-success-header {
    text-align: center;
    margin-bottom: 40px;
}

.academic-success-header h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 38px;
    line-height: 150%;
    color: #35414B;
    margin-bottom: 0;
}

.academic-success-header h2 .gradient-text {
    background: linear-gradient(90deg, #2C83FF 35.36%, #4E68E5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Inter', sans-serif;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

/* Stat Card */
.stat-card {
    background: linear-gradient(103.82deg, #2243A4 1.08%, #5464CA 49.71%, #7C7DE8 97.38%);
    border-radius: 20px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 140px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Rotating glow effect */
.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 60%);
    animation: rotate-glow 12s linear infinite;
    pointer-events: none;
}

@keyframes rotate-glow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Hover effect */
.stat-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(30, 58, 138, 0.4);
}

/* Stat Number */
.stat-number {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 43px;
    line-height: 1.1;
    color: #ffffff;
    position: relative;
    z-index: 1;
    margin-bottom: 8px;
}

/* Stat Label */
.stat-label {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
}

/* Footer Description */
.academic-success-footer {
    max-width: 100%;
}

.academic-success-footer p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 170%;
    color: #536C8B;
    font-weight: 400;
    margin: 0;
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .stat-number {
        font-size: 40px;
    }

    .stat-card {
        padding: 28px 24px;
        min-height: 130px;
    }
}

@media (max-width: 768px) {
    .academic-success-section {
        padding: 60px 0;
    }

    .academic-success-header h2 {
        font-size: 32px;
    }

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

    .stat-number {
        font-size: 36px;
    }

    .stat-label {
        font-size: 14px;
    }

    .stat-card {
        padding: 24px 20px;
        min-height: 120px;
    }

    .academic-success-footer p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .academic-success-section {
        padding: 50px 0;
    }

    .academic-success-header {
        margin-bottom: 30px;
    }

    .academic-success-header h2 {
        font-size: 25px;
    }

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

    .stat-card {
        padding: 20px 16px;
        min-height: 110px;
        border-radius: 16px;
    }

    .stat-number {
        font-size: 28px;
        margin-bottom: 6px;
    }

    .stat-label {
        font-size: 13px;
    }

    .academic-success-footer {
        margin-top: 30px;
    }

    .academic-success-footer p {
        font-size: 14px;
        line-height: 160%;
    }
}
/* ============ End Academic Success Section ============ */
