:root {
    --primary-blue: #1a5a91;
    --primary-purple: #1a5a91;
    --text-dark: #333;
    --text-light: #666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

body {
    min-height: 100vh;
    overflow-x: hidden;

}

/* Navigation Styles */
/* Navigation Styles */

nav.main-nav {
    position: fixed;
    /* Changed from relative to fixed */
    /* Rest of your existing nav styles remain the same */
    width: 100%;
}

/* Existing Navbar Styles */
nav {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary-blue);
    padding: 1rem 2rem;
    color: white;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
}

.nav-links a.active {
    font-weight: bold;
}

.download-btn {
    background-color: white;
    color: var(--primary-blue);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
}

/* Mobile Menu Styles */
@media (max-width: 768px) {


    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--primary-blue);
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 0;
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .download-btn {
        margin: 0 auto;
    }
}


/* Hero Section Styles */
.hero-container {
    max-width: 1200px;
    margin: 0 80 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    width: 100%;
}

.hero-content h1 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content {
    margin-top: 5rem;
}

.header-content-nextgen {
    position: relative;
}

.highlight {
    color: var(--primary-purple);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 20px;
    background-image: url('images\8208 1.svg');
    background-repeat: no-repeat;
    background-size: 100% auto;
    z-index: -1;
}

.hero-content p {
    color: var(--text-light);
    margin-bottom: 2rem;
}



.home_cover {
    position: absolute;
    right: 0px;
    top: 0px;
    z-index: -1;
}

.learn-more {
    background-color: var(--primary-purple);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    display: inline-flex;
}

.learn-more::after {
    content: "→";
    font-size: 1.2rem;
}

.stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-card {
    background: white;
    width: fit-content;
    padding: 1.5rem;
    border-radius: 8px;
    margin-left: 40px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.stat-card h2 {
    color: var(--primary-purple);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .learn-more {
        margin: 0 auto;
    }

    .nav-links {
        display: none;
    }
}

/* Decorative circle elements */
.decorative-circle {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    pointer-events: none;
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
}

.circle-2 {
    width: 400px;
    height: 400px;
    bottom: -200px;
    right: -200px;
}

.video-section {
    background-color: #1a5a91;
    /* Deep blue background */
    font-family: Arial, sans-serif;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;

}

/* Main container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 2rem auto;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 4rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    backdrop-filter: blur(10px);
}

/* Text content */
.content {
    flex: 1;
    color: white;
    padding-right: 2rem;
}

.content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.3;
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Video/content placeholder */
.video-container {
    flex: 1;
    aspect-ratio: 16/9;
    background-color: #c4c4c4;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.play-button {
    width: 60px;
    height: 60px;
    background-color: #ff0000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.play-button::after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 20px;
    border-color: transparent transparent transparent #ffffff;
    margin-left: 5px;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        padding: 2rem 1rem;
    }

    .content {
        padding-right: 0;
        text-align: center;
    }

    .video-container {
        width: 100%;
    }
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 3rem 0;
    background-color: #f8f0f0;
    border-radius: 10px;
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: #1a2942;
    font-weight: bold;
    margin-bottom: 1rem;
}

.stat-description {
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    color: #666;
    max-width: 250px;
    margin: 0 auto;
    line-height: 1.6;
}

.header-content-nextgen {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.nextgen-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 2rem;
}

.main-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: #1a2942;
    margin-bottom: 1rem;
}

.main-title .highlight {
    color: #1a5a91;
    font-style: italic;
}

.subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: #666;
    margin-bottom: 1rem;
}

.subtitle .highlight {
    color: #1a5a91;
    position: relative;
    display: inline-block;
}

/* Blue underline accent */
.subtitle .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 20' preserveAspectRatio='none'%3E%3Cpath d='M0,10 Q25,5 50,10 T100,10' fill='none' stroke='%230000CC' stroke-width='3'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 100% 100%;
}


@media (max-width: 768px) {
    .stats-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .stat-item {
        padding: 0 2rem;
    }

    .stat-description {
        max-width: 300px;
    }
}

.ss_section {
    padding: 48px 0;
}

.ss_wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.ss_title {
    font-size: 32px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 48px;
}

.ss_title-highlight {
    color: #4338ca;
    font-style: italic;
}

