* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* SCHOOL HERO */
.school-hero {
    position: relative;
    width: 100%;
    min-height: 700px;
    background:
        linear-gradient(rgba(0, 0, 0, .55),
            rgba(0, 0, 0, .55)),
        url("schoollab/school-lab-hero.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.hero-content {
    width: calc(100% - 240px);
    max-width: 1400px;
    margin: auto;
    color: #fff;
}

.hero-badge {
    margin-top: 15px;
    display: inline-block;
    padding: 10px 22px;
    background: rgba(255, 255, 255, .15);
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
    margin-bottom: 30px;
}

.hero-content h1 {
    max-width: 720px;
    font-size: 60px;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 28px;
    font-family: 'Nunito', sans-serif;
}

.hero-content p {
    max-width: 650px;
    font-size: 20px;
    line-height: 1.8;
    color: #E5E7EB;
    font-family: 'Nunito', sans-serif;
    margin-bottom: 45px;
}

.hero-buttons {
    display: flex;
    gap: 18px;
}

.btn-primary {
    padding: 16px 34px;
    background: #2563EB;
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
}

.btn-secondary {
    padding: 16px 34px;
    border: 2px solid #fff;
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
}

/* TABLET */
@media(max-width:992px) {
    .school-hero {
        min-height: 620px;
    }

    .hero-content {
        width: calc(100% - 80px);
        text-align: center;
    }

    .hero-content h1 {
        font-size: 46px;
        font-family: 'Nunito', sans-serif;
        max-width: 100%;
    }

    .hero-content p {
        font-family: 'Nunito', sans-serif;
        max-width: 100%;
    }

    .hero-buttons {
        font-family: 'Nunito', sans-serif;
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* MOBILE */
@media(max-width:768px) {
    .school-hero {
        min-height: 580px;
    }

    .hero-content {
        width: calc(100% - 40px);
    }

    .hero-content h1 {
        font-family: 'Nunito', sans-serif;
        font-size: 34px;
    }

    .hero-content p {
        font-family: 'Nunito', sans-serif;
        font-size: 17px;
    }

    .hero-buttons {
        font-family: 'Nunito', sans-serif;
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        font-family: 'Nunito', sans-serif;
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

/*==================================
        TRUSTED BY SCHOOLS
==================================*/
.trusted-schools {
    width: 100%;
    padding: 100px 0;
    background: #ffffff;
}

.trusted-container {
    width: calc(100% - 240px);
    max-width: 1400px;
    margin: auto;
}

/* Heading */
.trusted-heading {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 70px;
}

.trusted-heading span {
    color: #2563eb;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.trusted-heading h2 {
    margin: 18px 0;
    font-size: 48px;
    line-height: 1.25;
    color: #111827;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
}

.trusted-heading h2 span {
    color: #2563eb;
    font-size: 40px;
}

.trusted-heading p {
    font-size: 20px;
    line-height: 1.8;
    color: #64748b;
    font-family: 'Nunito', sans-serif;
}

/* Cards */
.trusted-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.trusted-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    padding: 40px 25px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .05);
    transition: .35s;
}

.trusted-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(37, 99, 235, .15);
}

.trusted-card img {
    width: 75px;
    height: 75px;
    object-fit: contain;
    margin-bottom: 25px;
}

.trusted-card h3 {
    font-size: 40px;
    color: #2563eb;
    font-family: 'Nunito', sans-serif;
    margin-bottom: 10px;
    font-weight: 800;
}

.trusted-card p {
    font-size: 18px;
    color: #64748b;
    line-height: 1.6;
    font-family: 'Nunito', sans-serif;
}

/* TABLET */
@media(max-width:1200px) {
    .trusted-container {
        width: calc(100% - 80px);
    }

    .trusted-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trusted-heading h2 {
        font-size: 40px;
    }
}

/* MOBILE */
@media(max-width:768px) {
    .trusted-schools {
        padding: 70px 0;
    }

    .trusted-container {
        width: calc(100% - 40px);
    }

    .trusted-heading {
        margin-bottom: 45px;
    }

    .trusted-heading h2 {
        font-size: 32px;
    }

    .trusted-heading p {
        font-size: 16px;
    }

    .trusted-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .trusted-card {
        padding: 35px 20px;
    }

    .trusted-card h3 {
        font-size: 34px;
    }

    .trusted-card p {
        font-size: 16px;
    }
}

/*==================================
        WHY STEM LAB
==================================*/
.why-stem {
    width: 100%;
    padding: 100px 0;
    background: #f8fbff;
}

.why-stem-container {
    width: calc(100% - 240px);
    max-width: 1400px;
    margin: auto;
}

/* HEADING */
.why-heading {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 70px;
}

.why-heading span {
    color: #2563eb;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.why-heading h2 {
    margin: 18px 0;
    font-size: 48px;
    line-height: 1.2;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    color: #111827;
}

.why-heading h2 span {
    color: #2563eb;
}

.why-heading p {
    font-size: 20px;
    line-height: 1.8;
    color: #64748b;
    font-family: 'Nunito', sans-serif;
}

/* GRID */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.why-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid #E5E7EB;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .05);
    transition: .35s;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(37, 99, 235, .15);
}

.why-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.why-card h3 {
    margin: 25px 25px 15px;
    font-size: 28px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    color: #111827;
}

.why-card p {
    margin: 0 25px 30px;
    font-size: 17px;
    line-height: 1.8;
    color: #64748b;
    font-family: 'Nunito', sans-serif;
}

/* TABLET */
@media(max-width:1200px) {
    .why-stem {
        padding: 80px 0;
    }

    .why-stem-container {
        width: calc(100% - 80px);
    }

    .why-heading h2 {
        font-size: 40px;
    }

    .why-heading p {
        font-size: 18px;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

/* MOBILE */
@media(max-width:768px) {
    .why-stem {
        padding: 70px 0;
    }

    .why-stem-container {
        width: calc(100% - 40px);
    }

    .why-heading {
        margin-bottom: 45px;
    }

    .why-heading h2 {
        font-size: 32px;
    }

    .why-heading p {
        font-size: 16px;
        line-height: 1.7;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .why-card img {
        height: 210px;
    }

    .why-card h3 {
        font-size: 24px;
    }

    .why-card p {
        font-size: 16px;
    }
}

/* SMALL MOBILE */
@media(max-width:425px) {
    .why-stem {
        padding: 60px 0;
    }

    .why-heading h2 {
        font-size: 28px;
    }

    .why-heading p {
        font-size: 15px;
    }

    .why-card img {
        height: 190px;
    }

    .why-card h3 {
        font-size: 22px;
        margin: 20px 20px 12px;
    }

    .why-card p {
        margin: 0 20px 25px;
        font-size: 15px;
    }
}

/*==================================
        LAB SETUP
==================================*/

.lab-setup {
    width: 100%;
    padding: 100px 0;
    background: #ffffff;
}

.lab-container {
    width: calc(100% - 240px);
    max-width: 1400px;
    margin: auto;
}

/* Heading */

.lab-heading {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 60px;
}

.lab-heading span {
    color: #2563eb;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.lab-heading h2 {
    margin: 18px 0;
    font-size: 48px;
    line-height: 1.2;
    color: #111827;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
}

.lab-heading h2 span {
    color: #2563eb;
}

.lab-heading p {
    font-size: 20px;
    color: #64748b;
    line-height: 1.8;
    font-family: 'Nunito', sans-serif;
}

/* Banner */

.lab-banner {
    margin-bottom: 60px;
}

.lab-banner img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 24px;
    display: block;
}

/* Grid */

.lab-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card */

.lab-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    padding: 35px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .05);
    transition: .35s;
}

.lab-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(37, 99, 235, .15);
}

