/*====================================
        GENERAL STYLING
=====================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    line-height:1.7;
    color:#444;
    background:#f8fbff;
}

h1,h2,h3,h4,h5{
    font-weight:700;
}

.section-title{
    color:#0d6efd;
    margin-bottom:20px;
}

img{
    max-width:100%;
}

/*====================================
        NAVBAR
=====================================*/

.navbar{
    padding:15px 0;
}

.navbar-brand{
    font-size:1.6rem;
}

.nav-link{
    margin-left:20px;
    font-weight:500;
}

.nav-link:hover{
    color:#0d6efd;
}

/*====================================
        HERO SECTION
=====================================*/

.about-hero{

    background:linear-gradient(rgba(13,110,253,.85),
    rgba(13,110,253,.85)),
    url("../images/about-bg.jpg");

    background-size:cover;
    background-position:center;

    color:white;

    padding:120px 0;
}

.about-hero h1{

    font-size:52px;

    margin-bottom:25px;

}

.about-hero p{

    font-size:18px;

    margin-bottom:35px;

}

.hero-image{

    width:420px;

    border-radius:20px;

    box-shadow:0 10px 30px rgba(0,0,0,.3);

}

/*====================================
        BUTTONS
=====================================*/

.btn-primary{

    padding:14px 35px;

    border-radius:50px;

    font-size:18px;

    transition:.3s;

}

.btn-primary:hover{

    transform:translateY(-3px);

}

/*====================================
        ABOUT SECTION
=====================================*/

.info-box{

    background:white;

    padding:25px;

    text-align:center;

    border-radius:15px;

    margin-top:20px;

    box-shadow:0 5px 20px rgba(0,0,0,.08);

    transition:.4s;

}

.info-box:hover{

    transform:translateY(-10px);

}

.info-box i{

    font-size:45px;

    color:#0d6efd;

    margin-bottom:15px;

}

/*====================================
        PROVIDER SECTION
=====================================*/

.provider-section{

    padding:80px 0;

}

.provider-image{

    width:300px;

    height:300px;

    object-fit:cover;

    border-radius:50%;

    border:8px solid white;

    box-shadow:0 10px 30px rgba(0,0,0,.2);

}

/*====================================
        PHILOSOPHY
=====================================*/

.philosophy-card{

    background:white;

    text-align:center;

    padding:30px;

    border-radius:15px;

    margin-bottom:30px;

    transition:.4s;

    box-shadow:0 5px 20px rgba(0,0,0,.08);

}

.philosophy-card:hover{

    transform:translateY(-10px);

}

.philosophy-card i{

    font-size:50px;

    color:#0d6efd;

    margin-bottom:20px;

}

/*====================================
        MISSION & VISION
=====================================*/

.mission-box{

    background:white;

    padding:40px;

    border-radius:15px;

    text-align:center;

    box-shadow:0 5px 20px rgba(0,0,0,.08);

    transition:.4s;

}

.mission-box:hover{

    transform:translateY(-10px);

}

.mission-box i{

    font-size:60px;

    color:#0d6efd;

    margin-bottom:20px;

}

/*====================================
        ANIMATIONS
=====================================*/

.info-box,
.provider-image,
.philosophy-card,
.mission-box{

    animation:fadeUp 1s ease;

}

@keyframes fadeUp{

from{

opacity:0;

transform:translateY(40px);

}

to{

opacity:1;

transform:translateY(0);

}

}

/*====================================
        RESPONSIVE
=====================================*/

@media(max-width:992px){

.about-hero{

text-align:center;

padding:80px 0;

}

.about-hero h1{

font-size:38px;

}

.hero-image{

margin-top:40px;

width:300px;

}

.provider-image{

margin-bottom:30px;

}

}

@media(max-width:768px){

.about-hero h1{

font-size:30px;

}

.about-hero p{

font-size:16px;

}

.mission-box{

margin-bottom:25px;

}

.info-box{

margin-bottom:20px;

}

.philosophy-card{

margin-bottom:20px;

}

}