* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Inter, sans-serif;
}

li {
    list-style: none;
}

.layout {
    display: flex;
}

aside {
    width: 263px;
    padding: 60px 32px;
    background: #FFFFFF;
    font-size: 15px;
    line-height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease-in-out;
}

aside .hide {
    transform: translateX(-100%);
}

.ven {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.ven ul {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.ven li {
    display: flex;
    align-items: center;
    border-radius: 8px;
    padding: 1px 12px;
    gap: 6px;

}

.switch {
    position: relative;
    display: flex;
    align-items: center;
    padding: 12px;
    border-radius: 8px;
    justify-content: space-between;
    border: 1px solid #BADEFB;
    cursor: pointer;
}

.switch-dropdown {
    display: none;
    position: absolute;
    top: 45px;
    left: 0;
    background: #fff;
    border: 1px solid #BADEFB;
    border-radius: 8px;
    padding: 12px 6px;
    box-shadow: #10182814;
}

.switch-dropdown .buildrop {
    display: flex;
    align-items: center;
    white-space: nowrap;
    gap: 10px;
}

.ven1 {
    display: flex;
    flex-direction: column;
    gap: 72px;
    width: 199px;
}

aside .ven a {
    display: block;
    padding: 1rem;
    text-decoration: none;
    color: #374151;
}

aside .active {
    background-color: #E9F5FE;
    font-weight: bold;
}

aside .ven li:hover {
    background: #E9F5FE;
    font-weight: bold;
}

aside .signout {
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 8px;
    padding: 1px 12px;
}

aside .signout a {
    text-decoration: none;
    color: #FF5722;
    font-weight: bold;

}
#signOutModal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#signOutModal.active {
    display: flex;
}

#signOutModal .modal-content{
    background: #fff;
    border-radius: 12px;
    max-width: 360px;
    width: 90%;
    text-align: center;
    padding: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.modal-header {
    display: flex;
    justify-content: flex-end;
}
.modal-body img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}
.modal-body p{
    font-size: 12px;
    font-weight: 400;
}

.close-icon {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.modal-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    padding: 10px 0;
}

.modal-buttons {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.logout-btn {
    background: #FF5722;
    color: #fff;
    border: none;
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: #1018280A;
    transition: 0.3s;
}

.cancel-btn {
    background: #FFFFFF;
    color: #374151;
    border: none;
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    border: 1px solid #CFDCE6;
    box-shadow: #1018280A;
}

.main {
    flex: 1;
    padding: 60px 32px 2px;
    background: #F6FBFE;
    display: flex;
    flex-direction: column;
}

header {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
}

.hero-logo {
    display: none;
}

.hero3 {
    display: flex;
    flex: 1;
    justify-content: center;
}

.input-wrapper {
    position: relative;
    width: 427px;
}

.hero3 input {
    font-size: 15px;
    padding: 12px 40px;
    border: 1px solid #ccc;
    border-radius: 8px;
    width: 427px;
    height: 40px;
    background: url('https://res.cloudinary.com/db9nz57u6/image/upload/v1759241461/search_kcely6.svg') 12px center;
    background-repeat: no-repeat;
    background-size: 20px;
}

.input-wrapper .filter-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.modal {
    position: absolute;
    top: 100;
    right: 480;
    background: #fff;
    border: 1px solid #FFFFFF;
    border-radius: 8px;
    display: none;
    z-index: 10;
}

.modal-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 20px;
    gap: 12px;
}

.modal-content p {
    font-weight: 400;
    font-size: 12px;
}

.newmodal {
    display: flex;
    gap: 12px;
}
.newmodal button{
    width: 105px;
}

.newmodal1 {
    border: 1px solid #E9F5FE;
    font-size: 12px;
    font-weight: 400;
    border-radius: 8px;
    padding: 8px 16px;
    background: #BADEFB;
}

.newmodal2 {
    border: 1px solid #A1ACB4;
    font-size: 12px;
    font-weight: 400;
    border-radius: 8px;
    padding: 8px 16px;
    background: #FFFFFF;
}

select {
    display: flex;
    align-items: center;
    border-radius: 8px;
    border: 1px solid #A1ACB4;
    padding: 8px 12px;
    justify-content: space-between;
    width: 155px;
}

.locate{
    display: flex;
    align-items: center;
    gap: 12px;
}
.toggle-switch {
    width: 40px;
    height: 16px;
    background-color: #ccc;
    border-radius: 15px;
    position: relative;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.toggle-switch.active {
    background-color: #007bff;
}

.toggle-circle {
    width: 12px;
    height: 12px;
    background-color: white;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
    transition: left 0.3s ease;
}

.toggle-switch.active .toggle-circle {
    left: 26px;
}



.apply {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
}

.apply1 {
    border-radius: 8px;
    padding: 10px 16px;
    border: 1px solid #2196F3;
    background: #2196F3;
    font-weight: 500;
    font-size: 15px;
    color: #FFFFFF;
}

.apply2 {
    border-radius: 8px;
    padding: 10px 16px;
    border: 1px solid #BADEFB;
    background: #E9F5FE;
    font-weight: 500;
    font-size: 15px;
    color: #2196F3;
}

.pic {
    display: flex;
    justify-content: space-around;
    width: 92px;
    height: 40px;
    align-items: center;
}
.icon {
    width: 24px;
    height: 24px;
}
.user {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}
.content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-bottom: 32px;
}

.welcome {
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.welcome h2 {
    font-size: 29px;
    line-height: 40px;
}
.welcome p {
    font-size: 19px;
    font-weight: 400px;
    line-height: 24px;
}
.scroll-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-height: 717px;
    overflow-y: auto;
    padding: 8px;
    background: #E9F5FE;
    border: 1px solid #CFDCE6;
    scrollbar-width: thin;
    border-radius: 12px;
    scrollbar-color: #888 transparent;
}
.scroll-container::-webkit-scrollbar {
    width: 6px;
}
.scroll-container::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}
.content-box {
    background: #FFFFFF;
    border-radius: 12px;
    /* padding: 20px; */
    color: #051525;
    box-shadow: #0000000D;
    border: 1px solid #CFDCE6;
}
.welcome1{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.explore{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    border: 1px solid #CFDCE6;
    background: #FFFFFF;
    width: 349px;
    box-shadow: #00000026;
    cursor: pointer;
}
.explore1{
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 500;
}
.explore1 img {
    width: 28px;
    height: 28px;
}
.verify{
    display: flex;
    align-items: center;
    gap: 4px;
}
.verify img{
    width: 20px;
    height: 20px;
}
.sub{
    font-size: 19px;
    font-weight: 600;
}
.box{
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.box1{
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 12px;
}
.boximg img{
    width: 100%;
    height: 140px;
}
.view{
    display: flex;
    justify-content: space-between;
}
.view a{
    color: #2196F3;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
}
@media (max-width: 768px) {
    .scroll-container {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 820px) {
    aside {
        transform: translateX(-100%);
        position: fixed;
        left: 0;
        top: 0;
        bottom: 0;
        z-index: 1000;
    }

    aside.show {
        transform: translateX(0);
    }

    header {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .hero {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-bottom: 10px;
    }

    .hero-logo {
        display: block;
    }

    .hero3 input {
        width: 100%;
    }

    .input-wrapper {
        width: 100%;
    }

    .modal {
        top: 150;
        right: 15;
    }
    .welcome1{
        flex-direction: column;
        gap: 20px;
        align-items: normal;
    }
    .explore{
        width: auto;
    }
}