.lab-card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 25px;
}

.lab-card h3 {
    font-size: 28px;
    color: #111827;
    margin-bottom: 15px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
}

.lab-card p {
    font-size: 17px;
    line-height: 1.8;
    color: #64748b;
    font-family: 'Nunito', sans-serif;
}

/* Tablet */

@media(max-width:1200px) {

    .lab-setup {
        padding: 80px 0;
    }

    .lab-container {
        width: calc(100% - 80px);
    }

    .lab-heading h2 {
        font-size: 40px;
    }

    .lab-heading p {
        font-size: 18px;
    }

    .lab-banner img {
        height: 420px;
    }

    .lab-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

/* Mobile */

@media(max-width:768px) {

    .lab-setup {
        padding: 70px 0;
    }

    .lab-container {
        width: calc(100% - 40px);
    }

    .lab-heading {
        margin-bottom: 40px;
    }

    .lab-heading h2 {
        font-size: 32px;
    }

    .lab-heading p {
        font-size: 16px;
    }

    .lab-banner {
        margin-bottom: 40px;
    }

    .lab-banner img {
        height: 260px;
        border-radius: 18px;
    }

    .lab-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .lab-card {
        padding: 30px 22px;
    }

    .lab-card h3 {
        font-size: 24px;
    }

    .lab-card p {
        font-size: 16px;
    }

}

/* Small Mobile */

@media(max-width:425px) {

    .lab-setup {
        padding: 60px 0;
    }

    .lab-heading h2 {
        font-size: 28px;
    }

    .lab-heading p {
        font-size: 15px;
    }

    .lab-banner img {
        height: 220px;
    }

    .lab-card {
        padding: 25px 18px;
    }

    .lab-card img {
        width: 70px;
        height: 70px;
    }

    .lab-card h3 {
        font-size: 22px;
    }

    .lab-card p {
        font-size: 15px;
    }

}

/*==================================
        LEARNING JOURNEY
==================================*/

.learning-journey {
    width: 100%;
    padding: 100px 0;
    background: #f8fbff;
}

.journey-container {
    width: calc(100% - 240px);
    max-width: 1400px;
    margin: auto;
}

/*==================================
        HEADING
==================================*/

.journey-heading {
    max-width: 850px;
    margin: 0 auto 70px;
    text-align: center;
}

.journey-heading span {
    color: #2563eb;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Nunito', sans-serif;
}

.journey-heading h2 {
    font-size: 48px;
    font-weight: 800;
    color: #111827;
    margin: 18px 0;
    line-height: 1.2;
    font-family: 'Nunito', sans-serif;
}

.journey-heading h2 span {
    color: #2563eb;
}

.journey-heading p {
    font-size: 20px;
    line-height: 1.8;
    color: #64748b;
    font-family: 'Nunito', sans-serif;
}

/*==================================
        GRID
==================================*/

.journey-grid {
    display: grid;
    grid-template-columns: repeat(11, 1fr);
    align-items: center;
    gap: 15px;
}

/*==================================
        CARD
==================================*/

.journey-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    padding: 25px;
    text-align: center;
    position: relative;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .05);
    transition: .35s;
}