.ss_cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.ss_card {
    background-color: #fef2f2;
    padding: 24px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.ss_card-number {
    width: 48px;
    height: 48px;
    border: 2px solid #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    flex-shrink: 0;
}

.ss_card-text {
    color: #374151;
    font-size: 18px;
}

.ss_cta {
    background-color: #4338ca;
    padding: 32px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    position: relative;
    width: fit-content;
}

.ss_cta-text {
    font-size: 24px;
    max-width: 700px;
}

.ss_cta-btn {
    background-color: #3730a3;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    transition: background-color 0.3s;
    position: absolute;
    right: -46px;
    top: 50%;
    transform: translateY(-50%);
    text-decoration: none;
}

.ss_cta-btn:hover {
    background-color: #312e81;

}

@media (max-width: 768px) {
    .ss_cards {
        grid-template-columns: 1fr;
    }

    .ss_cta {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
}

.program {
    padding: 48px 0;
    background-color: #fff;
}

.program_wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.program_title {
    font-size: 40px;
    color: #1f2937;
    margin-bottom: 40px;
}

.program_title-highlight {
    color: #1e40af;
    font-style: italic;
}

.program_content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Two columns */
    gap: 40px;
    /* Gap between columns */
    background-color: #fef2f2;
    /* Background color */
    border-radius: 12px;
    /* Rounded corners */
    overflow: hidden;
    /* Hide overflow */
    align-items: start;
    /* Align items to the top */
}

.program_image {
    width: 100%;
    /* Make image responsive */
    height: auto;
    /* Maintain aspect ratio */
    max-height: 500px;
    /* Set a maximum height for the image */
    object-fit: cover;
    /* Ensure the image covers the area */
    border-radius: 12px;
    /* Rounded corners for the image */
}

/* Adjust the grid layout for smaller screens */
@media (max-width: 768px) {
    .program_content {
        grid-template-columns: 1fr;
        /* Single column on smaller screens */
        gap: 20px;
        /* Reduce gap for smaller screens */
    }

    .program_image {
        max-height: 300px;
        /* Adjust image height for smaller screens */
    }
}

/* 
img {
    width: 100%;
    height: 100%;
    object-fit: cover;
} */

.program_info {
    padding: 48px;
}

.program_name {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 32px;
}

.program_features {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.program_feature {
    background-color: #1a5a91;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
}

.program_cohort {
    display: inline-block;
    border: 2px solid #1e40af;
    color: #1e40af;
    padding: 8px 24px;
    border-radius: 4px;
    margin-bottom: 32px;
}

.program_cta {
    background-color: #1e40af;
    padding: 24px;
    border-radius: 8px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.program_cta-text {
    font-size: 20px;
    max-width: 70%;
}

.program_cta-btn {
    background-color: #1e3a8a;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    text-decoration: none;
}

.program_cta-btn:hover {
    background-color: #172554;
}

@media (max-width: 768px) {
    .program_content {
        grid-template-columns: 1fr;
    }

    .program_info {
        padding: 24px;
    }
}

.partner {
    padding: 80px 0;
    background-color: #fefbf6;
}

.partner_wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.partner_title {
    font-size: 40px;
    color: #1f2937;
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.partner_highlight {
    color: #1a5a91;
    font-style: italic;
}

.partner_cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.partner_card {
    background-color: #fef2f2;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
}

.partner_card-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1f2937;
}

.partner_card-text {
    font-size: 16px;
    line-height: 1.6;
    color: #4b5563;
}

@media (max-width: 768px) {
    .partner_cards {
        grid-template-columns: 1fr;
    }

    .partner_title {
        font-size: 32px;
        padding: 0 20px;
    }
}

.testimonials {
    padding: 80px 0;
}

.testimonials_wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonials_title {
    font-size: 40px;
    color: #1f2937;
    margin-bottom: 60px;
}

.testimonials_highlight {
    color: #1a5a91;
    font-style: italic;
}

.testimonials_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* 
.testimonials_card {
    background-color: #fafaf9;
    padding: 40px;
    border-radius: 12px;
    position: relative;
    min-height: 320px;
    display: flex;
    flex-direction: column;
} */

.testimonials_quote {
    font-size: 18px;
    line-height: 1.6;
    color: #1f2937;
    margin-bottom: 24px;
    flex-grow: 1;
}

.testimonials_author {
    font-weight: 600;
    font-size: 18px;
    color: #1f2937;
    margin-bottom: 4px;
}

.testimonials_role {
    font-size: 14px;
    color: #4b5563;
}

.testimonials_avatar_background {
    width: 130px;
    height: 130px;
    background-color: #a6a6a6;
    /* Grey color */
    border-radius: 50%;
    position: absolute;
    bottom: -50px;
    /* Half of the circle is cut off */
    right: -50px;
    /* Half of the circle is cut off */
    z-index: 1;
    /* Ensure it's below the blue circle */
}

.testimonials_card {
    position: relative;
    /* Ensure the card is the positioning context */
    padding: 60px;
    background-color: #fff;
    /* Example background color */
    border-radius: 12px;
    /* Rounded corners for the card */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Optional shadow */
    overflow: hidden;
    /* Hide the overflowing part of the grey circle */
}

.testimonials_avatar {
    width: 100px;
    height: 100px;
    background-color: #1a5a91;
    /* Blue color */
    border-radius: 50%;
    position: absolute;
    bottom: 10px;
    /* Adjust to center on the grey circle */
    right: 10px;
    /* Adjust to center on the grey circle */
    z-index: 2;
    /* Ensure it's above the grey circle */
}



@media (max-width: 768px) {
    .testimonials_grid {
        grid-template-columns: 1fr;
    }

    .testimonials_title {
        font-size: 32px;
        text-align: center;
    }
}

.faq {
    padding: 80px 0;
    background-color: #fefbf6;
}

.faq_wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
}

.faq_title {
    font-size: 40px;
    color: #1f2937;
    grid-column: 1 / -1;
}

.faq_highlight {
    color: #1a5a91;
    font-style: italic;
}

.faq_nav {
    background-color: #fef2f2;
    padding: 24px;
    padding-right: 0;
    border-radius: 12px;
}

.faq_category {
    display: flex;
    align-items: center;
    padding: 16px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.faq_category span {
    flex-grow: 1;
    margin-left: 12px;
}

.faq_category.active,
.faq_category:hover {
    background-color: #fff;
    opacity: 1;
}

.faq_category-number {
    width: 40px;
    height: 40px;
    border: 2px solid #1a5a91;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #1a5a91;
    opacity: 0;
    transition: opacity 0.3s;
}

.faq_category.active .faq_category-number {
    opacity: 1;
}

.faq_category svg {
    margin-right: 16px;
}

.faq_question {
    background-color: #fef2f2;
    padding: 20px;
    margin-bottom: 16px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: normal;

}

.faq_question-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: normal;
}

.faq_question-content {
    margin-top: 16px;
    display: none;
}

.faq_question.active .faq_question-content {
    display: block;
}

.faq_question-arrow {
    transition: transform 0.3s;
}

.faq_question.active .faq_question-arrow {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .faq_wrapper {
        grid-template-columns: 1fr;
    }
}

.contact {
    padding: 80px 0;
    background-color: #fff;
}

.contact_wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact_title {
    font-size: 40px;
    color: #1f2937;
    text-align: center;
    margin-bottom: 16px;
}

.contact_subtitle {
    text-align: center;
    color: #4b5563;
    margin-bottom: 48px;
}

.contact_grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
}

.contact_grid_background {
    width: 145px;
    height: 145px;
    background-color: #a6a6a6;
    /* Grey color */
    border-radius: 50%;
    position: absolute;
    bottom: -50px;
    /* Half of the circle is cut off */
    right: -50px;
    /* Half of the circle is cut off */
    z-index: 1;
    /* Ensure it's below the blue circle */
}

.contact_info {
    background-color: #f5f5ee;
    padding: 40px;
    color: #1a5a91;
    position: relative;
    overflow: hidden;
}

.contact_info-title {
    font-size: 24px;
    margin-bottom: 8px;
}

.contact_info-subtitle {
    color: #3c3c3c;
    margin-bottom: 32px;
}

.contact_info-item {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.contact_info-icon {
    margin-right: 16px;
}

.contact_form {
    padding: 40px;
}

.form_row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.form_group {
    position: relative;
    margin-bottom: 24px;
}

.form_input {
    width: 100%;
    padding: 12px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
}

.form_label {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
    transition: 0.3s;
    pointer-events: none;
}

.form_input:focus~.form_label,
.form_input:valid~.form_label {
    top: 0;
    background: white;
    padding: 0 4px;
    font-size: 12px;
}

.form_message {
    width: 100%;
    padding: 12px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    height: 120px;
    resize: none;
}

.form_submit {
    background-color: #1a5a91;
    color: #ffffff;
    padding: 12px 24px;
    border: none;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    float: right;
}

.form_submit2 {
    background-color: #ffffff;
    color: #1a5a91;
    padding: 12px 24px;
    border: none;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    float: right;
}



.footer {
    background-color: #1a5a91;
    padding: 60px 0 24px;
}

.footer_wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer_grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer_logo {
    max-width: 150px;
    margin-bottom: 16px;
}

.footer_base {
    color: #ffffff;
}

.footer_address {
    color: #ffffff;
}

.footer_title {
    font-weight: 600;
    margin-bottom: 24px;
    color: #ffffff;
}

.footer_link {
    color: #ffffff;
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
}

.footer_social {
    display: flex;
    gap: 16px;
}

.footer_social img {
    width: 24px;
    height: 24px;
}

.footer_copyright {
    text-align: center;
    color: #ffffff;
    border-top: 1px solid #e5e7eb;
    padding-top: 24px;
}

@media (max-width: 768px) {
    .contact_grid {
        grid-template-columns: 1fr;
    }

    .footer_grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .form_row {
        grid-template-columns: 1fr;
    }
}


.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.popup-overlay.active {
    display: flex;
    opacity: 1;
    justify-content: center;
    align-items: center;
}

.popup-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    width: 90%;
    max-width: 400px;
    transform: translateY(-50px);
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.popup-overlay.active .popup-content {
    transform: translateY(0);
    opacity: 1;
}

.popup-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.popup-title {
    font-size: 1.5rem;
    color: #2d3748;
    margin: 0;
}

.popup-message {
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.5;
    margin: 1rem 0;
    text-align: center;
}

.popup-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-icon.success {
    background-color: #c6f6d5;
    color: #2f855a;
}

.popup-icon.error {
    background-color: #fed7d7;
    color: #c53030;
}

.popup-button {
    display: block;
    width: 100%;
    padding: 0.75rem;
    border: none;
    border-radius: 6px;
    background-color: #4299e1;
    color: white;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.popup-button:hover {
    background-color: #3182ce;
}

@keyframes checkmark {
    0% {
        transform: scale(0);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.checkmark {
    animation: checkmark 0.5s ease-in-out;
}