
    .mob-nav {
        display: none;
    }

    /* Mobile Menu Container */
    @media (max-width: 768px) {
        .mob-nav {
            display: block;
            justify-content: center;
            align-items: center;
            position: fixed;
            bottom: 24px;
            border-radius: 300px;
            width: 100%;
            max-width: 400px;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: white;
            box-shadow: 0 4px 12px rgba(10, 53, 86, 0.2);
            z-index: 1000;
            margin: 0 auto;
      
            bottom: 24px;


        }
    }


    /* Mobile Menu Navigation */
    .mob-nav-menu {
        display: flex;
        position: fixed;
        justify-content: space-between;
        width: 100%;
        gap: 4px;
        background-color: white;
        padding: 15px 16px;
        bottom: -24px;
        left: 50%;
        transform: translate(-50%, -50%);
        align-items: center;
        border-radius: 300px;
        border: 1px solid #C6F1F0;
        box-shadow: 0 4px 12px rgba(10, 53, 86, 0.2);
        max-height: 75px;
        
    }

    .mob-nav-menu .mob-nav-link {
        padding: 25px 20px;
        text-align: center;
        white-space: normal;
        display: block;
    }


    .mob-nav-menu .mob-nav-link.active {
        background-color: #19BBB7;
        color: white;
        border-radius: 44px;
        padding: 10px 20px;
        justify-content: center;
        gap: 6px;
        display: flex;
        align-items: center;
        transition: all 0.3s ease;
    }


    .mob-nav-menu .nav-link.active span {
        color: white;
    }