.journey-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(37, 99, 235, .15);
}

.journey-number {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #2563eb;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
}

.journey-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 20px;
}

.journey-card h3 {
    font-size: 24px;
    color: #111827;
    margin-bottom: 12px;
    font-weight: 800;
    font-family: 'Nunito', sans-serif;
}

.journey-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #64748b;
    font-family: 'Nunito', sans-serif;
}

/*==================================
        ARROW
==================================*/

.journey-arrow {
    text-align: center;
    font-size: 36px;
    color: #2563eb;
    font-weight: 700;
}

/*==================================
        TABLET
==================================*/

@media(max-width:1200px) {

    .learning-journey {
        padding: 80px 0;
    }

    .journey-container {
        width: calc(100% - 80px);
    }

    .journey-heading h2 {
        font-size: 40px;
    }

    .journey-heading p {
        font-size: 18px;
    }

    .journey-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .journey-arrow {
        display: none;
    }

    .journey-card {
        padding: 28px;
    }

    .journey-card img {
        height: 220px;
    }

}

/*==================================
        MOBILE
==================================*/

@media(max-width:768px) {

    .learning-journey {
        padding: 70px 0;
    }

    .journey-container {
        width: calc(100% - 40px);
    }

    .journey-heading {
        margin-bottom: 45px;
    }

    .journey-heading h2 {
        font-size: 34px;
    }

    .journey-heading p {
        font-size: 16px;
    }

    .journey-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .journey-card {
        padding: 24px;
    }

    .journey-card img {
        height: 220px;
    }

    .journey-card h3 {
        font-size: 22px;
    }

    .journey-card p {
        font-size: 15px;
    }

}

