/* SERVICE PAGE HERO */

.service-page-hero{
    position:relative;
    background:url('https://letsgrowsmarter.com/skygrow/images/slide1.webp') center/cover;
    padding:220px 0 140px;
    overflow:hidden;
    text-align:center;
}

.service-page-overlay{
    position:absolute;
    inset:0;
    background:rgba(2,27,87,.78);
}

.service-page-content{
    position:relative;
    z-index:2;
    max-width:900px;
    color:#ffffff;
}

.service-page-content span{
    color:#4dafa7;
    letter-spacing:3px;
    font-weight:700;
}

.service-page-content h1{
    font-size:72px;
    line-height:1.1;
    margin:20px 0;
    font-weight:800;
}

.service-page-content p{
    font-size:20px;
    line-height:1.9;
    color:rgba(255,255,255,.92);
}



/* INTRO */
.service-intro-section, .why-choose-service{
    padding-bottom: 25px;
}

.service-intro-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.service-intro-content span{
    color:#4dafa7;
    font-size:14px;
    letter-spacing:3px;
    font-weight:700;
}

.service-intro-content h2{
    font-size:52px;
    line-height:1.2;
    margin:20px 0 30px;
    color:#021b57;
}

.service-intro-content p{
    font-size:18px;
    line-height:1.9;
    color:#475569;
    margin-bottom:25px;
}

.service-intro-image img{
    width:100%;
    border-radius:24px;
    box-shadow:0 20px 60px rgba(0,0,0,.15);
}



/* FEATURES */

.service-features-section{
    background:#f8fafc;
}

.service-features-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:60px;
}

.feature-card{
    background:#ffffff;
    padding:35px;
    border-radius:24px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.feature-card h3{
    font-size:26px;
    line-height:1.3;
    color:#021b57;
    margin-bottom:18px;
}

.feature-card p{
    color:#475569;
    line-height:1.8;
}



/* WHY CHOOSE */

.why-choose-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-top:60px;
}

.why-card{
    background:#021b57;
    padding:35px;
    border-radius:22px;
    text-align:center;
}

.why-card h3{
    color:#ffffff;
    font-size:22px;
    line-height:1.5;
}



/* MOBILE */

@media(max-width:991px){

    .service-intro-grid,
    .service-features-grid,
    .why-choose-grid{
        grid-template-columns:1fr;
    }

    .service-page-content h1{
        font-size:52px;
    }

    .service-intro-content h2{
        font-size:40px;
    }

}

@media(max-width:767px){

    .service-page-hero{
        padding:180px 0 100px;
    }

    .service-page-content h1{
        font-size:40px;
    }

    .service-page-content p{
        font-size:17px;
        line-height:1.8;
    }

    .service-intro-content h2{
        font-size:32px;
    }

    .feature-card,
    .why-card{
        padding:28px;
    }

}