/* academy.css */
/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: #333;
    background-color: #fff;
    padding-top: 70px;
}

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #FF7E00;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: #333;
    cursor: pointer;
    padding: 10px;
}

/* Academy-specific Navbar */
.academy-nav-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
}

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    background-color: #FF7E00;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
    min-height: 44px;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #E66F00;
}

.arrow-icon {
    margin-left: 10px;
}

/* Hero Section - Academy */
.academy-hero {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(45, 45, 45, 0.8), rgba(255, 126, 0, 0.8), rgba(0, 0, 0, 0.8)), url("https://cdn.jsdelivr.net/gh/Jermoy/Parasees_Imgs/Academy-hero.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
    padding: 20px;
    max-width: 800px;
}

.hero-heading {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    color: #f0f0f0;
}

.hero-image-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 800px;
    height: 60%;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 126, 0, 0.5);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.hero-image-placeholder::before {
    color: rgba(255, 255, 255, 0.7);
    font-size: 2rem;
    text-align: center;
}

/* What's Included Section */
.included-section {
    padding: 5rem 2rem;
    background-color: #f9f9f9;
}

.section-heading {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cards-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.horizontal-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    max-width: 1000px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 2rem;
    width: 100%;
}

.horizontal-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.card-content {
    flex: 1;
    padding: 0;
}

.card-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.card-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 2rem;
}

.card-features {
    list-style: none;
    margin-bottom: 2rem;
}

.card-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
    font-size: 1.1rem;
}

.card-features li::before {
    content: "✓";
    color: #FF7E00;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Benefits Section */
.benefits-section {
    padding: 5rem 2rem;
    background: linear-gradient(to bottom right, #0C0C0E, #1f1f25);
    color: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
}

.benefit-icon {
    font-size: 2.5rem;
    color: #FF7E00;
    margin-bottom: 1.5rem;
}

.benefit-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.benefit-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ccc;
}

/* Testimonials */
.testimonials-section {
    padding: 5rem 2rem;
    background-color: white;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.testimonial-card {
    background: #f9f9f9;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
    font-style: italic;
}

/* --- NEW Final CTA Section --- */
.final-cta-section {
    padding: 5rem 2rem;
    background-color: #f9f9f9;
}

.final-cta-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem; /* Adds space between items */
}

/* Use existing heading and subtitle classes for consistency */
.final-cta-container .section-heading {
    margin-bottom: 0;
}

.final-cta-container .section-subtitle {
    margin-bottom: 0;
    margin-top: -1rem; /* Adjust spacing */
}

/* --- Mobile and Responsive Styles --- */
@media screen and (max-width: 768px) {
    .nav-container {
        padding: 0 15px;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        padding: 20px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu.active {
        display: flex;
    }

    .hamburger {
        display: block;
        order: 3;
    }
    
    .academy-nav-center {
        position: static;
        transform: none;
        order: 2;
        font-size: 1.2rem;
        white-space: nowrap;
    }

    .cta-button {
        order: 1;
        padding: 10px 15px;
        font-size: 0.9rem;
    }

    .hero-heading {
        font-size: 2.5rem;
    }

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

    .hero-image-placeholder {
        width: 90%;
        height: 50%;
    }

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

    .horizontal-card {
        padding: 1.5rem;
    }

    .card-title {
        font-size: 1.5rem;
    }

    .benefits-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .included-section,
    .benefits-section,
    .testimonials-section,
    .final-cta-section {
        padding: 3rem 1.5rem;
    }
}
/* Footer Styles */
.footer {
    background: #0C0C0E;
    color: white;
    padding: 4rem 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: left;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-about {
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-heading {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-link {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #FF7E00;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #FF7E00;
    transform: translateY(-3px);
}

.copyright {
    margin-top: 4rem;
    color: #777;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}


/* Empire Building Section */
.empire-section {
    padding: 6rem 2rem;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.empire-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.empire-heading {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #333;
    line-height: 1.2;
}

.empire-subtitle {
    font-size: 1.5rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.empire-section .cta-container {
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .empire-heading {
        font-size: 3rem;
    }

    .empire-subtitle {
        font-size: 1.25rem;
        padding: 0 1rem;
    }
}

/* Program Overview Section */
.program-overview-section {
    padding: 120px 40px;
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
    color: white;
    text-align: center;
}

.overview-container {
    max-width: 900px;
    margin: 0 auto;
}

.overview-heading {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.overview-description {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Curriculum Section */
.curriculum-section {
    padding: 80px 40px;
    background: #fff;
}

.curriculum-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto 0;
}

.curriculum-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    transition: transform 0.3s ease;
}

.curriculum-card:hover {
    transform: translateY(-5px);
}

.module-title {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.module-topics {
    list-style: none;
    padding: 0;
}

.module-topics li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    color: #555;
}

.module-topics li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #FF7E00;
}

/* Learning Experience Section */
.learning-experience-section {
    padding: 80px 40px;
    background: #f8f9fa;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto 0;
}

.experience-card {
    text-align: center;
    padding: 30px;
}

.experience-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.experience-card h3 {
    color: #333;
    margin-bottom: 15px;
}

.experience-card p {
    color: #666;
    line-height: 1.6;
}

/* Success Path Section */
.success-path-section {
    padding: 80px 40px;
    background: #fff;
}

.path-timeline {
    max-width: 1000px;
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.timeline-item {
    text-align: center;
    position: relative;
}

.timeline-number {
    width: 40px;
    height: 40px;
    background: #FF7E00;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-weight: bold;
}

.timeline-item h3 {
    color: #333;
    margin-bottom: 10px;
}

.timeline-item p {
    color: #666;
    line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .overview-heading {
        font-size: 2.5rem;
    }
    
    .curriculum-grid,
    .experience-grid,
    .path-timeline {
        grid-template-columns: 1fr;
    }
    
    .program-overview-section {
        padding: 80px 20px;
    }
    
    .curriculum-section,
    .learning-experience-section,
    .success-path-section {
        padding: 60px 20px;
    }
}