* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*==================================
        HERO SECTION
==================================*/

.hero {
    width: 100%;
    background: #ffffff;
    padding: 120px 0 90px;
}

.hero-container {
    width: calc(100% - 240px);
    max-width: 1400px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 70px;
}

/*==================================
        LEFT
==================================*/
.hero-left {
    flex: 1;
}

.hero-badge {
    display: inline-block;
    background: #EFF6FF;
    color: #2563EB;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Nunito', sans-serif;
    margin-bottom: 30px;
}

.hero-left h1 {
    font-size: 58px;
    line-height: 1.15;
    color: #111827;
    font-weight: 800;
    font-family: 'Nunito', sans-serif;
    margin-bottom: 28px;
}

.hero-left h1 span {
    color: #2563EB;
}

.hero-left p {
    font-size: 20px;
    line-height: 1.8;
    color: #6B7280;
    font-family: 'Nunito', sans-serif;
    margin-bottom: 38px;
    max-width: 650px;
}

.hero-left strong {
    color: #111827;
}

/*==================================
        BUTTONS
==================================*/
.hero-buttons {
    display: flex;
    gap: 18px;
    margin-bottom: 35px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 34px;
    background: #2563EB;
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
    transition: .35s;
}

.btn-primary:hover {
    background: #1D4ED8;
    transform: translateY(-3px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 34px;
    border: 2px solid #2563EB;
    color: #2563EB;
    text-decoration: none;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
    transition: .35s;
}

.btn-secondary:hover {
    background: #EFF6FF;
    transform: translateY(-3px);
}

/*==================================
        RATING
==================================*/
.hero-rating {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 15px;
}

.stars {
    font-size: 22px;
}

.hero-rating span {
    font-size: 17px;
    color: #6B7280;
    font-family: 'Nunito', sans-serif;
}

/*==================================
        RIGHT
==================================*/
.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-right img {
    width: 100%;
    max-width: 620px;
    border-radius: 3%;
    animation: float 4s ease-in-out infinite;
}

/*==================================
        FLOAT ANIMATION
==================================*/

@keyframes float {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0px);
    }

}

/*==================================
        TABLET
==================================*/
@media(max-width:992px) {

    .hero {
        padding: 100px 0 70px;
    }

    .hero-container {
        width: calc(100% - 80px);
        flex-direction: column-reverse;
        text-align: center;
        gap: 50px;
    }

    .hero-left p {
        max-width: 100%;
    }

    .hero-left h1 {
        font-size: 46px;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-rating {
        justify-content: center;
    }

    .hero-right img {
        max-width: 500px;
    }

}

/*==================================
        MOBILE
==================================*/
@media(max-width:768px) {

    .hero {
        padding: 90px 0 60px;
    }

    .hero-container {
        width: calc(100% - 40px);
    }

    .hero-badge {
        font-size: 14px;
        padding: 8px 16px;
    }

    .hero-left h1 {
        font-size: 36px;
    }

    .hero-left p {
        font-size: 17px;
        line-height: 1.7;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 320px;
    }

    .hero-rating {
        flex-direction: column;
        gap: 10px;
    }

    .hero-right img {
        max-width: 350px;
    }
}

/*==================================
        TRUST SECTION
==================================*/
.trust-section {
    width: 100%;
    padding: 90px 0;
    background: #F8FBFF;
}

.trust-container {
    width: calc(100% - 240px);
    max-width: 1400px;
    margin: auto;
}

/*============================*/
.section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 10px 22px;
    background: #E8F1FF;
    color: #2563EB;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
    margin-bottom: 25px;
}

.section-heading h2 {
    font-size: 48px;
    font-weight: 800;
    color: #111827;
    font-family: 'Nunito', sans-serif;
    margin-bottom: 20px;
}

.section-heading h2 span {
    color: #2563EB;
}

.section-heading p {
    max-width: 760px;
    margin: auto;
    font-size: 20px;
    color: #6B7280;
    line-height: 1.8;
    font-family: 'Nunito', sans-serif;
}

/*============================*/
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/*============================*/
.trust-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 30px 15px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .06);
    transition: .35s;
}

.trust-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(37, 99, 235, .15);
}

.trust-icon {
    width: 85px;
    height: 85px;
    margin: auto;
    border-radius: 50%;
    background: #EFF6FF;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    margin-bottom: 25px;
}

.trust-card h3 {
    font-size: 42px;
    color: #2563EB;
    font-weight: 800;
    margin-bottom: 12px;
    font-family: 'Nunito', sans-serif;
}

