html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family: 'Yusei Magic';
    font-family: 'Poppins';
}
.header {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 15px 20px;
    position: relative;
    flex-wrap: wrap;
}
.logo img {
    height: 50px;
}
.nav {
    display: flex;
    gap: 20px;
}
.nav a {
    text-decoration: none;
    color: black;
    font-size: 14px;
    font-weight: 500;
    padding: 5px 10px;
    transition: color 0.3s ease-in-out;
}
.nav a:hover {
    color: #0038DA;
}
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    background: none;
    border: none;
}
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    .nav {
        display: none;
        flex-direction: column;
        gap: 10px;
        width: 100%;
        text-align: left;
        padding-top: 20px;
    }
    .nav.active {
        display: flex;
    }
    .header {
        padding: 15px 20px;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .logo img {
        height: 30px;
    }
}

/* Small desktops (992px to 1200px) */
@media (max-width: 1024px) {
    .header {
        padding: 10px 10px;
        /*flex-wrap: nowrap;*/
    }
    .nav {
        gap: 5px;
        font-size: 13px;
        flex-grow: 1;
        justify-content: flex-end;
        min-width: 0;
    }
    .nav a {
        padding: 3px 6px;
        font-size: 13px;
    }
    .logo img {
        height: 32px;
    }
}
/*end of header style*/

/*start section one style*/
.section-one {
    position: relative;
    width: 70%; /* Added left and right spacing */
    max-width: 100%;
    margin: auto;
    background: url('../images/section_one_bg_img.png');
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 20px;
    box-sizing: border-box;
    height: 60%;
    /*border-radius: 20px;*/
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
}
.content-one {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    /*justify-content: space-between;*/
    width: 100%;
}
.text-box {
    color: white;
    max-width: 600px;
    flex: 1;
    padding: 20px;
    text-align: left;
    padding-left: 40px;
}

.section-one-sub-text{
    font-family: Poppins;
}

.text-box h1 {
    font-size: 3vw;
    line-height: 50px;
    font-family: 'Yusei Magic';
    font-weight: 400;
    margin: 10px 0;
}
.text-box h3 {
    font-size: 2vw;
    font-family: 'Yusei Magic';
    font-weight: 400;
    line-height: 1.5;
    margin-top: 10px;
    margin-bottom: 40px;
}
.text-box p {
    font-size: 1vw;
    line-height: 1.5;
}
.image-box {
    position: relative;
    max-width: 40%;
    display: flex;
    justify-content: center; /* Centers image inside the div */
}

.image-box img {
    max-width: 106%;
    height: auto;
    object-fit: contain; /* Ensures image stays within bounds */
    margin-left: 14px;
}

@media (max-width: 1024px) {
    .section-one {
        width: 95%;
        padding: 30px;
    }
    .text-box h1 {
        font-size: 5vw;
    }
    .text-box h3 {
        font-size: 3vw;
    }
    .text-box p {
        font-size: 1.2vw;
    }
    .image-box {
        max-width: 35%;
    }
}
@media (max-width: 768px) {
    .content-one {
        flex-direction: column;
        text-align: center;
    }
    .text-box {
        width: 100%;
        text-align: center;
        padding-left: 0px;
    }
    .text-box h1 {
        font-size: 6vw;
    }
    .text-box h3 {
        font-size: 4vw;
    }
    .text-box p {
        font-size: 1.5vw;
    }
    .image-box {
        max-width: 50%;
        /*margin-top: 20px;*/
    }
}
@media (max-width: 480px) {
    .section-one {
        padding: 20px;
        width: 90%;
    }
    .text-box h1 {
        font-size: 7vw;
    }
    .text-box h3 {
        font-size: 5vw;
    }
    .text-box p {
        font-size: 2.5vw;
    }
    .image-box {
        max-width: 60%;
    }
}

.section-one-triangle {
    display: flex;
    justify-content: flex-end; /* Aligns image to the right */
    padding-right: 15%; /* Space from right */
}
.section-one-triangle-img {
    display: block;
    max-width: 100%;
    height: auto;
    width: auto;
}

/* Media Query for smaller screens */
@media (max-width: 768px) {
    .section-one-triangle-img {
        display: none;
    }
    .section-one-triangle{
        padding-right: 10px; /* Adjust space for smaller screens */
    }
}
/*end section one style*/

/*start of section two style*/
.section-two {
    padding: 20px;
    max-width: 100%;
    width: 76%;
    margin-top: -30px;
}

