/* STUDENTS BANNER */

.students-banner {
    position: relative;
    width: 100%;
    height: 530px;

    background-image: url("../images/19.png");

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* OVERLAY */

.banner-overlay {
    background: rgba(0,0,0,0.45);
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    color: white;
    text-align: center;
    padding: 20px;
}

/* TITLE */

.banner-overlay h1 {
    font-size: 68px;
    margin-bottom: 20px;
}

/* TEXT */

.banner-overlay p {
    font-size: 24px;
    max-width: 700px;
    line-height: 1.7;
}

/* MOBILE */

@media (max-width: 768px) {

    .students-banner {
        height: 320px;
    }

    .banner-overlay h1 {
        font-size: 42px;
    }

    .banner-overlay p {
        font-size: 18px;
    }

}

/* STUDENT INTRO */

.student-intro {
    background: #ffffff;
    padding: 100px 40px;
}

/* CONTAINER */

.student-container {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* TEXT */

.student-text h2 {
    font-size: 52px;
    color: #003366;
    margin-bottom: 30px;
}

.student-text p {
    font-size: 20px;
    line-height: 1.9;
    color: #555555;
    margin-bottom: 25px;
}

/* IMAGE */

.student-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* MOBILE */

@media (max-width: 768px) {

    .student-intro {
        padding: 60px 20px;
    }

    .student-container {
        grid-template-columns: 1fr;
    }

    .student-text h2 {
        font-size: 36px;
    }

    .student-text p {
       font-size: 18px;
    }

}


/* ACTIVITIES SECTION */

.activities-section {
    background: #f5f9ff;
    padding: 100px 40px;
}

/* HEADING */

.activities-heading {
    text-align: center;
    margin-bottom: 70px;
}

.activities-heading h2 {
    font-size: 52px;
    color: #003366;
    margin-bottom: 20px;
}

.activities-heading p {
    font-size: 22px;
    color: #666666;
}

/* GRID */

.activities-grid {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

/* CARD */

.activity-card {
    background: white;
    padding: 45px 30px;
    border-radius: 20px;
    text-align: center;
    transition: 0.4s;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* HOVER */

.activity-card:hover {
    transform: translateY(-10px);
}

/* TITLE */

.activity-card h3 {
    font-size: 28px;
    color: #003366;
    margin-bottom: 20px;
}

/* TEXT */

.activity-card p {
   font-size: 18px;
    line-height: 1.8;
    color: #555555;
}

/* MOBILE */

@media (max-width: 768px) {

    .activities-section {
        padding: 60px 20px;
    }

    .activities-heading h2 {
        font-size: 36px;
    }

    .activities-heading p {
       font-size: 18px;
    }

    .activities-grid {
        grid-template-columns: 1fr;
    }

}


/* ACHIEVEMENT SECTION */

.achievement-section {
    background: #ffffff;
    padding: 100px 40px;
}

/* CONTAINER */

.achievement-container {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* IMAGE */

.achievement-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* TEXT */

.achievement-text h2 {
    font-size: 52px;
    color: #003366;
    margin-bottom: 30px;
}

.achievement-text p {
    font-size: 20px;
    line-height: 1.9;
    color: #555555;
    margin-bottom: 25px;
}

/* MOBILE */

@media (max-width: 768px) {

    .achievement-section {
        padding: 60px 20px;
    }

    .achievement-container {
        grid-template-columns: 1fr;
    }

    .achievement-text h2 {
        font-size: 36px;
    }

    .achievement-text p {
       font-size: 18px;
    }

}


/* VOICE SECTION */

.voice-section {
    background: #f5f9ff;
    padding: 100px 40px;
}

/* HEADING */

.voice-heading {
    text-align: center;
    margin-bottom: 70px;
}

.voice-heading h2 {
    font-size: 52px;
    color: #003366;
    margin-bottom: 20px;
}

.voice-heading p {
    font-size: 22px;
    color: #666666;
}

/* GRID */

.voice-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

/* CARD */

.voice-card {
    background: white;
    padding: 45px 30px;
    border-radius: 20px;
    text-align: center;
    transition: 0.4s;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* HOVER */

.voice-card:hover {
    transform: translateY(-10px);
}

/* TITLE */

.voice-card h3 {
    font-size: 28px;
    color: #003366;
    margin-bottom: 20px;
}

/* TEXT */

.voice-card p {
   font-size: 18px;
    line-height: 1.8;
    color: #555555;
}

/* MOBILE */

@media (max-width: 768px) {

    .voice-section {
        padding: 60px 20px;
    }

    .voice-heading h2 {
        font-size: 36px;
    }

    .voice-heading p {
       font-size: 18px;
    }

    .voice-grid {
        grid-template-columns: 1fr;
    }

}