.trust-card p {
    font-size: 18px;
    color: #4B5563;
    font-family: 'Nunito', sans-serif;
}

/*==================================
        TABLET
==================================*/
@media(max-width:992px) {

    .trust-container {
        width: calc(100% - 80px);
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-heading h2 {
        font-size: 40px;
    }
}

/*==================================
        MOBILE
==================================*/
@media(max-width:768px) {

    .trust-container {
        width: calc(100% - 40px);
    }

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .section-heading h2 {
        font-size: 32px;
    }

    .section-heading p {
        font-size: 17px;
    }

    .trust-card {
        padding: 35px 20px;
    }

    .trust-card h3 {
        font-size: 34px;
    }
}

/*==================================
        LEARNING SECTION
==================================*/
.learning-section {
    width: 100%;
    padding: 100px 0;
    background: #ffffff;
}

.learning-container {
    width: calc(100% - 240px);
    max-width: 1400px;
    margin: auto;
}

/*=============================*/
.learning-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

/*=============================*/
.learning-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px 35px;
    border: 1px solid #E5E7EB;
    transition: .35s;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .05);
}

.learning-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(37, 99, 235, .15);
}

/*=============================*/
.learning-icon {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    background: #EFF6FF;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 42px;
    margin-bottom: 28px;
}

.learning-card h3 {
    font-size: 28px;
    color: #111827;
    font-family: 'Nunito', sans-serif;
    margin-bottom: 18px;
    font-weight: 800;
}

.learning-card p {
    font-size: 17px;
    line-height: 1.8;
    color: #6B7280;
    font-family: 'Nunito', sans-serif;
}

/*=============================*/
.learning-card:nth-child(1) .learning-icon {
    background: #DBEAFE;
}

.learning-card:nth-child(2) .learning-icon {
    background: #FEF3C7;
}

.learning-card:nth-child(3) .learning-icon {
    background: #DCFCE7;
}

.learning-card:nth-child(4) .learning-icon {
    background: #FCE7F3;
}

.learning-card:nth-child(5) .learning-icon {
    background: #EDE9FE;
}

.learning-card:nth-child(6) .learning-icon {
    background: #FEE2E2;
}

/*=============================*/
/* Tablet */
/*=============================*/
@media(max-width:992px) {

    .learning-container {
        width: calc(100% - 80px);
    }

    .learning-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/*=============================*/
/* Mobile */
/*=============================*/
@media(max-width:768px) {

    .learning-container {
        width: calc(100% - 40px);
    }

    .learning-grid {
        grid-template-columns: 1fr;
    }

    .learning-card {
        padding: 30px;
    }

    .learning-card h3 {
        font-size: 24px;
    }

    .learning-card p {
        font-size: 16px;
    }
}


/*=================================
        LEARNING JOURNEY
==================================*/
.journey {
    width: 100%;
    padding: 100px 0;
    background: #F8FBFF;
}

.journey-container {
    width: calc(100% - 240px);
    max-width: 1400px;
    margin: auto;
}

/*=========================
      Heading
=========================*/
.journey-heading {
    text-align: center;
    margin-bottom: 70px;
}

.small-title {
    display: inline-block;
    background: #FFE08A;
    color: #111;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: 'Nunito', sans-serif;
}

.journey-heading h2 {
    margin-top: 25px;
    font-size: 48px;
    font-weight: 800;
    color: #111827;
    font-family: 'Nunito', sans-serif;
}

.journey-heading p {
    margin-top: 18px;
    font-size: 20px;
    color: #6B7280;
    line-height: 1.8;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Nunito', sans-serif;
}

/*=========================
        Grid
=========================*/
.journey-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/*=========================
        Card
=========================*/
.journey-card {
    position: relative;
    background: #ffffff;
    border-radius: 24px;
    padding: 40px 28px;
    text-align: center;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .08);
    transition: .35s;
}

.journey-card:hover {

    transform: translateY(-10px);
    box-shadow: 0 22px 55px rgba(0, 123, 255, .18);
}

/*=========================
      Step Number
=========================*/
.journey-number {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #4F46E5;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    font-weight: 800;
    font-family: 'Nunito', sans-serif;
}

/*=========================
         Image
=========================*/
.journey-card img {
    width: 95px;
    margin-top: 20px;
}

/*=========================
        Text
=========================*/
.journey-card h3 {
    margin-top: 22px;
    font-size: 28px;
    color: #111827;
    font-family: 'Nunito', sans-serif;
}