.section-two-title {
    color: black;
    font-size: 40px;
    font-family: 'Yusei Magic';
    font-weight: 400;
    line-height: 50px;
    word-wrap: break-word;
}

.section-two-description {
    max-width: 854px;
    color: black;
    font-size: 14px;
    font-family: 'Poppins';
    font-weight: 400;
    line-height: 18px;
    word-wrap: break-word;
    margin-top: 40px; /* Added space between title and description */
}

@media (max-width: 768px) {
    .section-two {
        margin-top: 0px;
        width: 95%;
        padding: 0px;
    }
    .section-two-title {
        width: 90%;
        font-size: 20px;
        line-height: 30px;
        margin-top: 20px;
    }
    .section-two-description {
        font-size: 12px;
        line-height: 16px;
        margin-top: 20px;
    }
}

.section-two-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2%;
    width: 85%;
    max-width: 100%;
    margin-top: 30px;
}

.championship-card {
    width: 21%;
    height: auto;
    background: #F2F5FD;
    border-radius: 10%;
    display: flex;
    flex-direction: column;
    padding: 3%;
    position: relative;
    text-align: center;
}

.championship-card-title {
    margin-top: 10%;
    width: 60%;
    color: #0038DA;
    font-size: 120%;
    font-weight: 400;
    word-wrap: break-word;
    text-align: left;
    font-family: Yusei Magic;
}

.championship-card-description {
    margin-top: 9%;
    width: 90%;
    height: 30%;
    color: black;
    font-size: 80%;
    font-family: 'Poppins';
    font-weight: 300;
    line-height: 120%;
    word-wrap: break-word;
    text-align: left;
}

.championship-card-description-meetups {
    margin-top: 19%;
    width: 90%;
    height: 30%;
    color: black;
    font-size: 80%;
    font-family: 'Poppins';
    font-weight: 300;
    line-height: 120%;
    word-wrap: break-word;
    text-align: left;
}

.championship-card-trophy {
    width: 30%;
    height: auto;
    transform: rotate(-3deg);
    position: absolute;
    top: 10%;
    right: 10%;
}

.meetup-card-trophy {
    width: 30%;
    height: auto;
    transform: rotate(-15deg);
    position: absolute;
    top: 10%;
    right: 10%;
}

.chapters-card-trophy {
    width: 28%;
    height: auto;
    transform: rotate(4deg);
    position: absolute;
    top: 10%;
    right: 10%;
}

@media (max-width: 1024px) {
    .section-two-container {
        justify-content: center;
    }
    .championship-card {
        width: 45%;
        height: 50%;
        margin: 15px;
    }
    .championship-card-trophy {
        width: 16%;
        height:auto;
    }
    .chapters-card-trophy {
        width: 21%;
        height: auto;
    }
    .meetup-card-trophy {
        width: 18%;
        height: auto;
    }
}

@media (max-width: 768px) {
    .section-two-container {
        flex-direction: column;
        align-items: center;
        width: 95%;
        margin-top: 18px;
    }
    .championship-card {
        margin: 0px;
        width: 93%;
        height: 50%;
        margin-top: 15px;
        padding: 5%;
    }
    .championship-card-description {
        margin-top: 6%;
        margin-bottom: 2%;
    }
    .championship-card-description-meetups {
        margin-top: 8%;
        margin-bottom: 2%;
    }

}
/*end of section two style*/

/*start of section three style*/
.section-three {
    width: 75%;
    max-width: 100%;
    background: #1E1E1E;
    border-radius: 30px;
    padding: 30px;
    color: white;
    text-align: center;
    margin-top: 60px;
    margin-bottom: 60px;
}

.section-three-frame-image {
    position: absolute;
    left: 115px;
    top: 171%;
    width: 8%;
    display: block;
}

.title-text-container {
    font-size: 40px;
    font-weight: 400;
    line-height: 42px;
    margin-bottom: 20px;
    font-family: "Yusei Magic";
}

.text-container {
    font-size: 18px;
    font-family: 'Poppins';
    font-weight: 400;
    line-height: 24px;
    max-width: 600px;
    margin: 0 auto 40px;
}

.steps-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

.step-card {
    padding: 20px;
    border-radius: 15px;
    text-align: left;
    width: 300px;
}

.step-button {
    width: 117px;
    height: 37px;
    background: #0038DA;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    margin-bottom: 10px;
    font-family: Subjectivity;
    line-height: 18px;
}

.membership-title {
    color: #FFE85E;
    font-size: 20px;
    font-weight: 400;
    font-family: Yusei Magic;
}

.membership-description {
    color: white;
    font-size: 14px;
    font-family: Poppins;
    font-weight: 400;
}

