html {
    scroll-behavior: smooth;
}
body {
     padding-top: 60px; /* space for fixed navbar */
    font-family: "Segoe UI", Arial, sans-serif;
    background-color: #FEEBE7;
}
/* ===== ABOUT PAGE ===== */

.about-section{
    position:relative;
    min-height:100vh;
    background-size:cover;
    background-position:center center;
    background-attachment:fixed;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:80px 20px;
}

.about-section::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
}

.about-content{
    position:relative;
    z-index:2;

    max-width:900px;

    background:rgba(0,0,0,.45);

    color:#fff;

    padding:40px;

    border-radius:20px;

    backdrop-filter:blur(8px);

    box-shadow:0 10px 30px rgba(0,0,0,.3);
}

.about-content h2{
    color:#fff;
    margin-bottom:20px;
}

.about-content p{
    color:#fff;
    line-height:1.8;
}

/* animation */

.fade-up{
    opacity:0;
    transform:translateY(50px);
    transition:all .8s ease;
}

.fade-up.show{
    opacity:1;
    transform:translateY(0);
}

/* sticky submenu */

.about-nav{
    position:sticky;
    top:70px;
    z-index:999;
    background:#fff;
    padding:15px;
    box-shadow:0 2px 10px rgba(0,0,0,.1);
}

.about-nav a{
    margin-right:20px;
    text-decoration:none;
    font-weight:600;
}

/* team */

.team-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,.1);
    transition:.3s;
}

.team-card:hover{
    transform:translateY(-8px);
}

.team-card img{
    width:100%;
    height:300px;
    object-fit:cover;
}

/* organization chart */

.org-box{
    background:#fff;
    padding:15px;
    border-radius:10px;
    text-align:center;
    box-shadow:0 3px 15px rgba(0,0,0,.1);
    margin-bottom:20px;
}
/*--- End About === */

.news-card {
    transition: 0.3s ease;
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-thumb {
    height: 220px;
    object-fit: cover;
}

.card-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
}
h1{
    color: #7b1c2d; /* NGO theme color */
    font-weight: 500;
}
h2 {
    color: #F54927; /* NGO theme color */
    font-weight: 400;
}
p{
    text-align: justify;
}
nav.navbar {
    background-color: #F7D7E2;
}

.nav-link {
    font-weight: 500;
    color: #ff6b0d;
}

a > img#logo{
    height: 50px;
    width: auto;
}

footer {
    background: #7b1c2d;
    color: #fff;
}

.card {
    border-radius: 10px;
}
/* Multi-level dropdown support */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-left: 0.1rem;
    display: none;
}

.dropdown-submenu:hover > .dropdown-menu {
    display: block;
}
li > a.dropdown-item:hover{
    background: #F7D7E2;
}
div.col-sm-4 > img {
    width: 100%;
    height: auto;
}

/*=== Slider ===*/
.slider-img {
    height: 100%;
    object-fit: cover;
}

.carousel-caption {
    background: rgba(0,0,0,0.5);
    padding: 15px;
    border-radius: 10px;
}