/*==================================
        SMALL MOBILE
==================================*/

@media(max-width:425px) {

    .learning-journey {
        padding: 60px 0;
    }

    .journey-container {
        width: calc(100% - 40px);
    }

    .journey-heading h2 {
        font-size: 30px;
    }

    .journey-heading p {
        font-size: 15px;
    }

    .journey-card {
        padding: 20px;
        border-radius: 18px;
    }

    .journey-card img {
        height: 190px;
    }

    .journey-number {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }

    .journey-card h3 {
        font-size: 20px;
    }

    .journey-card p {
        font-size: 14px;
        line-height: 1.7;
    }

}

/*==================================
        CURRICULUM
==================================*/

.curriculum {
    width: 100%;
    padding: 100px 0;
    background: #ffffff;
}

.curriculum-container {
    width: calc(100% - 240px);
    max-width: 1400px;
    margin: auto;
}

/* Heading */

.curriculum-heading {
    max-width: 850px;
    margin: 0 auto 70px;
    text-align: center;
}

.curriculum-heading span {
    color: #2563eb;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.curriculum-heading h2 {
    font-size: 48px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    margin: 18px 0;
    color: #111827;
}

.curriculum-heading h2 span {
    color: #2563eb;
}

.curriculum-heading p {
    font-size: 20px;
    color: #64748b;
    line-height: 1.8;
}

/* Grid */

.curriculum-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Card */

.curriculum-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .05);
    transition: .35s;
}

.curriculum-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(37, 99, 235, .15);
}

.curriculum-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.curriculum-card h3 {
    font-size: 28px;
    text-align: center;
    margin: 25px 0;
    font-family: 'Nunito', sans-serif;
    color: #111827;
}

.curriculum-card ul {
    list-style: none;
    padding: 0 35px 35px;
    margin: 0;
}

.curriculum-card ul li {
    padding: 10px 0;
    font-size: 17px;
    color: #64748b;
    border-bottom: 1px solid #eef2f7;
    font-family: 'Nunito', sans-serif;
}

.curriculum-card ul li:last-child {
    border: none;
}

/* Tablet */

@media(max-width:1200px) {

    .curriculum {
        padding: 80px 0;
    }

    .curriculum-container {
        width: calc(100% - 80px);
    }

    .curriculum-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

/* Mobile */

@media(max-width:768px) {

    .curriculum {
        padding: 70px 0;
    }

    .curriculum-container {
        width: calc(100% - 40px);
    }

    .curriculum-heading h2 {
        font-size: 34px;
    }

    .curriculum-heading p {
        font-size: 16px;
    }

    .curriculum-grid {
        grid-template-columns: 1fr;
    }

    .curriculum-card img {
        height: 200px;
    }

}

/* Small Mobile */

@media(max-width:425px) {

    .curriculum {
        padding: 60px 0;
    }

    .curriculum-heading h2 {
        font-size: 30px;
    }

    .curriculum-heading p {
        font-size: 15px;
    }

    .curriculum-card h3 {
        font-size: 24px;
    }

    .curriculum-card ul {
        padding: 0 25px 25px;
    }

    .curriculum-card ul li {
        font-size: 15px;
    }

}

/*==================================
        SCHOOL PROJECTS
==================================*/

.school-projects {
    width: 100%;
    padding: 100px 0;
    background: #f8fbff;
}

.projects-container {
    width: calc(100% - 240px);
    max-width: 1400px;
    margin: auto;
}

/* Heading */

.projects-heading {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 70px;
}

.projects-heading span {
    color: #2563eb;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.projects-heading h2 {
    font-size: 48px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    color: #111827;
    margin: 18px 0;
}

.projects-heading h2 span {
    color: #2563eb;
}

.projects-heading p {
    font-size: 20px;
    line-height: 1.8;
    color: #64748b;
}

/* Grid */

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card */

.project-card {
    overflow: hidden;
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .06);
    transition: .35s;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(37, 99, 235, .15);
}

