/*==================================================
    GOOGLE FONT
==================================================*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');


/*==================================================
    RESET
==================================================*/
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    color:#444;
    background:#fff;
    line-height:1.7;
    overflow-x:hidden;
}


/*==================================================
    VARIABLES
==================================================*/
:root{

    --primary:#198754;
    --primary-dark:#146c43;
    --secondary:#0d6efd;

    --white:#ffffff;
    --light:#f8f9fa;
    --dark:#212529;

    --text:#555;
    --heading:#222;

    --shadow:0 10px 30px rgba(0,0,0,.08);
    --radius:15px;

}


/*==================================================
    COMMON
==================================================*/

section{
    padding:80px 0;
}

img{
    max-width:100%;
    height:auto;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
    padding:0;
    margin:0;
}

.section-title{

    font-size:42px;
    font-weight:700;
    color:var(--heading);
    margin-bottom:20px;

}

.section-subtitle{

    max-width:700px;
    margin:auto;
    color:#777;

}


/*==================================================
    BUTTONS
==================================================*/

.btn{

    transition:.3s ease;

}

.btn-success{

    background:var(--primary);
    border:none;
    border-radius:50px;
    padding:12px 32px;
    font-weight:600;

}

.btn-success:hover{

    background:var(--primary-dark);

}

.btn-outline-light{

    border-radius:50px;
    padding:12px 32px;
    font-weight:600;

}


/*==================================================
    TOP BAR
==================================================*/

.top-bar{

    background:var(--primary);
    color:#fff;
    padding:10px 0;
    font-size:14px;

}

.top-bar i{

    margin-right:8px;

}

.top-bar a{

    color:#fff;
    transition:.3s;

}

.top-bar a:hover{

    opacity:.8;

}


/*==================================================
    NAVBAR
==================================================*/

.navbar{

    background:#fff;
    padding:12px 0;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.3s;

}

.navbar.scrolled{

    padding:8px 0;

}

.navbar-brand{

    display:flex;
    align-items:center;
    padding:0;

}

.navbar-nav{

    align-items:center;

}

.navbar-nav .nav-link{

    color:#333;
    font-size:16px;
    font-weight:500;
    margin-left:20px;
    position:relative;
    transition:.3s;

}

.navbar-nav .nav-link:hover{

    color:var(--primary);

}

.navbar-nav .nav-link.active{

    color:var(--primary);
    font-weight:600;

}

.navbar-nav .nav-link::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-5px;

    width:0;

    height:2px;

    background:var(--primary);

    transition:.3s;

}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after{

    width:100%;

}

.navbar .btn-success{

    margin-left:25px;

}


/*==================================================
    LOGO
==================================================*/

/* .logo{

    height:75px;
    width:auto;
    display:block;
    transition:.3s;

} */
 section[id]{
    scroll-margin-top:100px;
}

.logo{
    height:75px;
    width:auto;
    display:block;
    transition:all .3s ease;
}

.navbar-brand:hover .logo{

    transform:scale(1.05);

}


/*==================================================
    MOBILE NAVBAR
==================================================*/

@media(max-width:991px){

    .navbar-nav{

        margin-top:20px;
        align-items:flex-start;

    }

    .navbar-nav .nav-link{

        margin-left:0;
        padding:12px 0;

    }

    .navbar .btn-success{

        margin:15px 0 0;
        width:100%;

    }

    .logo{

        height:75px;

    }

}

@media(max-width:768px){

    .section-title{

        font-size:32px;

    }

}

@media(max-width:576px){

    section{

        padding:60px 0;

    }

}
/*==================================================
    HERO SECTION
==================================================*/

.hero{

    position:relative;
    /*min-height:100vh;*/
    max-height:80vh;
    display:flex;
    align-items:center;

    background:url('../images/hero.jpg') center center/cover no-repeat;

}

.hero::before{

    content:"";

    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:100%;

    background:rgba(0,0,0,.55);

}

.hero .container{

    position:relative;
    z-index:2;

}

.hero .badge{

    font-size:15px;
    padding:10px 18px;

}

.hero h1{

    font-size:60px;
    font-weight:800;
    color:#fff;
    line-height:1.2;

}

.hero p{

    color:#eee;
    font-size:20px;
    max-width:650px;
    margin:25px 0;

}

.hero .btn{

    margin-right:15px;

}


/*==================================================
    ABOUT SECTION
==================================================*/

.about-img{

    border-radius:20px;
    overflow:hidden;
    box-shadow:var(--shadow);

}

.about-img img{

    transition:.5s;

}

.about-img:hover img{

    transform:scale(1.05);

}

.about-content span{

    font-size:15px;
    font-weight:600;
    color:var(--primary);
    text-transform:uppercase;

}

.about-content h2{

    font-size:42px;
    font-weight:700;
    margin:20px 0;

}

.about-content p{

    color:#666;

}

.about-feature{

    display:flex;
    margin-bottom:20px;

}