.journey-card p {
    margin-top: 16px;
    font-size: 17px;
    color: #6B7280;
    line-height: 1.8;
    font-family: 'Nunito', sans-serif;
}

/*=========================
      Tablet
=========================*/
@media(max-width:992px) {

    .journey-container {
        width: 90%;
    }

    .journey-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .journey-heading h2 {
        font-size: 38px;
    }
}

/*=========================
      Mobile
=========================*/
@media(max-width:425px) {

    .journey {
        padding: 70px 0;
    }

    .journey-container {
        width: 92%;
    }

    .journey-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .journey-heading {
        margin-bottom: 45px;
    }

    .journey-heading h2 {
        font-size: 30px;
    }

    .journey-heading p {
        font-size: 16px;
    }

    .journey-card {
        padding: 35px 24px;
    }

    .journey-card h3 {
        font-size: 24px;
    }

    .journey-card p {
        font-size: 15px;
    }
}

/*====================================
        PROJECTS SECTION
====================================*/

.projects-section {
    width: 100%;
    padding: 100px 0;
    background: #ffffff;
}

.projects-container {
    width: calc(100% - 240px);
    max-width: 1400px;
    margin: auto;
}

/* Heading */

.section-heading {
    text-align: center;
    margin-bottom: 70px;
}

.section-heading h2 {
    font-size: 48px;
    font-weight: 800;
    color: #111827;
    font-family: 'Nunito', sans-serif;
    margin-bottom: 20px;
}

.heading-line {
    width: 70px;
    height: 5px;
    background: #ff7a00;
    margin: 0 auto 25px;
    border-radius: 50px;
}

.section-heading p {
    max-width: 750px;
    margin: auto;
    font-size: 20px;
    line-height: 1.8;
    color: #6b7280;
    font-family: 'Nunito', sans-serif;
}

/* Grid */

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

/* Card */

.project-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 35px;
    text-align: center;
    border: 1px solid #e5e7eb;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
    transition: .35s;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(37, 99, 235, .18);
}

.project-card img {
    width: 220px;
    height: 220px;
    object-fit: contain;
    margin: auto;
    display: block;
}

.project-card h3 {
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 28px;
    color: #111827;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
}

.project-card p {
    font-size: 17px;
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 25px;
    font-family: 'Nunito', sans-serif;
}

/* Difficulty */

.difficulty {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 25px;
    font-family: 'Nunito', sans-serif;
}

.beginner {
    background: #dcfce7;
    color: #15803d;
}

.intermediate {
    background: #dbeafe;
    color: #1d4ed8;
}

.advanced {
    background: #fde68a;
    color: #b45309;
}

/* Button */

.project-btn {
    display: inline-block;
    padding: 14px 34px;
    background: #2563eb;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    transition: .3s;
    font-family: 'Nunito', sans-serif;
}

.project-btn:hover {
    background: #1d4ed8;
}

/*====================================
            TABLET
====================================*/

@media (max-width:991px) {

    .projects-container {
        width: calc(100% - 60px);
    }

    .section-heading h2 {
        font-size: 40px;
    }

    .section-heading p {
        font-size: 18px;
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .project-card {
        padding: 30px;
    }

    .project-card img {
        width: 180px;
        height: 180px;
    }

    .project-card h3 {
        font-size: 24px;
    }

}

/*====================================
            MOBILE
====================================*/

@media (max-width:425px) {

    .projects-section {
        padding: 70px 0;
    }

    .projects-container {
        width: calc(100% - 30px);
    }

    .section-heading {
        margin-bottom: 45px;
    }

    .section-heading h2 {
        font-size: 32px;
        line-height: 1.3;
    }

    .section-heading p {
        font-size: 16px;
        line-height: 1.7;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .project-card {
        padding: 25px;
        border-radius: 18px;
    }

    .project-card img {
        width: 170px;
        height: 170px;
    }

    .project-card h3 {
        font-size: 24px;
    }

    .project-card p {
        font-size: 15px;
    }

    .project-btn {
        width: 100%;
        text-align: center;
    }

}

/*==================================
        STEM KIT
==================================*/
.stem-kit {
    width: 100%;
    padding: 100px 0;
    background: #f8fbff;
}

.stem-kit-container {
    width: calc(100% - 240px);
    max-width: 1400px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
}

/* LEFT */
.kit-left {
    width: 55%;
}

.kit-tag {
    display: inline-block;
    padding: 10px 22px;
    background: #dbeafe;
    color: #2563eb;
    border-radius: 40px;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
}

.kit-left h2 {
    margin-top: 25px;
    font-size: 46px;
    font-weight: 800;
    line-height: 1.2;
    color: #111827;
    font-family: 'Nunito', sans-serif;
}

.kit-line {
    width: 70px;
    height: 5px;
    background: #ff7a00;
    margin: 25px 0;
    border-radius: 50px;
}

.kit-left p {
    font-size: 19px;
    line-height: 1.8;
    color: #6b7280;
    margin-bottom: 40px;
    font-family: 'Nunito', sans-serif;
}

.kit-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.kit-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #ffffff;
    padding: 18px;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .05);
}

