/* ==================================
   SCHOOLTECH AFRICA MAIN STYLE
================================== */


body {
    font-family: "Segoe UI", Arial, sans-serif;
    color: #333;
}


/* NAVBAR */

.navbar-brand img {
    object-fit: contain;
}


.navbar-nav .nav-link {
    font-weight: 500;
    margin-left: 15px;
}


.navbar-nav .btn {
    border-radius: 30px;
}





/* HERO SECTION */


.hero-section {

    background: linear-gradient(
        120deg,
        #f8fbff,
        #ffffff
    );

    padding-top:80px;
    padding-bottom:80px;

}


.hero-section h1 {

    color:#0b2c5f;
    line-height:1.2;

}


.hero-section p {

    color:#555;

}



.hero-section img {

    max-height:450px;

}





/* BUTTONS */


.btn-primary {

    background:#0b57d0;
    border:none;

}


.btn-primary:hover {

    background:#083d91;

}





/* SERVICE CARDS */


.card {

    border:none;
    border-radius:15px;

    transition:0.3s;

}



.card:hover {

    transform:translateY(-8px);

    box-shadow:
    0 15px 35px rgba(0,0,0,0.12);

}



.card h4 {

    color:#0b2c5f;

}





/* WHY SECTION */


section h2 {

    color:#0b2c5f;

}



ul li {

    margin-bottom:15px;

}





/* CALL TO ACTION */


.bg-primary {

    background:
    linear-gradient(
        90deg,
        #0b57d0,
        #06357a
    ) !important;

}



footer {

    font-size:14px;

}





/* MOBILE RESPONSIVE */


@media(max-width:768px){


.hero-section {

    text-align:center;

}


.hero-section h1 {

    font-size:35px;

}


}