.membership-description-step-one{
    width: 100%; height: 370px; position: relative;
    margin-top:-30px;
}

.membership-description-step-two{
    padding-left: 17px;
    margin-top: 42px;
}

.membership-description-step-three{
    padding-left: 17px;
    margin-top: 60px;
}

@media screen and (max-width: 768px) {
    .section-three {
        margin-top: 40px;
        width: 90%;
        margin-bottom: 30px;
        padding: 23px;
    }
    .title-text-container {
        font-size: 25px;
        margin-bottom: 5px;
    }
    .text-container{
        font-size: 16px;
        margin: 0;
    }
    .steps-container {
        flex-direction: column;
        align-items: center;
        gap:5px;
    }
    .membership-description-step-three {
        margin-top: 29px;
    }
    .membership-description-step-two {
        margin-top: 35px;
    }

    .step-card {
        width: 90%;
    }
    .section-three-frame-image {
        display: none;
    }
}

.ready-to-innovate-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
    position: relative;
}
.title {
    color: white;
    font-size: 1.5rem;
    font-family: 'Yusei Magic';
    margin-bottom: 10px;
}
.cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFE85E;
    border-radius: 20px;
    padding: 10px 20px;
    width:31%;
    position: relative;
}
.cta-button span {
    font-size: 1.2rem;
    font-family: 'Poppins';
    color: black;
}
.icon {
    width: 24px;
    height: 24px;
    margin-left: 10px;
}
@media (max-width: 600px) {
    .title {
        font-size: 1.2rem;
    }
    .cta-button span {
        font-size: 1rem;
    }
    .cta-button {
        width: 85%;
    }
}
/*end of section three style*/

/*start of section four style*/
/* Main container */
.section-four {
    width: 100%;
    text-align: center;
}

/* Title styling */
.section-four-title {
    font-size: 2.6vw;
    font-family: 'Yusei Magic';
    font-weight: 400;
    line-height: 1.2em;
    color: black;
    margin-bottom: 20px;
}

