/* ===============================
   General
================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#f8faf8;
    color:#333;
    overflow-x:hidden;
}

:root{
    --green:#0d7a53;
    --dark:#063b28;
    --gold:#d6b25e;
    --light:#f8faf8;
}

/* ===============================
   Navbar
================================= */

.navbar{
    background:#fff;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.navbar-brand{
    display:flex;
    align-items:center;
    padding:0;
}

.navbar-logo{
    height:65px;
    width:auto;
}

.nav-link{
    color:#222;
    font-weight:500;
    position:relative;
    transition:.3s;
}

.nav-link:hover,
.nav-link.active{
    color:var(--green);
}

.nav-link.active::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:100%;
    height:2px;
    background:var(--green);
}

/* ===============================
   Page Banner
================================= */

.page-banner{
    background:linear-gradient(rgba(6,59,40,.85),rgba(13,122,83,.85)),
               url('../images/banner.jpg') center/cover;
    padding:120px 0 90px;
    color:#fff;
}

.page-banner h1{
    font-size:48px;
    font-weight:700;
}

.page-banner p{
    font-size:18px;
}

/* ===============================
   Common Sections
================================= */

.section-padding{
    padding:90px 0;
}

.section-title span{
    color:var(--green);
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:2px;
}

.section-title h2{
    font-size:40px;
    font-weight:700;
    color:var(--dark);
    margin-top:10px;
}

/* ===============================
   Cards
================================= */

.info-box{
    background:#fff;
    border-radius:20px;
    padding:40px;
    box-shadow:0 15px 35px rgba(0,0,0,.06);
}

.icon-box{
    width:70px;
    height:70px;
    background:#eaf7f1;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:var(--green);
    font-size:30px;
    margin-bottom:20px;
}

.value-card{
    background:#fff;
    border-radius:20px;
    padding:35px;
    text-align:center;
    transition:.3s;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.value-card:hover{
    transform:translateY(-8px);
}

.value-card i{
    font-size:42px;
    color:var(--green);
    margin-bottom:20px;
}

/* ===============================
   Mission List
================================= */

.mission-list{
    list-style:none;
    padding:0;
}

.mission-list li{
    margin-bottom:15px;
}

.mission-list i{
    color:var(--green);
    margin-right:10px;
}

/* ===============================
   Principal Card
================================= */

.principal-card{
    background:#fff;
    padding:50px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.06);
}

/* ===============================
   Responsive
================================= */

@media(max-width:991px){

    .navbar-logo{
        height:50px;
    }

    .page-banner{
        padding:90px 0 70px;
    }

    .page-banner h1{
        font-size:36px;
    }

    .section-title h2{
        font-size:30px;
    }

}

.btn-main{
    background:#0d7a53;
    color:#fff;
    padding:14px 34px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
    border:none;
}

.btn-main:hover{
    background:#08583d;
    color:#fff;
    transform:translateY(-3px);
}
/* Trustees */

.trustee-card{

background:#fff;
border-radius:20px;
overflow:hidden;
text-align:center;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.35s;

}

.trustee-card img{

width:100%;
height:260px;
object-fit:cover;

}

.trustee-card h5{

padding:20px;
margin:0;

}

.trustee-card:hover{

transform:translateY(-10px);

}

/* Gallery */

.gallery-item{

position:relative;
overflow:hidden;
border-radius:20px;
cursor:pointer;

}

.gallery-item img{

width:100%;
height:300px;
object-fit:cover;
transition:.5s;

}

.gallery-overlay{

position:absolute;
inset:0;
background:rgba(13,122,83,.75);
display:flex;
justify-content:center;
align-items:center;
opacity:0;
transition:.4s;

}

.gallery-overlay i{

color:#fff;
font-size:35px;

}

.gallery-item:hover img{

transform:scale(1.08);

}

.gallery-item:hover .gallery-overlay{

opacity:1;

}

.footer{
    background:#063b28;
    color:#fff;
    padding:70px 0 20px;
}

.footer h4,
.footer h5{
    margin-bottom:20px;
    font-weight:600;
}

.footer ul{
    list-style:none;
    padding:0;
}

.footer li{
    margin-bottom:10px;
}

.footer a{
    color:#d8efe4;
    text-decoration:none;
    transition:.3s;
}

.footer a:hover{
    color:#fff;
}

.footer hr{
    border-color:rgba(255,255,255,.15);
}

.map-box{
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.form-control{
    padding:14px;
    border-radius:12px;
    border:1px solid #ddd;
}

.form-control:focus{
    border-color:#0d7a53;
    box-shadow:0 0 0 .15rem rgba(13,122,83,.2);
}

.footer{

background:#042d1d;
color:#fff;
padding:80px 0 25px;

}

.footer-logo{

height:70px;
width:auto;

}

.footer h4,
.footer h5{

margin-bottom:20px;
font-weight:600;

}

.footer p{

color:#d8d8d8;
font-size:15px;

}

.footer-links{

padding:0;
margin:0;
list-style:none;

}

.footer-links li{

margin-bottom:12px;

}

.footer-links a{

color:#d8d8d8;
text-decoration:none;
transition:.3s;

}

.footer-links a:hover{

color:#ffffff;
padding-left:6px;

}

.footer a{

color:#d8d8d8;

}

.footer a:hover{

color:#fff;

}

.payment-qr{

width:170px;
background:#fff;
padding:8px;
border-radius:10px;
margin:15px 0;

}

.bank-details{

font-size:14px;
line-height:1.8;

}

.footer-divider{

margin:40px 0 20px;
border-color:rgba(255,255,255,.15);

}

.footer i{

color:#28c76f;
margin-right:8px;

}

@media(max-width:991px){

.footer{

text-align:center;

}

.payment-qr{

margin:auto;
display:block;
margin-top:20px;
margin-bottom:20px;

}

}

.hero-slider{
    margin-top: 0;
}

.hero-slider .carousel-item img{
    width: 100%;
    height: 100vh;
    object-fit: cover;
    display: block;
}

/* Desktop */
@media (min-width:992px){
    .hero-slider .carousel-item img{
        height: 850px;
    }
}

/* Tablet */
@media (max-width:991px){
    .hero-slider .carousel-item img{
        height: 500px;
    }
}

/* Mobile */
@media (max-width:576px){
    .hero-slider .carousel-item img{
        height: 250px;
    }
}