.kit-item img {
    width: 24px;
}

.kit-item span {
    font-size: 17px;
    color: #374151;
    font-weight: 600;
    font-family: 'Nunito', sans-serif;
}

/* RIGHT */
.kit-right {
    width: 45%;
    display: flex;
    justify-content: center;
}

.kit-right img {
    width: 100%;
    max-width: 550px;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
}

/*==========================
        TABLET
==========================*/
@media(max-width:991px) {

    .stem-kit-container {
        width: calc(100% - 60px);
        flex-direction: column;
    }

    .kit-left,
    .kit-right {
        width: 100%;
    }

    .kit-left h2 {
        font-size: 38px;
    }

    .kit-items {
        grid-template-columns: repeat(2, 1fr);
    }

    .kit-right {
        margin-top: 40px;
    }
}

/*==========================
        MOBILE
==========================*/
@media(max-width:425px) {

    .stem-kit {
        padding: 70px 0;
    }

    .stem-kit-container {
        width: calc(100% - 30px);
    }

    .kit-left h2 {
        font-size: 30px;
    }

    .kit-left p {
        font-size: 16px;
    }

    .kit-items {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .kit-item {
        padding: 15px;
    }

    .kit-item span {
        font-size: 15px;
    }

    .kit-right {
        margin-top: 35px;
    }

    .kit-right img {
        max-width: 100%;
    }
}

/*==================================
      HOW KIDS LEARN
==================================*/
.learning-process {
    width: 100%;
    padding: 100px 0;
    background: #f8fbff;
}

.process-container {
    width: calc(100% - 240px);
    max-width: 1400px;
    margin: auto;
}

.process-heading {
    text-align: center;
    margin-bottom: 70px;
}

.process-heading h2 {
    font-size: 46px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    color: #111827;
    margin: 18px 0;
}

.process-heading h2 span {
    color: #2563eb;
}

.process-heading p {
    max-width: 760px;
    margin: auto;
    font-size: 19px;
    line-height: 1.8;
    color: #6b7280;
    font-family: 'Nunito', sans-serif;
}

.process-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.process-card {
    flex: 1;
    background: #fff;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    border: 1px solid #e5e7eb;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .06);
    transition: .35s;
    position: relative;
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(37, 99, 235, .18);
}

.process-number {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #2563eb;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
}

.process-card img {
    width: 85px;
    height: 85px;
    object-fit: contain;
    margin-bottom: 20px;
}

.process-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #111827;
    font-family: 'Nunito', sans-serif;
}

.process-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #6b7280;
    font-family: 'Nunito', sans-serif;
}

.process-arrow {
    font-size: 38px;
    color: #2563eb;
    font-weight: bold;
}

@media (max-width:768px) {

    .process-container {
        width: 92%;
    }

    .process-grid {
        flex-direction: column;
    }

    .process-arrow {
        transform: rotate(90deg);
    }

    .process-card {
        width: 100%;
    }

    .process-heading h2 {
        font-size: 34px;
    }

    .process-heading p {
        font-size: 16px;
    }
}

/*==================================
        MENTORS
==================================*/
.mentors {
    width: 100%;
    padding: 100px 0;
    background: #ffffff;
}

.mentors-container {
    width: calc(100% - 240px);
    max-width: 1400px;
    margin: auto;
}

.mentor-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.mentor-card {
    background: #fff;
    border-radius: 22px;
    text-align: center;
    padding: 40px 30px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .06);
    transition: .35s;
}

.mentor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 50px rgba(37, 99, 235, .18);
}

.mentor-card img {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 25px;
}

.mentor-card h3 {
    font-size: 28px;
    color: #111827;
    font-family: 'Nunito', sans-serif;
    margin-bottom: 10px;
}

.mentor-role {
    display: inline-block;
    background: #eff6ff;
    color: #2563eb;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Nunito', sans-serif;
}