/* Flexbox container */
.program-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Program Card */
.program-card {
    width: 30%;
    max-width: 350px;
    background: #FFFAEF;
    border-radius: 50px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Image */
.program-image {
    width: 80px;
    height: auto;
    /*margin-bottom: 10px;*/
}

/* SVG Divider */
.svg-wrapper {
    margin: 10px 0;
}

/* Program Title */
.program-title {
    font-size: 1.5rem;
    font-family: 'Yusei Magic';
    font-weight: 400;
    line-height: 1.3em;
    color: black;
    max-width: 80%;
}

/* Program Description */
.program-description {
    font-size: 14px;
    font-family: 'Poppins';
    font-weight: 300;
    line-height: 1.5em;
    color: black;
    max-width: 90%;
    margin-bottom: 20px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .program-card {
        width: 45%; /* Two in a row for tablet view */
    }
}

@media (max-width: 768px) {
    .section-four-title {
        font-size: 25px;
        margin-bottom: 10px;
    }

    .program-container {
        flex-direction: column;
        align-items: center;
    }

    .program-card {
        width: 90%;
        padding: 0px;
    }

    .program-title {
        font-size: 1.3rem;
    }

    .program-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .section-four-title {
        font-size: 25px;
    }

    .program-card {
        width: 95%;
    }

    .program-title {
        font-size: 1.2rem;
    }

    .program-description {
        font-size: 0.8rem;
    }
}
/*end of section four style*/

/*start of section five style*/
.section-five-responsive-container {
    width: 100%;
    height: 320px;
    position: relative;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    display: block;
    margin-top: 100px;
    margin-bottom: 100px;
}

.section-five-responsive-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.section-five-triangle-img{
    width: 7%;
    height: 35%;
    position: absolute;
    z-index: 1;
    left: 80%;
    top: -18%;
}

/* Wrapper for overlay and foreground image */
.section-five-content {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.section-five-bg-image{
    width: 100%;
}

/* Foreground image */
.section-five-foreground-image {
    width: 193%; /* Responsive width */
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    border-radius:50px;
    top: -396px;
    left: 39%;
}

.section-five-text-overlay {
    position: absolute;
    top: 31%;
    left: 53%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 40px;
    font-family: "Yusei Magic";
    font-weight: 400;
    line-height: 50px;
    word-wrap: break-word;
    text-align: center;
    padding: 10px 20px;
    border-radius: 8px;
}

.section-five-text-description{
    position: absolute;
    top: 65%;
    left: 59.5%;
    transform: translate(-50%, -50%);
    color: white;
    color: white; font-size: 14px; font-family: Poppins; font-weight: 400; line-height: 18px; word-wrap: break-word;
    padding: 10px 20px;
    border-radius: 8px;
}

/* Adjustments for tablets */
@media (max-width: 1024px) {
    .section-five-responsive-container {
        height: 250px;
        display: none;
    }
    .section-five-foreground-image {
        width: 70vw;
    }
}

/* Adjustments for smaller screens */
@media (max-width: 768px) {

    .section-five-text-description {
        top: 0px;
        left: 0px;
        padding: 0;
        width: 100%;
        color: black;
    }
    .section-five-text-overlay {
        top: 0px;
        left: 0px;
        color: black;
        width: 100%;
    }

    .section-five-responsive-container {
        height: 200px;
        display: none;
    }

    .section-five-foreground-image {
        width: 60vw;
    }
    .section-five-triangle-img {
        display: none;
    }
}

/* Adjustments for mobile screens */
@media (max-width: 480px) {
    .section-five-responsive-container {
        height: 180px;
        display: none;
    }
    .section-five-foreground-image {
        width: 50vw;
    }
}

/*end of section five style*/

/*start of section six style*/
.section-six {
    padding: 20px 135px;
}

.section-six-title {
    font-size: 40px;
    font-family: 'Yusei Magic';
    font-weight: 400;
    line-height: 50px;
    color: black;
    text-align: center;
    margin-bottom: 50px;
}

.membership-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.membership-card {
    width: 100%;
    max-width: 100%;
    background: #F2F5FD;
    border-radius: 10px;
    text-align: left;
}

.membership-card-description{
    background: #F2F5FD;
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    height: 75%;
}

.membership-header {
    background: #0038DA;
    color: white;
    font-size: 24px;
    font-family: 'Yusei Magic';
    font-weight: 400;
    padding: 20px;
    text-align: center;
}

.membership-item {
    font-size: 16px;
    font-family: 'Yusei Magic';
    font-weight: 400;
    margin-top: 20px;
    color: black;
}

.membership-desc {
    font-size: 14px;
    font-family: 'Poppins';
    font-weight: 300;
    line-height: 18px;
    margin-top: 10px;
    color: black;
}

.section-six-divider {
    width: 100%;
    height: 1px;
    background-color: #90AEFF;
    margin: 20px 0;
}

/* Responsive Design */
@media (min-width: 768px) {
    .membership-container {
        justify-content: space-around;
    }
    .membership-card {
        flex: 1;
    }
    .membership-card-description{
        flex: 1;
    }
}

.pricing-box {
    width: 80%;
    height: 65px;
    background: #FFE85E;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}

.pricing-text {
    text-align: center;
    color: black;
    font-size: 20px;
    font-family: "Yusei Magic";
    font-weight: 400;
    line-height: 1.2;
    word-wrap: break-word;
}

@media (max-width: 400px) {
    .pricing-box {
        height: 50px;
        max-width: 200px;
    }

    .pricing-text {
        font-size: 16px;
    }
}


@media screen and (max-width: 768px) {
    .section-six {
        padding: 0px 0px;
        width: 95%;
    }
    .section-six-title {
        font-size: 25px;
        margin-bottom: 20px;
        margin-top: 20px;
    }
    .membership-header {
        padding: 10px;
        font-size: 18px;
    }
    .membership-item {
        margin-top: 0px;
    }
    .membership-card-description {
        height: auto;
    }
}

/*end of section six style*/

/*start of section seven style*/
.section-seven {
    padding: 20px;
    max-width: 100%;
    width: 70%;
}

.section-seven-frame-image{
    position: absolute;
    left: 9%;
    width: 6%;
    display: block;
}

.section-seven-title {
    color: black;
    font-size: 40px;
    font-family: 'Yusei Magic';
    font-weight: 400;
    line-height: 50px;
    word-wrap: break-word;
}

.section-seven-description {
    max-width: 854px;
    color: black;
    font-size: 14px;
    font-family: 'Poppins';
    font-weight: 400;
    line-height: 18px;
    word-wrap: break-word;
    margin-top: 40px; /* Added space between title and description */
}

@media (max-width: 768px) {
    .section-seven-frame-image{
        display: none;
    }
    .section-seven {
        width: 100%;
        padding: 0px;
    }
    .section-seven-title {
        font-size: 25px;
        line-height: 40px;
    }

    .section-seven-description {
        font-size: 12px;
        line-height: 16px;
        margin-top: 10px;
        width: 90%;
        text-align: left;
    }
}

.section-seven-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2%;
    width: 90%;
    max-width:100%;
    margin-top: 30px;
}

.section-seven-championship-card {
    width: 21%;
    height: auto;
    background: #F2F5FD;
    border-radius: 10%;
    display: flex;
    flex-direction: column;
    padding: 3%;
    position: relative;
    text-align: center;
}

.section-seven-championship-card-title {
    margin-top: 10%;
    width: 60%;
    color: black;
    font-size: 24px;
    font-weight: 500;
    word-wrap: break-word;
    text-align: left;
    font-family: Yusei Magic;
}

.section-seven-championship-card-description{
    margin-top: 8%;
    width: 90%;
    height: 30%;
    color: black;
    font-size: 80%;
    font-family: 'Poppins';
    font-weight: 300;
    line-height: 120%;
    word-wrap: break-word;
    text-align: left;
}

.section-seven-championship-card-trophy {
    width: 20%;
    height: auto;
    position: absolute;
    top: 10%;
    right: 10%;
}

.section-seven-meetup-card-trophy {
    width: 20%;
    height: auto;
    position: absolute;
    top: 10%;
    right: 10%;
}

.section-seven-chapters-card-trophy {
    width: 18%;
    height: auto;
    position: absolute;
    top: 10%;
    right: 10%;
}

@media (max-width: 1024px) {
    .section-seven-container {
        justify-content: center;
    }
    .section-seven-championship-card {
        width: 45%;
        height: 50%;
        margin: 0px;
        margin-top: 10px;
    }
    .section-seven-championship-card-trophy {
        width: 16%;
        height: auto;
    }
    .section-seven-chapters-card-trophy {
        width: 15%;
        height: auto;
    }
    .section-seven-meetup-card-trophy {
        width: 18%;
        height: auto;
    }
}

@media (max-width: 768px) {
    .section-seven-container {
        flex-direction: column;
        align-items: center;
        margin-top: 10px;
    }
    .section-seven-championship-card {
        width: 85%;
        height: auto;
        padding: 20px;
    }
}
/*end of section seven style*/

/*start of section eight style*/
.section-eight {
    margin-top: 50px;
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
}
.section-eight-container {
    width: 80%;
    background: #1E1E1E;
    border-radius: 70px;
    padding: 70px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.section-eight-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.section-eight-content-block {
    text-align: center;
    color: white;
    flex: 1;
    min-width: 250px;
}
.section-eight-title {
    color: #FFE85E;
    font-size: 40px;
    font-family: 'Yusei Magic';
    font-weight: 400;
    line-height: 50px;
    margin-bottom: 50px;
}
.section-eight-icon {
    width: 61px;
    height: 61px;
}
.section-eight-sub-title {
    font-size: 24px;
    font-family: 'Yusei Magic';
    font-weight: 400;
    margin: 10px 0;
}
.section-eight-description {
    font-size: 14px;
    font-family: 'Poppins';
    font-weight: 300;
    line-height: 18px;
    max-width: 90%;
}
.section-eight-button {
    margin-top: 20px;
    background: white;
    border-radius: 10px;
    padding: 15px 30px;
    font-size: 20px;
    font-family: 'Yusei Magic';
    font-weight: 400;
    text-decoration: none;
    color: black;
    display: inline-block;
}
.divider {
    display: flex;
    justify-content: center;
    align-items: center;
}
.frame-image {
    position: absolute;
    bottom: -34px;
    right: -20px;
    width: 8%;
    display: block;
}
@media (max-width: 1024px) {
    .divider {
        display: none;
    }
}
@media (max-width: 768px) {
    .section-eight-wrapper {
        flex-direction: column;
    }
    .section-eight-container {
        width: 90%;
        border-radius: 30px;
        padding: 10px;
    }
    .section-eight-title {
        font-size: 30px;
        line-height: 40px;
        margin-bottom: 10px;
        margin-top: 10px;
    }
    .section-eight-sub-title {
        font-size: 20px;
    }
    .section-eight-description {
        font-size: 12px;
        line-height: 16px;
        max-width: 100%;
    }
    .section-eight-button {
        font-size: 18px;
        padding: 10px 20px;
        margin-bottom: 20px;
    }
    .frame-image {
        width: 100px;
        bottom: -10px;
        right: -10px;
        display: none;
    }
}

/* Mobile styles (for screens smaller than 768px) */
@media (max-width: 768px) {
    .section-eight {
        padding: 5px;
        margin-top: 5px;
    }
}
/*end of section eight style*/