/* Sidebar CSS Logic */
@media (min-width: 992px) {
    .main-wrapper {
        display: flex; /* Sidebar aur Content ko side-by-side rakhta hai */
    }

    .vertical-sidebar {
        width: 260px;
        height: 100vh;
        position: fixed;
        left: 0;
        top: 0;
        background: white !important;
        padding-top: 40px;
        z-index: 1000;
        overflow-y: auto;
    }

    .content-body {
        margin-left: 260px; /* Sidebar ki jagah chorta hai */
        width: calc(100% - 260px);
        min-height: 100vh;
    }

    .navbar-nav .nav-link {
        padding: 15px 25px !important;
        border-left: 4px solid transparent;
        width: 100%;
    }

    .navbar-nav .nav-link:hover {
        background: var(--soft-bg);
        border-left-color: var(--gold);
    }
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .vertical-sidebar {
        background: white !important;
        padding: 10px 0;
    }
    
    .content-body {
        margin-left: 0;
        width: 100%;
    }
}

/* Icons styling in Sidebar *//* Sidebar Core Logic */
@media (min-width: 992px) {
    .main-wrapper { display: flex; }

    .vertical-sidebar {
        width: 260px;
        height: 100vh;
        position: fixed;
        left: 0;
        top: 0;
        background: white !important;
        padding-top: 40px;
        z-index: 1000;
        border-right: 1px solid #eee;
    }

    .content-body {
        margin-left: 260px;
        width: calc(100% - 260px);
    }
}

/* Mobile Vertical Menu Fix */
@media (max-width: 991px) {
    .navbar-collapse {
        background: white;
        padding: 20px;
        border-radius: 0 0 15px 15px;
        position: absolute;
        top: 100%; /* Navbar ke bilkul niche se start hoga */
        left: 0;
        right: 0;
        z-index: 1050;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    /* Items ko vertical force karne ke liye */
    .navbar-nav {
        display: flex !important;
        flex-direction: column !important;
        text-align: left;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-item:last-child { border-bottom: none; }

    .nav-link {
        padding: 12px 0 !important;
        display: flex;
        align-items: center;
    }
}

/* Base Styles */
.nav-link {
    color: var(--navy) !important;
    font-weight: 600;
    transition: 0.3s;
}

.nav-link:hover {
    color: var(--gold) !important;
    padding-left: 10px !important; /* Halka sa slide effect */
}

.nav-link i {
    width: 30px;
    color: var(--gold);
}
.nav-link i {
    width: 25px;
    color: var(--gold);
    font-size: 1.1rem;
}

/* Rest of your existing CSS remains same */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&family=Poppins:wght@300;400;500;600&display=swap');

:root {
    --navy: #00234b;
    --gold: #c89f5f;
    --soft-bg: #f8f9fa;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--soft-bg);
    color: var(--navy);
}

.top-mini-bar {
    z-index: 1100;
    position: relative;
}

.nav-link {
    color: var(--navy) !important;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: capitalize;
    transition: 0.3s;
}

.btn-gold-sm {
    background: var(--gold);
    color: white !important;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 4px;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(200, 159, 95, 0.3);
}