.mentor-card p {
    font-size: 17px;
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 25px;
    font-family: 'Nunito', sans-serif;
}

.mentor-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.mentor-tags span {
    background: #f8fafc;
    padding: 10px 16px;
    border-radius: 30px;
    font-size: 14px;
    color: #374151;
    font-family: 'Nunito', sans-serif;
}

@media (max-width:768px) {

    .mentors {
        padding: 70px 0;
    }

    .mentors-container {
        width: 92%;
    }

    .mentor-grid {
        grid-template-columns: 1fr;
    }

    .mentor-card {
        padding: 35px 25px;
    }

    .mentor-card img {
        width: 140px;
        height: 140px;
    }

    .mentor-card h3 {
        font-size: 24px;
    }

    .mentor-card p {
        font-size: 16px;
    }
}

/*==============================
        CURRICULUM
==============================*/
.curriculum {
    width: 100%;
    padding: 90px 120px;
    background: #f8fbff;
}

.curriculum-title {
    text-align: center;
    margin-bottom: 70px;
}

.curriculum-title h2 {
    font-size: 48px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    color: #222;
    margin-bottom: 15px;
}

.curriculum-title p {
    max-width: 720px;
    margin: auto;
    font-size: 20px;
    color: #666;
    line-height: 1.7;
}

.curriculum-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.level-card {
    background: #fff;
    border-radius: 24px;
    padding: 35px;
    text-align: center;
    transition: .35s;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
}

.level-card:hover {
    transform: translateY(-10px);
}

.level-number {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
}

.beginner .level-number {
    background: #4CAF50;
}

.intermediate .level-number {
    background: #2196F3;
}

.advanced .level-number {
    background: #FF9800;
}

.level-card h3 {
    margin-top: 25px;
    font-size: 30px;
    color: #222;
    font-family: 'Nunito', sans-serif;
}

.level-card span {
    display: block;
    margin-top: 10px;
    margin-bottom: 25px;
    color: #777;
    font-size: 18px;
}

.level-card ul {
    list-style: none;
    padding: 0;
}

.level-card li {
    padding: 12px 0;
    font-size: 18px;
    color: #555;
    border-bottom: 1px solid #eee;
}

.level-card li:last-child {
    border: none;
}

@media (max-width:768px) {

    .curriculum {
        padding: 70px 25px;
    }

    .curriculum-title h2 {
        font-size: 34px;
    }

    .curriculum-title p {
        font-size: 17px;
    }

    .curriculum-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .level-card {
        padding: 30px;
    }

    .level-card h3 {
        font-size: 26px;
    }

    .level-card li {
        font-size: 16px;
    }
}

/*==============================
    PARENT TESTIMONIALS
==============================*/
.parents-testimonials {
    width: 100%;
    padding: 100px 120px;
    background: #f8fbff;
}

.parents-container {
    max-width: 1400px;
    margin: auto;
}

.section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.section-heading h2 {
    font-size: 48px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    color: #111827;
    margin-bottom: 18px;
}

.section-heading p {
    max-width: 700px;
    margin: auto;
    font-size: 20px;
    line-height: 1.8;
    color: #64748b;
    font-family: 'Nunito', sans-serif;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.testimonial-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .08);
    transition: .35s;
}

.testimonial-card:hover {
    transform: translateY(-8px);
}

.parent-info {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 18px;
}

.parent-info img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

.parent-info h3 {
    font-size: 22px;
    color: #111827;
    margin-bottom: 4px;
    font-family: 'Nunito', sans-serif;
}

.parent-info span {
    color: #64748b;
    font-size: 15px;
    font-family: 'Nunito', sans-serif;
}

.stars {
    font-size: 22px;
    margin-bottom: 18px;
}

.testimonial-card p {
    font-size: 17px;
    line-height: 1.8;
    color: #475569;
    font-family: 'Nunito', sans-serif;
}

@media(max-width:768px) {

    .parents-testimonials {
        padding: 70px 25px;
    }

    .section-heading h2 {
        font-size: 34px;
    }

    .section-heading p {
        font-size: 17px;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .testimonial-card {
        padding: 25px;
    }

    .parent-info h3 {
        font-size: 20px;
    }
}

/*====================================
      WHY PARENTS TRUST KENOWIT
===================================*/
.trusts-kenowit {
    width: 100%;
    padding: 100px 0;
    background: #ffffff;
}

.trusts-container {
    width: calc(100% - 240px);
    max-width: 1400px;
    margin: auto;
}

.trusts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 60px;
}

