.navbar-brand img {
    width: 200px;
    height: 80px;
}


.btn-bangla {
    display: inline-flex;
    align-items: center;
    padding: 10px 12px;
    gap: 8px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    will-change: transform;
    -webkit-font-smoothing: antialiased;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.btn-bangla span {
    font-size: 15px;
    line-height: 1;
    font-weight: 600;
}

.btn-bangla svg {
    font-size: 15px;
    display: flex;
    align-items: center;
}

.btn-bangla:hover {
    transform: scale(1.08);
    background-color: #1e56ed;
}

.btn-bangla:active {
    transform: scale(0.98);
}

.navbar-brand {
    position: relative;
    display: inline-flex;
    flex-direction: column;
}

.company-name {
    position: absolute;
    top: 77%;
    right: 13px;
    width: 100%;
    text-align: right;
    font-size: 10px;
    font-weight: 700;
    white-space: nowrap;
}

.company-name-2 {
    position: absolute;
    top: 78%;
    right: 17px;
    width: 100%;
    text-align: right;
    font-size: 10px;
    font-weight: 700;
    white-space: nowrap;
    color: white;
}


@media (max-width: 767px) {
    .navbar-brand img {
        width: 190px;
        height: auto;
    }

    .btn-bangla span {
        font-size: 13px;
    }

    .btn-bangla svg {
        font-size: 13px;
    }

    .company-name {
        right: 12px;
        font-size: 9px;
    }

    .company-name-2 {
        right: 16px;
         top: 80%;
        font-size: 9px;
    }

}