.about-feature i{

    color:var(--primary);
    font-size:30px;
    margin-right:15px;

}

.about-feature h5{

    margin-bottom:5px;
    font-weight:600;

}

.about-feature p{

    margin:0;
    font-size:15px;

}


/*==================================================
    MISSION & VISION
==================================================*/

.mission-card{

    border:none;
    border-radius:20px;
    overflow:hidden;
    box-shadow:var(--shadow);
    transition:.3s;

}

.mission-card:hover{

    transform:translateY(-8px);

}

.mission-card .card-body{

    padding:45px;

}

.mission-card i{

    font-size:55px;
    color:var(--primary);
    margin-bottom:25px;

}

.mission-card h3{

    font-weight:700;
    margin-bottom:20px;

}

.mission-card p{

    color:#666;

}


/*==================================================
    SERVICES
==================================================*/

.services{

    background:#f8f9fa;

}

.service-card{

    border:none;
    border-radius:20px;
    box-shadow:var(--shadow);
    transition:.4s;
    height:100%;

}

.service-card:hover{

    transform:translateY(-10px);

}

.service-card .card-body{

    padding:40px 30px;
    text-align:center;

}

.service-card i{

    font-size:55px;
    color:var(--primary);
    margin-bottom:25px;

}

.service-card h4{

    font-weight:700;
    margin-bottom:15px;

}

.service-card p{

    color:#777;
    margin-bottom:0;

}


/*==================================================
    IMPACT / STATISTICS
==================================================*/

.stats{

    background:linear-gradient(135deg,#198754,#157347);
    color:#fff;

}

.stats .counter{

    font-size:52px;
    font-weight:700;
    margin-bottom:10px;

}

.stats p{

    font-size:18px;
    margin-bottom:0;

}


/*==================================================
    RESPONSIVE
==================================================*/

@media(max-width:991px){

    .hero{

        min-height:85vh;

    }

    .hero h1{

        font-size:46px;

    }

    .hero p{

        font-size:18px;

    }

    .about-content{

        margin-top:40px;

    }

}

@media(max-width:768px){

    .hero{

        text-align:center;

    }

    .hero h1{

        font-size:38px;

    }

    .hero p{

        font-size:17px;

    }

    .about-content h2{

        font-size:34px;

    }

    .mission-card .card-body{

        padding:35px;

    }

    .service-card .card-body{

        padding:30px 25px;

    }

}

@media(max-width:576px){

    .hero{

        min-height:75vh;

    }

    .hero h1{

        font-size:30px;

    }

    .hero .btn{

        width:100%;
        margin:10px 0;

    }

    .about-content h2{

        font-size:28px;

    }

    .stats .counter{

        font-size:40px;

    }

}

/*==================================================
    LEADERSHIP
==================================================*/

.team-card{

    border:none;
    border-radius:20px;
    overflow:hidden;
    background:#fff;
    box-shadow:var(--shadow);
    transition:all .35s ease;

}

.team-card:hover{

    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.team-card img{

    width:100%;
    height:320px;
    object-fit:cover;
    transition:.4s;

}

.team-card:hover img{

    transform:scale(1.05);

}

.team-card .card-body{

    padding:25px;

}

.team-card h5{

    font-size:22px;
    font-weight:700;
    color:#222;
    margin-bottom:8px;

}

.team-card span{

    display:block;
    color:var(--primary);
    font-size:15px;
    font-weight:600;
    margin-bottom:15px;

}

.team-card p{

    color:#777;
    font-size:15px;
    margin-bottom:0;

}


/*==================================================
    GALLERY
==================================================*/

.gallery-item{

    position:relative;
    overflow:hidden;
    border-radius:20px;
    box-shadow:var(--shadow);
    cursor:pointer;

}

.gallery-item img{

    width:100%;
    height:280px;
    object-fit:cover;
    transition:.5s;

}

.gallery-item:hover img{

    transform:scale(1.08);

}

.gallery-item::before{

    content:"";

    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:100%;

    background:rgba(25,135,84,.35);

    opacity:0;

    transition:.4s;
    z-index:2;

}

.gallery-item:hover::before{

    opacity:1;

}

.gallery-item::after{

    content:"\f00e";

    font-family:"Font Awesome 6 Free";
    font-weight:900;

    position:absolute;

    top:50%;
    left:50%;

    transform:translate(-50%,-50%);

    color:#fff;

    font-size:32px;

    opacity:0;

    transition:.4s;

    z-index:3;

}

.gallery-item:hover::after{

    opacity:1;

}


/*==================================================
    TESTIMONIALS
==================================================*/

.testimonial-card{

    border:none;
    border-radius:20px;
    background:#fff;
    box-shadow:var(--shadow);
    transition:.3s;
    height:100%;

}

.testimonial-card:hover{

    transform:translateY(-8px);

}

.testimonial-card .card-body{

    padding:35px;

}

.testimonial-card i{

    font-size:42px;
    color:var(--primary);
    margin-bottom:20px;

}

.testimonial-card p{

    color:#666;
    font-style:italic;
    margin-bottom:25px;

}

.testimonial-card hr{

    margin:20px 0;

}

.testimonial-card h6{

    font-size:18px;
    font-weight:700;
    color:#222;

}

.testimonial-card small{

    color:#777;

}


/*==================================================
    SECTION SPACING
==================================================*/

#leadership{

    background:#fff;

}

#gallery{

    background:#f8f9fa;

}