.trusts-card {
    background: #fff;
    border-radius: 22px;
    padding: 40px 35px;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: .35s;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .06);
}

.trusts-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(37, 99, 235, .15);
}

.trusts-card img {
    width: 85px;
    height: 85px;
    object-fit: contain;
    margin-bottom: 25px;
}

.trusts-card h3 {
    font-size: 28px;
    color: #111827;
    margin-bottom: 18px;
    font-family: 'Nunito', sans-serif;
}

.trusts-card p {
    font-size: 17px;
    color: #64748b;
    line-height: 1.8;
    font-family: 'Nunito', sans-serif;
}

@media (max-width:768px) {

    .trusts-kenowit {
        padding: 70px 0;
    }

    .trusts-container {
        width: 92%;
    }

    .trusts-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .trusts-card {
        padding: 30px 25px;
    }

    .trusts-card img {
        width: 70px;
        height: 70px;
    }

    .trusts-card h3 {
        font-size: 24px;
    }

    .trusts-card p {
        font-size: 16px;
    }
}

/*==================================
   CERTIFICATES & ACHIEVEMENTS
==================================*/
.achievements {
    width: 100%;
    padding: 100px 0;
    background: #f8fbff;
}

.achievements-container {
    width: calc(100% - 240px);
    max-width: 1400px;
    margin: auto;
}

.achievement-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.achievement-card {
    background: #fff;
    border-radius: 24px;
    padding: 35px 30px;
    text-align: center;
    border: 1px solid #e5e7eb;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .06);
    transition: .35s;
}

.achievement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(37, 99, 235, .16);
}

.achievement-card img {
    width: 110px;
    height: 110px;
    object-fit: contain;
    margin-bottom: 25px;
}

.achievement-card h3 {
    font-size: 26px;
    color: #111827;
    margin-bottom: 15px;
    font-family: 'Nunito', sans-serif;
}

.achievement-card p {
    font-size: 17px;
    color: #64748b;
    line-height: 1.8;
    font-family: 'Nunito', sans-serif;
}

@media (max-width:768px) {

    .achievements {
        padding: 70px 0;
    }

    .achievements-container {
        width: 92%;
    }

    .achievement-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .achievement-card {
        padding: 30px;
    }

    .achievement-card img {
        width: 90px;
        height: 90px;
    }

    .achievement-card h3 {
        font-size: 22px;
    }

    .achievement-card p {
        font-size: 16px;
    }
}

/*=================================
      FUTURE CAREER ROADMAP
=================================*/
.career-roadmap {
    width: 100%;
    padding: 100px 120px;
    background: linear-gradient(to bottom, #ffffff, #f8fbff);
}

.roadmap-container {
    max-width: 1400px;
    margin: auto;
}

.roadmap-title {
    text-align: center;
    margin-bottom: 70px;
}

.roadmap-title h2 {
    font-size: 48px;
    font-weight: 800;
    color: #111827;
    font-family: 'Nunito', sans-serif;
    margin-bottom: 18px;
}

.roadmap-title p {
    max-width: 760px;
    margin: auto;
    font-size: 20px;
    line-height: 1.8;
    color: #6b7280;
    font-family: 'Nunito', sans-serif;
}

/*--------------------------
      ROADMAP
--------------------------*/
.roadmap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    gap: 25px;
}

/* Connecting line */
.roadmap::before {
    content: "";
    position: absolute;
    top: 60px;
    left: 8%;
    right: 8%;
    height: 4px;
    background: #dbeafe;
    z-index: 0;
    border-radius: 20px;
}

/*--------------------------
      STEP
--------------------------*/
.roadmap-step {
    position: relative;
    z-index: 2;
    flex: 1;
    background: #ffffff;
    border-radius: 24px;
    padding: 30px 22px;
    text-align: center;
    box-shadow:
        0 15px 40px rgba(0, 0, 0, .08);

    transition: .35s;
}

.roadmap-step:hover {
    transform: translateY(-10px);
    box-shadow:
        0 25px 55px rgba(37, 99, 235, .18);
}

/* Circle */
.roadmap-circle {
    width: 120px;
    height: 120px;
    margin: auto;
    border-radius: 50%;
    background: #eff6ff;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 5px solid #ffffff;
    box-shadow:
        0 10px 25px rgba(37, 99, 235, .15);
}

.roadmap-circle img {
    width: 62px;
    height: auto;
}

.roadmap-step h3 {
    margin-top: 22px;
    font-size: 26px;
    color: #111827;
    font-family: 'Nunito', sans-serif;
}

