.about-wrapper {
    padding: 60px 7%;
    background: #f6f8ff;
}

.section-title {
    text-align: center;
    font-size: 38px;
    font-weight: 800;
    color: #1B1464;
    margin-bottom: 10px;
}

.sub-text {
    text-align: center;
    max-width: 780px;
    margin: auto;
    font-size: 17px;
    color: #555;
}

/* VIDEO */
.video-box {
    width: 100%;
    max-width: 900px;
    margin: 40px auto;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}
.video-box iframe {
    width: 100%;
    height: 420px;
    border-radius: 18px;
}

/* ABOUT BLOCKS */
.about-block {
    display: flex;
    gap: 40px;
    margin-top: 60px;
    align-items: center;
    flex-wrap: wrap;
}
.about-block.reverse {
    flex-direction: row-reverse;
}

.about-text h3 {
    font-size: 30px;
    color: #0A79DF;
    margin-bottom: 12px;
}
.about-text p {
    color: #444;
    font-size: 17px;
    line-height: 1.6;
}

/* WHY CHOOSE US GRID */
.why-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}
.why-card {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,.1);
    transition: .3s ease;
}
.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,.15);
}
.why-card i {
    font-size: 42px;
    color: #0A79DF;
    margin-bottom: 10px;
}

/* TRAINER GRID */
.trainer-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}
.trainer-card {
    background: #fff;
    padding: 20px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,.1);
}
.trainer-card img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin-bottom: 12px;
}

/* ========== COURSES OVERVIEW SECTION ========== */
.overview-block {
    display: flex;
    gap: 40px;
    margin-top: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.overview-block.reverse {
    flex-direction: row-reverse;
}

.overview-img img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0,0,0,.12);
    transition: .4s ease;
}

.overview-img img:hover {
    transform: scale(1.05);
}

.overview-text h3 {
    font-size: 30px;
    color: #0A79DF;
    margin-bottom: 12px;
}

.overview-text p {
    font-size: 17px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 15px;
}

.overview-list {
    list-style: none;
    padding: 0;
}

.overview-list li {
    font-size: 16px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
}

.overview-list i {
    color: #0A79DF;
    font-size: 18px;
}

/* Responsive */
@media (max-width: 900px) {
    .overview-img img {
        width: 100%;
    }
}

/* STUDENT REVIEWS */
.review-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.review-box iframe {
    width: 100%;
    height: 220px;
    border-radius: 14px;
}

/* ANIMATION */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: .8s ease;
}
.reveal.active {
    transform: translateY(0);
    opacity: 1;
}

/* MAIN WRAPPER */
.contact-wrapper {
    padding: 60px 7%;
}

/* TITLE */
.contact-title {
    font-size: 38px;
    text-align: center;
    font-weight: 800;
    color: #1B1464;
}

.contact-title span {
    color: #0A79DF;
}

.contact-sub {
    text-align: center;
    font-size: 17px;
    color: #444;
    margin-bottom: 40px;
}

/* FLEX WRAPPER */
.contact-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap;
}

/* LEFT SIDE */
.contact-left {
    flex: 1 1 45%;
}

.contact-img {
    width: 100%;
    border-radius: 16px;
    margin-bottom: 20px;
    transition: 0.4s ease;
}

.contact-img:hover {
    transform: scale(1.05);
}

.contact-info-box h3 {
    color: #0A79DF;
    margin-bottom: 5px;
    font-size: 20px;
}

.contact-info-box p {
    color: #333;
    line-height: 1.5;
    margin-bottom: 15px;
}

.whatsapp-direct {
    display: inline-block;
    background: #25D366;
    padding: 12px 20px;
    color: white;
    border-radius: 8px;
    margin-top: 10px;
    text-decoration: none;
    font-size: 16px;
}

.whatsapp-direct i {
    margin-right: 8px;
}

/* RIGHT FORM */
.contact-right {
    flex: 1 1 45%;
    background: white;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-title {
    margin-bottom: 20px;
    color: #0A79DF;
    font-size: 22px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    margin-bottom: 15px;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 15px;
}

.contact-btn {
    background: #0A79DF;
    padding: 14px 20px;
    color: white;
    font-size: 18px;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s;
    border: none;
}

.contact-btn:hover {
    background: #0a8ef2;
    transform: scale(1.05);
}

/* MAP */
.contact-map {
    margin-top: 50px;
}

.map-title {
    font-size: 26px;
    text-align: center;
    margin-bottom: 20px;
    color: #1B1464;
}

/* ANIMATION */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: 1s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE */
@media(max-width: 900px){
    .contact-container {
        flex-direction: column;
    }
}