.project-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.project-content {
    padding: 30px;
}

.project-content h3 {
    font-size: 28px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 15px;
    font-family: 'Nunito', sans-serif;
}

.project-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #64748b;
}

/* Tablet */

@media(max-width:1200px) {

    .projects-container {
        width: calc(100% - 80px);
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

/* Mobile */

@media(max-width:768px) {

    .school-projects {
        padding: 70px 0;
    }

    .projects-container {
        width: calc(100% - 40px);
    }

    .projects-heading h2 {
        font-size: 34px;
    }

    .projects-heading p {
        font-size: 16px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .project-card img {
        height: 220px;
    }

    .project-content {
        padding: 22px;
    }

}

/* Small Mobile */

@media(max-width:425px) {

    .school-projects {
        padding: 60px 0;
    }

    .projects-heading h2 {
        font-size: 30px;
    }

    .projects-heading p {
        font-size: 15px;
    }

    .project-content h3 {
        font-size: 24px;
    }

    .project-content p {
        font-size: 15px;
    }

}

/*==================================
        SCHOOL BENEFITS
==================================*/

.school-benefits {
    width: 100%;
    padding: 100px 0;
    background: #ffffff;
}

.benefits-container {
    width: calc(100% - 240px);
    max-width: 1400px;
    margin: auto;
}

/* Heading */

.benefits-heading {
    max-width: 850px;
    margin: 0 auto 70px;
    text-align: center;
}

.benefits-heading span {
    color: #2563eb;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Nunito', sans-serif;
}

.benefits-heading h2 {
    margin: 18px 0;
    font-size: 48px;
    font-weight: 800;
    color: #111827;
    line-height: 1.2;
    font-family: 'Nunito', sans-serif;
}

.benefits-heading h2 span {
    color: #2563eb;
}

.benefits-heading p {
    font-size: 20px;
    color: #64748b;
    line-height: 1.8;
    font-family: 'Nunito', sans-serif;
}

/* Grid */

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card */

.benefit-card {
    background: #fff;
    border-radius: 22px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .05);
    transition: .35s;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(37, 99, 235, .15);
}

.benefit-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.benefit-card h3 {
    font-size: 28px;
    font-weight: 800;
    color: #111827;
    margin: 25px 25px 15px;
    font-family: 'Nunito', sans-serif;
}

.benefit-card p {
    margin: 0 25px 30px;
    font-size: 17px;
    line-height: 1.8;
    color: #64748b;
    font-family: 'Nunito', sans-serif;
}

/* Tablet */

@media(max-width:1200px) {

    .school-benefits {
        padding: 80px 0;
    }

    .benefits-container {
        width: calc(100% - 80px);
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-heading h2 {
        font-size: 40px;
    }

}

/* Mobile */

@media(max-width:768px) {

    .school-benefits {
        padding: 70px 0;
    }

    .benefits-container {
        width: calc(100% - 40px);
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .benefits-heading h2 {
        font-size: 34px;
    }

    .benefits-heading p {
        font-size: 16px;
    }

    .benefit-card img {
        height: 220px;
    }

    .benefit-card h3 {
        font-size: 24px;
    }

    .benefit-card p {
        font-size: 16px;
    }

}

/* Small Mobile */

@media(max-width:425px) {

    .school-benefits {
        padding: 60px 0;
    }

    .benefits-heading h2 {
        font-size: 30px;
    }

    .benefits-heading p {
        font-size: 15px;
    }

    .benefit-card h3 {
        font-size: 22px;
    }

    .benefit-card p {
        font-size: 15px;
    }

}

/*==================================
        SCHOOL PROJECTS
==================================*/

.school-projects {

    padding: 100px 120px;
    background: #ffffff;

}

.school-projects-heading {

    max-width: 850px;
    margin: 0 auto 70px;
    text-align: center;

}

.school-projects-heading span {

    color: #2563eb;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;

}

.school-projects-heading h2 {

    font-size: 48px;
    margin: 18px 0;
    color: #111827;
    font-family: 'Nunito', sans-serif;

}

.school-projects-heading p {

    font-size: 19px;
    color: #64748b;
    line-height: 1.8;

}

.school-projects-grid {

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;

}

.school-project-card {

    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .06);
    transition: .35s;

}

.school-project-card:hover {

    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(37, 99, 235, .15);

}

.school-project-card img {

    width: 100%;
    height: 240px;
    object-fit: cover;

}

.school-project-card h3 {

    padding: 25px 25px 10px;
    font-size: 24px;
    color: #111827;
    font-family: 'Nunito', sans-serif;

}

.school-project-card p {

    padding: 0 25px 30px;
    color: #64748b;
    font-size: 17px;
    line-height: 1.7;

}

/*==========================
        Tablet
==========================*/

@media(max-width:992px) {

    .school-projects {

        padding: 80px 40px;

    }

    .school-projects-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}

/*==========================
        Mobile
==========================*/

@media(max-width:768px) {

    .school-projects {

        padding: 70px 20px;

    }

    .school-projects-heading h2 {

        font-size: 34px;

    }

    .school-projects-heading p {

        font-size: 16px;

    }

    .school-projects-grid {

        grid-template-columns: 1fr;

    }

}

/*==================================
      INSTALLATION PROCESS
==================================*/

.installation-process {

    padding: 100px 120px;
    background: #f8fbff;

}

.installation-container {

    max-width: 1400px;
    margin: auto;

}

.installation-heading {

    max-width: 850px;
    margin: 0 auto 70px;
    text-align: center;

}

.installation-heading span {

    color: #2563eb;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;

}

.installation-heading h2 {

    font-size: 48px;
    margin: 18px 0;
    color: #111827;
    font-family: 'Nunito', sans-serif;

}

.installation-heading h2 span {

    color: #2563eb;

}

.installation-heading p {

    font-size: 20px;
    line-height: 1.8;
    color: #64748b;

}

.installation-grid {

    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;

}

.installation-card {

    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .06);
    transition: .35s;

}

.installation-card:hover {

    transform: translateY(-8px);

}

.step-number {

    position: absolute;
    top: 18px;
    right: 18px;

    width: 42px;
    height: 42px;

    border-radius: 50%;
    background: #2563eb;

    color: #fff;

    display: flex;
    justify-content: center;
    align-items: center;

    font-weight: 700;

}

.installation-card img {

    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 20px;

}

.installation-card h3 {

    font-size: 24px;
    margin-bottom: 15px;
    color: #111827;
    font-family: 'Nunito', sans-serif;

}

.installation-card p {

    font-size: 16px;
    line-height: 1.7;
    color: #64748b;

}

/* Tablet */

@media(max-width:1200px) {

    .installation-process {

        padding: 80px 40px;

    }

    .installation-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}

/* Mobile */

@media(max-width:768px) {

    .installation-process {

        padding: 70px 20px;

    }

    .installation-heading h2 {

        font-size: 34px;

    }

    .installation-heading p {

        font-size: 16px;

    }

    .installation-grid {

        grid-template-columns: 1fr;

    }

}

/*==================================
        TESTIMONIALS
==================================*/

.school-testimonials {

    padding: 100px 120px;
    background: #f8fbff;

}

.testimonials-container {

    max-width: 1400px;
    margin: auto;

}

/*========================*/

.testimonials-heading {

    max-width: 850px;
    margin: 0 auto 70px;
    text-align: center;

}

.testimonials-heading span {

    color: #2563eb;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;

}

.testimonials-heading h2 {

    font-size: 48px;
    color: #111827;
    margin: 18px 0;
    font-family: 'Nunito', sans-serif;

}

.testimonials-heading h2 span {

    color: #2563eb;

}

.testimonials-heading p {

    font-size: 20px;
    color: #64748b;
    line-height: 1.8;

}

/*========================*/

.testimonial-grid {

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;

}

.testimonial-card {

    background: #fff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .06);
    transition: .35s;

}

.testimonial-card:hover {

    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(37, 99, 235, .15);

}

.testimonial-top {

    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 25px;

}

.testimonial-top img {

    width: 75px;
    height: 75px;
    border-radius: 50%;
    object-fit: cover;

}

.testimonial-top h3 {

    font-size: 22px;
    color: #111827;
    margin-bottom: 5px;
    font-family: 'Nunito', sans-serif;

}

.testimonial-top span {

    font-size: 15px;
    color: #64748b;
    letter-spacing: 0;
    text-transform: none;

}

.testimonial-card p {

    font-size: 17px;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 25px;

}

.testimonial-rating {

    color: #fbbf24;
    font-size: 22px;

}

/*==========================
        TABLET
==========================*/

@media(max-width:1200px) {

    .school-testimonials {

        padding: 80px 40px;

    }

    .testimonial-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}

/*==========================
        MOBILE
==========================*/

@media(max-width:768px) {

    .school-testimonials {

        padding: 70px 20px;

    }

    .testimonials-heading h2 {

        font-size: 34px;

    }

    .testimonials-heading p {

        font-size: 16px;

    }

    .testimonial-grid {

        grid-template-columns: 1fr;
        gap: 25px;

    }

    .testimonial-card {

        padding: 28px;

    }

    .testimonial-top {

        flex-direction: column;
        text-align: center;

    }

}

/*==================================
            FAQ SECTION
==================================*/

.school-faq {

    padding: 100px 120px;
    background: #ffffff;

}

.faq-container {

    max-width: 1000px;
    margin: auto;

}

/*=============================*/

.faq-heading {

    text-align: center;
    margin-bottom: 60px;

}

.faq-heading span {

    color: #2563eb;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;

}

.faq-heading h2 {

    font-size: 48px;
    color: #111827;
    margin: 18px 0;
    font-family: 'Nunito', sans-serif;

}

.faq-heading h2 span {

    color: #2563eb;

}

.faq-heading p {

    max-width: 700px;
    margin: auto;
    font-size: 20px;
    line-height: 1.8;
    color: #64748b;

}

/*=============================*/

.faq-item {

    border: 1px solid #e5e7eb;
    border-radius: 16px;
    margin-bottom: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .05);

}

.faq-question {

    width: 100%;
    padding: 25px 30px;
    background: none;
    border: none;

    display: flex;
    justify-content: space-between;
    align-items: center;

    cursor: pointer;

    font-size: 20px;
    font-weight: 700;
    color: #111827;
    text-align: left;
    font-family: 'Nunito', sans-serif;

}

.faq-question span {

    font-size: 28px;
    color: #2563eb;

}

.faq-answer {

    display: none;
    padding: 0 30px 25px;

}

.faq-item.active .faq-answer {

    display: block;

}

.faq-answer p {

    font-size: 17px;
    line-height: 1.8;
    color: #64748b;

}

/*=============================
        TABLET
=============================*/

@media(max-width:1200px) {

    .school-faq {

        padding: 80px 40px;

    }

}

/*=============================
        MOBILE
=============================*/

@media(max-width:768px) {

    .school-faq {

        padding: 70px 20px;

    }

    .faq-heading h2 {

        font-size: 34px;

    }

    .faq-heading p {

        font-size: 16px;

    }

    .faq-question {

        font-size: 18px;
        padding: 20px;

    }

    .faq-answer {

        padding: 0 20px 20px;

    }

    .faq-answer p {

        font-size: 15px;

    }

}

/*==================================
        CONTACT SECTION
==================================*/

.school-contact {

    padding: 100px 120px;
    background: #f8fbff;

}

.contact-container {

    max-width: 1400px;
    margin: auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;

}

/* LEFT */

.contact-left span {

    color: #2563eb;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;

}

.contact-left h2 {

    font-size: 48px;
    margin: 20px 0;
    color: #111827;
    font-family: 'Nunito', sans-serif;

}

.contact-left h2 span {

    color: #2563eb;

}

.contact-left p {

    font-size: 18px;
    line-height: 1.8;
    color: #64748b;
    margin-bottom: 40px;

}

.info-box {

    display: flex;
    gap: 18px;
    margin-bottom: 28px;

}

.info-box i {

    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #2563eb;
    color: #fff;

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 24px;

}

.info-box h4 {

    font-size: 22px;
    color: #111827;
    margin-bottom: 6px;

}

.info-box p {

    margin: 0;
    font-size: 16px;

}

/* RIGHT */

.contact-right {

    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .08);

}