.roadmap-step p {
    margin-top: 10px;
    font-size: 17px;
    color: #6b7280;
    line-height: 1.6;
    font-family: 'Nunito', sans-serif;
}

/* Hide old arrows */
.roadmap-arrow {
    display: none;
}

/*--------------------------
      FINAL CARD
--------------------------*/
.final {
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    color: #fff;
}

.final h3 {
    color: #fff;
}

.final p {
    color: #e0e7ff;
}

.final .roadmap-circle {
    background: #ffffff;
}

.final .career-tags {
    margin-top: 22px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.final .career-tags span {
    background: rgba(255, 255, 255, .18);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .25);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-family: 'Nunito', sans-serif;
}

/*=================================
        TABLET (768px)
=================================*/

@media (max-width:768px) {

    .career-roadmap {
        padding: 70px 40px;
    }

    .roadmap-title h2 {
        font-size: 36px;
    }

    .roadmap-title p {
        font-size: 17px;
    }

    .roadmap {
        flex-direction: column;
        gap: 30px;
    }

    .roadmap-step {
        width: 100%;
        max-width: 350px;
    }

    .roadmap-arrow {
        transform: rotate(90deg);
        font-size: 30px;
    }

    .roadmap-circle {
        width: 100px;
        height: 100px;
    }

    .roadmap-circle img {
        width: 55px;
    }

    .roadmap-step h3 {
        font-size: 22px;
    }

    .roadmap-step p {
        font-size: 17px;
    }
}


/*=================================
        MOBILE (425px)
=================================*/
@media (max-width:425px) {

    .career-roadmap {
        padding: 60px 20px;
    }

    .roadmap-title {
        margin-bottom: 45px;
    }

    .roadmap-title h2 {
        font-size: 30px;
        line-height: 1.3;
    }

    .roadmap-title p {
        font-size: 15px;
        line-height: 1.7;
    }

    .roadmap {
        flex-direction: column;
        gap: 22px;
    }

    .roadmap-step {
        width: 100%;
    }

    .roadmap-circle {
        width: 90px;
        height: 90px;
    }

    .roadmap-circle img {
        width: 48px;
    }

    .roadmap-step h3 {
        margin-top: 15px;
        font-size: 20px;
    }

    .roadmap-step p {
        margin-top: 6px;
        font-size: 15px;
    }

    .roadmap-arrow {
        transform: rotate(90deg);
        font-size: 24px;
    }

    .final .career-tags {
        gap: 8px;
        margin-top: 15px;
    }

    .final .career-tags span {
        font-size: 12px;
        padding: 8px 12px;
    }

}

/*==================================
              FAQ
==================================*/
.kids-faq {
    width: 100%;
    padding: 100px 120px;
    background: #f8fbff;
}

.faq-container {
    max-width: 1100px;
    margin: auto;
}

.faq-heading {
    text-align: center;
    margin-bottom: 60px;
}

.faq-heading span {
    color: #2563eb;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1px;
}

.faq-heading h2 {
    font-size: 46px;
    margin-top: 10px;
    color: #111827;
    font-family: 'Nunito', sans-serif;
}

.faq-heading p {
    font-size: 19px;
    color: #64748b;
    margin-top: 15px;
}

.faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: #fff;
    border-radius: 18px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .05);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 20px;
    font-weight: 700;
}

.faq-question i {
    color: #2563eb;
    transition: .3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: .35s;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: #64748b;
    font-size: 17px;
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 250px;
}

.faq-item.active i {
    transform: rotate(180deg);
}

@media(max-width:768px) {

    .kids-faq {
        padding: 70px 25px;
    }

    .faq-heading h2 {
        font-size: 34px;
    }

    .faq-question {
        padding: 20px;
        font-size: 18px;
    }

    .faq-answer p {
        padding: 0 20px 20px;
        font-size: 16px;

    }
}

