/* Custom logo alignment for circular logo */
.main-header .header-upper .logo-box .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 100%;
}

.main-header .header-upper .logo-box .logo img {
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    object-fit: cover;
    vertical-align: middle;
    height: 70px;
    width: 70px;
    margin-right: 8px;
}


.main-header .header-upper .logo-box .logo .logo-text {
    font-size: 1.85rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
    font-family: 'Bellefair', serif;
    line-height: 1.1;
    margin-left: 0;
    white-space: nowrap;
    margin-top: 2px;
    max-width: 170px;
    overflow: hidden;
    text-overflow: ellipsis;
}


.sticky-header .logo img {
    height: 50px;
    width: 50px;
}

.sticky-header .logo .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    letter-spacing: 0.5px;
    font-family: 'Bellefair', serif;
    line-height: 1.1;
    margin-left: 0;
    white-space: nowrap;
    margin-top: 2px;
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
}
@media (max-width: 991px) {
    .main-header .header-upper .logo-box .logo .logo-text {
        font-size: 1.2rem;
    }
    .main-header .header-upper .logo-box .logo img {
        height: 48px;
        width: 48px;
    }
}
