* {
    box-sizing: border-box;
}

:root {
    --bg-color: #ffffff;
    --text-color: #212529;
    --hero-bg: #ededed;
    --card-bg: #f8f9fa;
}


body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    background-color: var(--bg-color) !important;
    color: var(--text-color) !important;
    transition: all 0.3s ease;
}

.about-hero,
.our-story,
.why-us,
.our-mission {
    color: var(--text-color);
}




/* ///// Hero ///// */

.about-hero {
    background-color: var(--hero-bg);
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.about-hero h1 {
    font-size: 3rem;
}

.about-hero-img {
    max-height: 400px;
    height: auto;
    border-radius: 12px;
    transition: transform 0.3s ease-in-out;
}


.about-hero-img:hover {
    transform: scale(1.02);
}


/* ///// Story ///// */


.story-img {
    max-height: 400px;
}

.story-item {
    text-align: center;
}

.story-item i {
    font-size: 25px;
}

.story-item p {
    font-size: 14px;
}


/* /////// Why Us /////// */

.why-us {
    background-color: var(--bg-color);
}

.about-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.about-icon {
    width: 70px;
    height: 70px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #dc3545;
    color: white;
    border-radius: 50%;
    font-size: 28px;
}


/* /////// Mission /////// */

.our-mission {
    background-color: var(--hero-bg);
}

.mission-img {
    max-height: 400px;
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.2rem;
    }

    .about-hero {
        text-align: center;
    }

    .our-story {
        text-align: center;
    }
}

@media (max-width: 991px) {

    .row.align-items-center>.col-lg-6+.col-lg-6 {
        margin-top: 40px;
    }

}

/*//////// FOOTER ////// */

.social-icon {
    width: 35px;
    height: 35px;
    border: 1px solid #ced4da;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #495057;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background-color: #dc3545;
    border-color: #dc3545;
    color: #fff;
}

.footer-nav .nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

.footer-nav .nav-link:hover {
    color: #dc3545 !important;
}

/* .scroll-top-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
} */

#scrollTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 4px;
    cursor: pointer;

    display: none;
    z-index: 1000;
}