     .hover-box {
            position: relative;
        }

        .hover-text {
            position: absolute;
            bottom: -38px;
            left: 50%;
            transform: translateX(-50%);
            background: #111;
            color: white;
            padding: 6px 12px;
            border-radius: 8px;
            font-size: 13px;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: 0.3s;
            z-index: 100;
        }

        .hover-box:hover .hover-text {
            opacity: 1;
            visibility: visible;
            bottom: -45px;
        }

        body {
            background: #f5f7fb;
            font-family: Arial, Helvetica, sans-serif;
        }

        .navbar {
            background: white;
            padding: 14px 20px;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
        }

        .brand-logo {
            font-size: 28px;
            font-weight: bold;
            color:  #722072 !important;
        }

        .brand-logo span {
            color: #111;
        }

        .nav-link {
            color: #444 !important;
            font-weight: 500;
            margin-right: 10px;
            transition: 0.3s;
        }

        .nav-link:hover {
            color:  #722072 !important;
        }

        .search-box {
            position: relative;
            width: 320px;
        }

        .search-box input {
            border-radius: 30px;
            padding-left: 42px;
            border: 1px solid #ddd;
            height: 45px;
        }

        .search-box i {
            position: absolute;
            top: 14px;
            left: 15px;
            color: gray;
        }

        .upload-btn {
            background:  #722072;
            color: white;
            border-radius: 30px;
            padding: 10px 22px;
            border: none;
            font-weight: 600;
            transition: 0.3s;
        }

        .upload-btn:hover {
            background: #584ff5;
        }

        .icon-btn {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: #f1f3f6;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: 12px;
            cursor: pointer;
            transition: 0.3s;
        }

        .icon-btn:hover {
            background: #e4e7ec;
        }

        .profile-img {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            object-fit: cover;
            margin-left: 15px;
            cursor: pointer;
        }

        @media(max-width:991px) {
            .search-box {
                width: 100%;
                margin: 15px 0;
            }

            .navbar-icons {
                margin-top: 15px;
            }
        }
        

        /* =========================
   MOBILE BOTTOM NAVBAR
========================= */

@media(max-width:991px){

    body{
        padding-bottom:90px;
    }

    .navbar{

        position: fixed;
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%);

        width: 95%;
        z-index: 9999;

        border-radius: 25px;

        padding: 12px 10px;

        background: rgba(255,255,255,0.95);

        backdrop-filter: blur(10px);

        box-shadow: 0 5px 30px rgba(0,0,0,0.12);
    }

    .navbar-brand,
    .search-box,
    .upload-btn,
    .dropdown,
    .hover-text{
        display:none !important;
    }

    .navbar-collapse{
        display:block !important;
    }

    .navbar-nav{

        width:100%;

        display:flex;
        flex-direction:row;

        justify-content:space-around;
        align-items:center;

        margin:0 !important;
    }

    .nav-item{
        text-align:center;
    }

    .nav-link{

        display:flex;
        flex-direction:column;

        align-items:center;

        justify-content:center;

        font-size:11px;

        gap:5px;

        color:#777 !important;

        margin:0 !important;

        transition:0.3s;
    }

    .nav-link i{
        font-size:20px;
    }

    .nav-link:hover,
    .nav-link.active{
        color: #722072 !important;
    }

    /* CENTER UPLOAD BUTTON */

    .upload-mobile{

        width:58px;
        height:58px;

        background: #722072;

        border-radius:50%;

        display:flex;
        align-items:center;
        justify-content:center;

        margin-top:-35px;

        box-shadow:0 5px 20px rgba(108,99,255,0.4);
    }

    .upload-mobile i{
        color:white;
        font-size:22px;
    }

}