.contact-right form {

    display: flex;
    flex-direction: column;
    gap: 18px;

}

.contact-right input,
.contact-right select,
.contact-right textarea {

    width: 100%;
    padding: 16px 18px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    font-size: 16px;
    font-family: 'Nunito', sans-serif;
    outline: none;

}

.contact-right input:focus,
.contact-right select:focus,
.contact-right textarea:focus {

    border-color: #2563eb;

}

.contact-right button {

    padding: 18px;
    border: none;
    border-radius: 10px;
    background: #2563eb;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: .3s;

}

.contact-right button:hover {

    background: #1d4ed8;

}

/*==============================
        TABLET
==============================*/

@media(max-width:1200px) {

    .school-contact {

        padding: 80px 40px;

    }

}

/*==============================
        MOBILE
==============================*/

@media(max-width:768px) {

    .school-contact {

        padding: 70px 20px;

    }

    .contact-container {

        grid-template-columns: 1fr;
        gap: 45px;

    }

    .contact-left {

        text-align: center;

    }

    .info-box {

        align-items: flex-start;

    }

    .contact-left h2 {

        font-size: 34px;

    }

    .contact-right {

        padding: 25px;

    }

}

/*==================================
        FINAL CTA
==================================*/

.school-cta {

    padding: 100px 20px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    text-align: center;

}

