.header {
    background-image: url("../images/header.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 100px 0;

}

.header .content {

    display: flex;
    justify-content: space-between;

    gap: 50px;
}

.header-img {
    display: flex;
    justify-content: flex-end;
    max-height: 280px;
}

.header-subtitle {
    font-size: 35px;
    color: white;
    font-weight: 500;
    position: relative;
    top: 15px;
}

.header-title {
    font-size: 60px;
    background: linear-gradient(to right, #2B91C1, white);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bolder;

    margin-bottom: 10px;
}

.header-description {
    color: white;
}

.header-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 70px;
}

.header-buttons button,
.youtube-box button,
.subscribe button,
.program-readmore {
    outline: none;
    border: none;
    border-radius: 30px;
    padding: 15px 20px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;

    color: #03045E;

    gap: 25px;

    width: 200px;
    min-width: 120px;

    transition: background 0.2s ease-in-out;
}

.btn-learn:hover {
    background: #EEE;
}

.btn-callus:hover {
    background: #21a8da;
}


/* About Category*/
.about {
    background-image: url("../images/taikondobg.png");
    background-repeat: repeat-x;
    background-size: 50%;
    background-position: center;
    padding: 150px 0;

    background-color: white;

}

.about .content {
    display: flex;
    justify-content: space-between;

    gap: 100px;
}

.about-title,
.title {
    color: #204B8A;
    margin-bottom: 35px;
    font-size: 35px;

    display: flex;
    align-items: center;

    position: relative;
}

.title-icon {
    position: absolute;
}

.description {
    font-size: 16px;
    font-weight: 500;
    color: #03045E;
}

.youtube-box {
    background: #EFF6FD;
    border-radius: 25px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 15px;
    overflow: hidden;
    margin-top: 55px;
}

.youtube-box-text {
    padding: 15px 25px;
    color: #03045E;
    font-weight: 600;
    font-size: 15px;
}

/* What we offer */


.section-title {
    font-size: 2rem;
    margin: 20px 0;
}

.hint {
    text-align: center;
    margin-bottom: 20px;
    color: #666;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Scroll Section */
.features {
    padding: 50px 0;
}

.features-title {
    font-size: 35px;
    color: #03045E;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;

    margin-bottom: 55px;
}

.content {
    overflow: hidden;

    display: flex;
    justify-content: center;
    align-items: center;
}


.scroll-container,
.scroll-container-instructors {
    display: flex;
    gap: 25px;
    overflow-x: auto;

    padding-left: 16%;
    scroll-padding-left: 16%;

    padding-top: 10px;
    padding-bottom: 40px;
    cursor: grab;
}

.scroll-container.active,
.scroll-container-instructors.active {
    cursor: grabbing;
}

.scroll-container::-webkit-scrollbar,
.scroll-container-instructors::-webkit-scrollbar {
    display: none;
}



/* Card Styles */
.card {
    flex: 0 0 400px;
    background-color: #fff;
    border-radius: 20px;
    padding: 45px;
    border: none;
    text-align: center;
    user-select: none;
}

.icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* Questions Section */
.questions {
    padding: 55px 0;
    background-color: white;
}

.questions .title {
    display: block;
}

.questions .content {
    display: flex;
    gap: 25px;

}

.questions-container {
    display: flex;
    flex: 1;
    flex-direction: column;

    gap: 35px;
}

.question-element-content {
    min-width: 350px;
    display: flex;
    flex: 1;
    flex-direction: column;
}

.question-element {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 30px;
    flex-wrap: wrap-reverse;

    gap: 35px;

}

.question-element-reverse {
    flex-direction: row-reverse;
    background-color: #EFF6FD;
    border-radius: 25px;
}

.question-element-reverse * {
    text-align: end;
}

/* Questions Icons */
.questions-icon:first-child img {
    position: relative;
    bottom: 198px;
}

.questions-icon:last-child img {
    position: relative;
    top: 150px;
}

/* Subscribe to newsletter */
.subscribe {
    background: linear-gradient(to right, #033D89, #129FD4);
    padding: 55px 0;
}

.subscribe .content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;

    flex-wrap: wrap;
}

.subscribe-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 300px;
}

.subscribe-title {
    font-weight: bold;
    font-size: 20px;
    border-bottom: 1px solid white;
    margin-bottom: 3px;
    color: white;
}

.subscribe-description {
    font-size: 14px;
    color: white;
}

.subscribe-inputs {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.subscribe input {
    background: transparent;
    color: white;
    outline: none;
    border: none;
    border-radius: 30px;
    padding: 15px 20px;
    font-weight: 600;

    border: 1px solid white;
}

.subscribe input::placeholder {
    color: white;
}

.subscribe button {
    min-width: 150px;
}

/* Programs */
.programs {
    padding: 55px 0;
    background-color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.programs .bg {
    position: absolute;
    left: 10px;
    bottom: 0;
}

.programs-content {
    margin-top: 25px;

    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
}

.program-element {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1;
    padding: 15px;
    border-radius: 30px;
}

.program-header {
    background: linear-gradient(to right, #033D89, #129FD4);
    padding: 50px 25px;
    border-radius: 30px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    position: relative;
}

.program-star-icon {
    position: absolute;
}

.program-header-icon {
    font-size: 40px;
    font-weight: bolder;
    color: white;
    z-index: 1;
}

.program-header-title {
    font-weight: bolder;
    font-size: 22px;
    color: white;
    text-align: center;
    z-index: 1;
}

.program-header-subtitle {
    color: white;
    font-size: 16px;
    text-align: center;
    z-index: 1;
}

.program-content-title {
    font-weight: bold;
    color: #03045E;
    font-size: 20px;
    text-align: center;
    margin: 20px auto 25px;
}

.program-content-description,
.program-content-description * {
    color: #03045E !important;
    font-size: 16px;
}

.program-readmore {
    color: white;
    width: 100%;
    margin-top: 25px;
}

/* Instructors */
.instructors {
    background: linear-gradient(to right, #033D89, #129FD4);
}

.instructors .hint {
    color: white !important;
}

.instructors .features-title {
    color: white;
    font-size: 55px;
}

.instructor-card {
    user-select: none;
}

.instructors-card * {
    text-align: center;
}

.instructor-name {
    font-weight: bold;
    color: white;
    font-size: 20px;
    margin-top: 15px;
}

.instructor-rank {
    font-weight: bold;
}

.instructor-description {
    margin-top: 10px;
    color: white;
}

/* FAQ */
.faq {
    background: white;
    position: relative;
    padding: 55px 0;
    overflow-x: hidden;
    min-height: 600px;
}

.bg-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}

/*start styles*/
.accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.accordion__item {
    border-radius: 10px;
    overflow: hidden;
}

.accordion__header {
    font-weight: bold;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    color: #03045C;
    font-size: 22px;
}

.accordion__header::after {
    content: '';
    background: url(https://www.svgrepo.com/show/357035/angle-down.svg) no-repeat center;
    width: 20px;
    height: 20px;
    transition: .4s;
    display: inline-block;
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 1;
}

.accordion__header.active {
    font-weight: bolder;
}

.accordion__header.active::after {
    transform: rotateX(180deg);
}

.accordion__item .accordion__content {
    padding: 5px 0;
    max-height: 0;
    transition: .5s;
    overflow: hidden;
}


/* Contact Form */
.contact {
    padding: 55px 0;
}

.contact .content {
    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 50px;
}

.contact-content {
    background-image: url("../images/icons/icon1.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;

    display: flex;
    flex-direction: column;
    flex: 3;
}

.contact-content-title {
    color: #03045E;
    font-weight: bold;
    font-size: 40px;
    margin-bottom: 35px;
}

.contact-content-subtitle {
    font-weight: 500;
    font-size: 19px;
    color: #03045E;
    margin-bottom: 20px;
}

.contact-content-description {
    color: #03045E;
    font-weight: 500;
    font-size: 19px;
}


.contact-form {
    background: white;
    padding: 40px;
    border-radius: 30px;

    display: flex;
    flex: 4;
}

form {
    width: 100%;
    display: flex;
    flex-direction: column;

    gap: 20px;

    min-height: 260px;
}

.contact-form input,
textarea {
    border: none;
    color: #03045C;
    font-weight: 500;

    padding: 5px;
    border-bottom: 2px solid #DEE8EF;

    display: flex;
    flex: 1;

    outline: none;
    max-width: 250px;
}

.input-container {
    display: flex;
    gap: 25px;
}

textarea {
    width: 100%;
    max-width: 100%;
}




@media (max-width: 1000px) {

    .content {
        align-items: flex-start;
    }

    .header-subtitle {
        font-size: 25px;
    }

    .header-title {
        font-size: 45px;
    }

}

@media (max-width: 880px) {

    .questions-icon,
    .programs .bg {
        display: none;
    }



}

@media (max-width: 770px) {
    .header {
        background-position: right;
    }

    .content {
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
    }

    .content * {
        text-align: center;
    }

    .about-title {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .header-buttons {
        justify-content: center;
    }

    .scroll-container,
    .scroll-container-instructors {

        padding-left: 5%;
        scroll-padding-left: 5%;
    }


    .question-element {
        flex-direction: column-reverse;
    }


    .subscribe .content {
        flex-direction: column;
    }

    .subscribe .content img {
        display: none;
    }
}