/*==================================
        FINAL CTA
==================================*/
.cta-section {
    width: 100%;
    padding: 100px 120px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.cta-container {
    max-width: 1400px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.cta-content {
    width: 55%;
}

.cta-badge {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(255, 255, 255, .15);
    border-radius: 50px;
    color: #fff;
    margin-bottom: 25px;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
}

.cta-content h2 {
    font-size: 52px;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 25px;
    font-family: 'Nunito', sans-serif;
}

.cta-content p {
    font-size: 20px;
    color: #e5e7eb;
    line-height: 1.8;
    margin-bottom: 40px;
    font-family: 'Nunito', sans-serif;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.btn-primary {
    padding: 18px 36px;
    background: #fff;
    color: #2563eb;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
}

.btn-secondary {
    padding: 18px 36px;
    border: 2px solid #fff;
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
}

.cta-stats {
    display: flex;
    gap: 50px;
}

.cta-stats h3 {
    font-size: 34px;
    color: #fff;
    margin-bottom: 8px;
    font-family: 'Nunito', sans-serif;
}

.cta-stats span {
    color: #dbeafe;
    font-size: 16px;
    font-family: 'Nunito', sans-serif;
}

.cta-image {
    width: 45%;
    display: flex;
    justify-content: center;
}

.cta-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 3%;
}

@media(max-width:768px) {

    .cta-section {
        padding: 70px 25px;
    }

    .cta-container {
        flex-direction: column-reverse;
        text-align: center;
        gap: 50px;
    }

    .cta-content,
    .cta-image {
        width: 100%;
    }

    .cta-content h2 {
        font-size: 34px;
    }

    .cta-content p {
        font-size: 17px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .cta-stats {
        justify-content: center;
        gap: 25px;
        flex-wrap: wrap;
    }

    .cta-image img {
        max-width: 320px;
    }
}

/*==================================
        CONTACT SECTION
==================================*/
.contact-section {
    width: 100%;
    padding: 100px 120px;
    background: #f8fbff;
}

.contact-container {
    max-width: 1400px;
    margin: auto;
    display: flex;
    gap: 70px;
}

.contact-left {
    width: 55%;
}

.contact-left h2 {
    font-size: 46px;
    margin-bottom: 20px;
    color: #111827;
    font-family: 'Nunito', sans-serif;
}

.contact-left p {
    font-size: 18px;
    line-height: 1.7;
    color: #6b7280;
    margin-bottom: 35px;
}

.contact-left form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-left input,
.contact-left select {
    width: 100%;
    height: 58px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 0 20px;
    font-size: 16px;
}

.contact-left button {
    height: 60px;
    border: none;
    background: #2563eb;
    color: #fff;
    border-radius: 12px;
    font-size: 18px;
    cursor: pointer;
}

.contact-right {
    width: 45%;
}

.contact-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #eff6ff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
}

.contact-item h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.contact-item p {
    color: #6b7280;
    line-height: 1.6;
}

@media(max-width:768px) {

    .contact-section {
        padding: 70px 25px;
    }

    .contact-container {
        flex-direction: column;
    }

    .contact-left,
    .contact-right {
        width: 100%;
    }

    .contact-left h2 {
        font-size: 34px;
    }

    .contact-card {
        padding: 30px;
    }
}

/*==================================
            FOOTER
==================================*/
.footer {
    background: #0f172a;
    color: #ffffff;
    padding: 80px 120px 30px;
}

.footer-container {
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.3fr;
    gap: 60px;
}

.footer-logo {
    width: 170px;
    margin-bottom: 25px;
}
 
.footer-column p {
    color: #cbd5e1;
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 15px;
}

.footer-column h3 {
    font-size: 22px;
    margin-bottom: 22px;
    font-family: 'Nunito', sans-serif;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column li {
    margin-bottom: 15px;
    color: #cbd5e1;
    transition: .3s;
}

.footer-column a {
    color: #cbd5e1;
    text-decoration: none;
    transition: .3s;
}

.footer-column a:hover,
.footer-column li:hover {
    color: #3b82f6;
}

.social-icons {
    display: flex;
    gap: 18px;
    margin-top: 20px;
}

.social-icons a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    transition: .3s;
}

.social-icons a:hover {
    background: #2563eb;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    margin-top: 55px;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: #94a3b8;
}

.footer-bottom a {
    color: #94a3b8;
    text-decoration: none;
    margin: 0 8px;
}

.footer-bottom a:hover {
    color: #3b82f6;
}

/*==================================
        FOOTER MOBILE
==================================*/
@media (max-width:768px) {

    .footer {
        width: 100%;
        padding: 60px 20px 30px;
        box-sizing: border-box;
    }

    .footer-container {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 35px;
    }

    .footer-column {
        width: 100%;
        max-width: 100%;
        text-align: center;
        min-width: 0;
    }

    .footer-column p,
    .footer-column li,
    .footer-column a {
        overflow-wrap: break-word;
        word-break: break-word;
    }

    .footer-logo {
        width: 150px;
        margin: 0 auto 20px;
    }

    .footer-column ul {
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-bottom {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }

    .footer-bottom div {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
}