.header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 1300px;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.98);
    border-radius: 100px;
    padding: 8px 15px 8px 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
}

.header-wrapper {
    width: 100%;
    position: relative;
}

.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 900px;
    margin: 0 auto;
    gap: 15px;
}

.header__logo {
    display: flex;
    align-items: center;
    margin-left: 5px;
    text-decoration: none;
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-left: 12px;
    letter-spacing: -0.5px;
}

.header__logo img {
    height: 40px;
    width: auto;
    max-width: none;
}

.menu__list {
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.menu__list li a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.menu__list li a:hover {
    color: #03a4ed;
}

.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 15px;
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    min-width: 200px;
    z-index: 1001;
}

.menu-item-has-children {
    position: relative;
}

.menu-item-has-children:hover .sub-menu,
.sub-menu:hover {
    opacity: 1;
    visibility: visible;
}

.sub-menu li {
    padding: 8px 20px;
}

.sub-menu li a {
    color: #333;
    font-size: 14px;
    display: block;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-right: 20px;
}

.social-icon {
    color: #333;
    font-size: 18px;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #03a4ed;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn.book-call-btn {
    background-color: #5d5dff;
    color: white;
    padding: 12px 24px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
    font-size: 15px;
    white-space: nowrap;
}

.btn.book-call-btn:hover {
    background-color: #4b4bff;
}

@media (max-width: 991px) {
    .header {
        top: 0;
        width: 100%;
        border-radius: 0;
        padding: 15px 20px;
    }
    
    .menu__list, .header-right {
        display: none;
    }
    
    #btnmenumobile {
        display: block;
    }
}