.school-cta-container {

    max-width: 900px;
    margin: auto;

}

.school-cta span {

    color: #dbeafe;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;

}

.school-cta h2 {

    margin: 22px 0;
    font-size: 52px;
    color: #fff;
    line-height: 1.2;
    font-family: 'Nunito', sans-serif;

}

.school-cta h2 span {

    color: #ffffff;

}

.school-cta p {

    max-width: 760px;
    margin: 0 auto 45px;

    font-size: 20px;
    line-height: 1.8;
    color: #e5e7eb;

}

.school-cta-buttons {

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;

}

.cta-btn-primary,
.cta-btn-secondary {

    display: inline-flex;
    justify-content: center;
    align-items: center;

    padding: 18px 36px;

    border-radius: 12px;
    text-decoration: none;

    font-size: 17px;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;

    transition: .35s;

}

.cta-btn-primary {

    background: #fff;
    color: #2563eb;

}

.cta-btn-primary:hover {

    transform: translateY(-3px);
    background: #f8fafc;

}

.cta-btn-secondary {

    border: 2px solid #fff;
    color: #fff;

}

.cta-btn-secondary:hover {

    background: rgba(255, 255, 255, .15);
    transform: translateY(-3px);

}

/*=========================
        TABLET
=========================*/

@media(max-width:992px) {

    .school-cta {

        padding: 80px 30px;

    }

    .school-cta h2 {

        font-size: 42px;

    }

    .school-cta p {

        font-size: 18px;

    }

}

/*=========================
        MOBILE
=========================*/

@media(max-width:768px) {

    .school-cta {

        padding: 70px 20px;

    }

    .school-cta h2 {

        font-size: 34px;

    }

    .school-cta p {

        font-size: 16px;

    }

    .school-cta-buttons {

        flex-direction: column;

    }

    .cta-btn-primary,
    .cta-btn-secondary {

        width: 100%;
        max-width: 320px;

    }

}