/* ===================================
   DATAAEGYX ACADEMY - PREMIUM STYLES
   =================================== */

/* Scroll Reveal Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Academy Hero Section */
.academy-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a0e1a 0%, #1a1f35 100%);
    padding: 120px 0 80px;
    overflow: hidden;
}

.academy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.academy-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.academy-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 30px;
    color: #3b82f6;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.academy-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.1;
    font-family: 'Montserrat', sans-serif;
}

.academy-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 40px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.academy-hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Why DataAegyx Academy Section */
.academy-why {
    padding: 100px 0;
    background: #0f1419;
}

.academy-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.academy-value-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 40px 30px;
    transition: all 0.3s ease;
}

.academy-value-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-4px);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.academy-value-card h3 {
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.academy-value-card p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Training Programs Section */
.academy-programs {
    padding: 100px 0;
    background: linear-gradient(180deg, #0f1419 0%, #0a0e1a 100%);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.program-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 40px;
    transition: all 0.3s ease;
}

.program-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-4px);
}

.program-header {
    margin-bottom: 20px;
}

.program-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.program-card h3 {
    font-size: 1.35rem;
    color: #ffffff;
    margin-bottom: 16px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

.program-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.program-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.program-features li {
    color: rgba(255, 255, 255, 0.6);
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    line-height: 1.6;
    font-size: 0.9rem;
}

.program-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: 600;
}

/* Learning Approach Section */
.academy-approach {
    padding: 100px 0;
    background: #0f1419;
}

.approach-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.approach-step {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    flex: 1;
    min-width: 200px;
    max-width: 240px;
    position: relative;
    transition: all 0.3s ease;
}

.approach-step:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-4px);
}

.step-number {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 0.75rem;
    color: rgba(59, 130, 246, 0.5);
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.approach-step h3 {
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.approach-step p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    font-size: 0.9rem;
}

.approach-arrow {
    color: rgba(59, 130, 246, 0.4);
    font-size: 2rem;
    font-weight: 300;
}

/* Who Should Attend Section */
.academy-audience {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0e1a 0%, #0f1419 100%);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.audience-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 36px 28px;
    text-align: center;
    transition: all 0.3s ease;
}

.audience-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-4px);
}

.audience-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.audience-card h3 {
    font-size: 1.15rem;
    color: #ffffff;
    margin-bottom: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.audience-card p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Final CTA Section */
.academy-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0e1a 0%, #1a1f35 100%);
    position: relative;
    overflow: hidden;
}

.academy-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.academy-cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.academy-cta-content h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.academy-cta-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 40px;
}

.academy-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.05rem;
}

/* Section Utilities */
.section-title {
    font-size: 2.5rem;
    color: #ffffff;
    text-align: center;
    margin-bottom: 16px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .approach-flow {
        flex-direction: column;
    }

    .approach-arrow {
        transform: rotate(90deg);
    }

    .approach-step {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .academy-hero {
        padding: 100px 0 60px;
        min-height: 60vh;
    }

    .academy-hero-title {
        font-size: 2.5rem;
    }

    .academy-hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .academy-cta-content h2 {
        font-size: 2rem;
    }

    .academy-cta-content p {
        font-size: 1rem;
    }

    .academy-values-grid,
    .programs-grid,
    .audience-grid {
        grid-template-columns: 1fr;
    }

    .academy-hero-ctas,
    .academy-cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .academy-hero-ctas .btn,
    .academy-cta-buttons .btn {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .academy-hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .program-card,
    .academy-value-card,
    .audience-card,
    .approach-step {
        padding: 30px 24px;
    }
}