#testimonials{

    background:#fff;

}


/*==================================================
    RESPONSIVE
==================================================*/

@media(max-width:991px){

    .team-card img{

        height:280px;

    }

}

@media(max-width:768px){

    .team-card img{

        height:260px;

    }

    .gallery-item img{

        height:240px;

    }

}

@media(max-width:576px){

    .team-card img{

        height:240px;

    }

    .gallery-item img{

        height:220px;

    }

    .testimonial-card .card-body{

        padding:25px;

    }

}

/*==================================================
    CONTACT
==================================================*/

#contact{

    background:#f8f9fa;

}

#contact .card{

    border:none;
    border-radius:20px;
    box-shadow:var(--shadow);

}

#contact .card-body{

    padding:40px;

}

#contact .form-control{

    height:55px;
    border-radius:10px;
    border:1px solid #ddd;
    box-shadow:none;
    transition:.3s;

}

#contact textarea.form-control{

    height:180px;
    resize:none;

}

#contact .form-control:focus{

    border-color:var(--primary);
    box-shadow:0 0 0 .15rem rgba(25,135,84,.15);

}

#contact i{

    color:var(--primary);

}


/*==================================================
    CTA
==================================================*/

.cta{

    background:linear-gradient(135deg,#198754,#0f5132);
    color:#fff;
    border-radius:25px;
    padding:60px 40px;
    text-align:center;
    overflow:hidden;
    position:relative;

}

.cta::before{

    content:"";

    position:absolute;
    top:-80px;
    right:-80px;

    width:220px;
    height:220px;

    background:rgba(255,255,255,.08);
    border-radius:50%;

}

.cta h2{

    font-size:42px;
    font-weight:700;
    margin-bottom:20px;
    position:relative;
    z-index:2;

}

.cta p{

    font-size:18px;
    margin-bottom:30px;
    position:relative;
    z-index:2;

}

.cta .btn{

    position:relative;
    z-index:2;

}


/*==================================================
    FOOTER
==================================================*/

footer{

    background:#111;
    color:#ddd;

}

footer h4,
footer h5{

    color:#fff;
    margin-bottom:20px;
    font-weight:600;

}

footer p{

    color:#bbb;

}

footer ul{

    list-style:none;
    padding:0;

}

footer ul li{

    margin-bottom:10px;

}

footer ul li a{

    color:#bbb;
    transition:.3s;

}

footer ul li a:hover{

    color:#fff;
    padding-left:5px;

}

footer .social a{

    width:42px;
    height:42px;
    display:inline-flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;
    background:var(--primary);

    color:#fff;

    margin-right:10px;

    transition:.3s;

}

footer .social a:hover{

    background:#fff;
    color:var(--primary);
    transform:translateY(-4px);

}

footer hr{

    border-color:rgba(255,255,255,.12);

}


/*==================================================
    SCROLL TO TOP
==================================================*/

.scroll-top{

    position:fixed;

    right:25px;
    bottom:25px;

    width:50px;
    height:50px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:var(--primary);
    color:#fff;

    text-decoration:none;

    box-shadow:0 8px 20px rgba(0,0,0,.25);

    transition:.3s;

    z-index:999;

}

.scroll-top:hover{

    background:var(--primary-dark);
    color:#fff;
    transform:translateY(-5px);

}


/*==================================================
    FADE ANIMATION
==================================================*/

.fade-up{

    opacity:0;
    transform:translateY(50px);
    transition:all .8s ease;

}

.fade-up.show{

    opacity:1;
    transform:translateY(0);

}


/*==================================================
    IMAGE EFFECTS
==================================================*/

img{

    transition:.4s;

}

img:hover{

    transform:scale(1.02);

}


/*==================================================
    RESPONSIVE
==================================================*/

@media(max-width:991px){

    .cta{

        padding:50px 30px;

    }

    .cta h2{

        font-size:34px;

    }

}

@media(max-width:768px){

    #contact .card-body{

        padding:30px;

    }

    .cta{

        padding:40px 25px;

    }

    .cta h2{

        font-size:30px;

    }

    footer{

        text-align:center;

    }

    footer .social{

        justify-content:center;

    }

}

@media(max-width:576px){

    .cta h2{

        font-size:26px;

    }

    .cta p{

        font-size:16px;

    }

    .scroll-top{

        width:45px;
        height:45px;

    }

}