
.navigation .submenu{
    display: none;
    position: absolute;
    top: 66px;
    left: 0px;
    padding: 15px 15px 30px;
    width: 100%;
    z-index: 9;
    background-color: #ECECEC;
    cursor: default;
}
.facebook {
    background: url('/images/icons/facebook.png') no-repeat center center;
    background-size: cover;
    width: 30px;
    height: 30px;
    display: inline-block;
}

.instagram {
    background: url('/images/icons/instagram.png') no-repeat center center;
    background-size: cover;
    width: 30px;
    height: 30px;
    display: inline-block;
}

.tiktok {
    background: url('/images/icons/tiktok.png') no-repeat center center;
    background-size: cover;
    width: 30px;
    height: 30px;
    display: inline-block;
}

.topbar-container {
    display: flex;
    justify-content: space-between; /* left text + right icons */
    align-items: center;
    padding: 6px 20px; /* left/right control */
}

.topbar-container .offer-text {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
}

.contact-icons-wrapper {
    display: flex;
    align-items: center;
}

.top-bar .contact-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-bar .contact-icons {
    display: flex;
    align-items: center;
}

/* Pehle se hai, rehne do agar already maujood ho */
.top-bar .contact-icons a {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Desktop: WA & Phone ke liye icon + number side-by-side */
.top-bar .contact-icons a.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 6px; /* icon aur number ke beech thora gap */
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
}

.top-bar .contact-icons a.contact-link .contact-text {
    color: #ffffff;
    white-space: nowrap; /* number ek line me rahe */
}

/* Icons ka style (already hai, rehne do) */
.icon-white {
    width: 20px;
    height: 20px;
    filter: invert(1);
    opacity: 0.9;
    transition: 0.2s ease;
}

.icon-white:hover {
    opacity: 1;
    transform: scale(1.12);
}

@media (max-width: 1024px) {

    .topbar-container {
        flex-wrap: wrap;
        padding: 6px 12px;
    }

    .topbar-container > div:first-child {
        flex: 0 0 100%;
        text-align: center;
        font-size: 14px;
        margin-bottom: 4px;
    }

    #top-bar .row {
        width: 100%;
        margin-top: 0;
    }

    #top-bar .row .col-12 {
        justify-content: center !important;
    }

    .top-bar .contact-icons {
        justify-content: center;
        gap: 8px;
    }
}

@media (max-width: 768px) {
    .top-bar .contact-link .contact-text {
        display: none;
    }
}