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

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

/* Navbar Styling */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 0 8%;
    height: 70px;
}

.header-logo img {
    width: 55px;
    height: 60px;
    transition: transform 0.3s ease;
}

.header-logo img:hover {
    transform: scale(1.1);
}

.profile-dropdown {
    position: relative;
    cursor: pointer;
}

.profile-dropdown-btn {
    display: flex;
    align-items: center;
    cursor: pointer;
    background-color: #f0f0f0;
    border-radius: 5px;
    padding: 5px 10px;
    transition: background-color 0.3s;
}

.profile-dropdown-btn:hover {
    background-color: #e0e0e0;
}

.profile-img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin-right: 10px;
    object-fit: cover;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease;
}

.profile-img:hover {
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3);
}

.profile-dropdown-btn h5 {
    margin: 0;
    font-size: 16px;
    color: #333;
    font-weight: normal;
}

/* Dropdown List */
.profile-dropdown-list {
    position: absolute;
    top: 120%;
    right: 0;
    width: 220px;
    background-color: #e5f2ed;
    border-radius: 8px;
    box-shadow: 0px 10px 20px rgba(185,229,184,255);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    list-style: none;
    padding: 10px 0;
    z-index: 1000;
    overflow: hidden;
}

.profile-dropdown-list.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.profile-dropdown-list-item {
    padding: 12px 20px;
    display: flex;
    align-items: center;
    color: #333;
    font-size: 15px;
    transition: background-color 0.3s, padding-left 0.3s;
}

.profile-dropdown-list-item i {
    margin-right: 10px;
    color: #666;
    font-size: 18px;
    transition: color 0.3s;
}

.profile-dropdown-list-item:hover {
    background-color: #80d4cf;
    padding-left: 30px;
}

.profile-dropdown-list-item:hover i {
    color: #333;
}

.profile-dropdown-list-item a {
    color: inherit;
    text-decoration: none;
    width: 100%;
}

.profile-dropdown-list-item:first-child {
    border-top: none;
}

.profile-dropdown-list-item:last-child {
    border-bottom: none;
}

/* Unique Transition Effect */
.profile-dropdown-list-item {
    opacity: 0;
    transform: translateX(-20px);
    animation: slideIn 0.5s ease forwards;
}

.profile-dropdown-list-item:nth-child(1) {
    animation-delay: 0.1s;
}

.profile-dropdown-list-item:nth-child(2) {
    animation-delay: 0.2s;
}

.profile-dropdown-list-item:nth-child(3) {
    animation-delay: 0.3s;
}

.profile-dropdown-list-item:nth-child(4) {
    animation-delay: 0.4s;
}

.profile-dropdown-list-item:nth-child(5) {
    animation-delay: 0.5s;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

        .header-logo {
            margin-bottom: -10px;
            margin-top: 15px;
        }

        .header-logo img {
            margin: auto;
            width: 120px;
            height: 78px;
        }

        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: #fff;
            box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            padding: 0 8%;
            margin-bottom: 40px;
        }