/* Mobile Styles */
@media (max-width: 991.98px) {
    .home-about-us-container, .people-detail {
        padding-top: 80px; /* Adjust based on your mobile header height */
    }

    .mobile-header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        z-index: 1000;
        background: rgba(255, 255, 255, 0.9);
        transition: all 0.3s ease-in-out;
        transform: translateY(0);
        opacity: 1;
    }

    .mobile-header.header-hidden {
        transform: translateY(-100%);
        opacity: 0;
    }

    .mobile-header.header-visible {
        transform: translateY(0);
        opacity: 1;
    }

    .navbar-brand img {
        height: 56px;
    }

    .offcanvas {
        background: var(--bg-color);
        max-width: 110vw;
        width: 100vh;
        height: 100vh!important;
        transition: opacity 0.1s ease;
        opacity: 0;
    }

    .offcanvas.show {
        opacity: 1;
        width: 100%;
        height: 100vh;
    }

    .offcanvas-backdrop.show {
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .offcanvas-header {
        padding: 1rem 1.5rem;
    }

    .offcanvas-body {
        /* Mobile menu body styles */
    }

    .mobile-menu .nav-link {
        color: var(--text-color);
        padding: 2rem 0;
        font-size: 1.1rem;
        /* border-bottom: 1px solid rgba(0, 0, 0, 0.1); */
        transition: color 0.3s ease;
    }

    .mobile-menu .nav-link:hover,
    .mobile-menu .nav-link:focus {
        color: var(--primary-color);
    }

    .navbar-toggler {
        color: var(--text-color);
    }

    .navbar-nav .nav-link.active::after {
        content: '';
        position: absolute;
        width: 20px;
        height: 2px;
        bottom: 15px;
        left: 0;
        transform: none;
        background-color: var(--primary-color);
    }
    /* .main-title {
        font-size: 2.5rem;
    } */
}