.sign__area-e .sign__left__blk .footer__subs__label {
    margin-bottom: 80px;
    margin-top: 80px;
}
.footer__subs__label-e .footer__subs__shr img {
    width: 6rem; 
}

.popup-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9;
}

.popup {
    background: white;
    padding: 20px;
    width: 300px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.popup h2 {
    margin-bottom: 15px;
}

.popup input {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.popup button {
    width: 100%;
    margin-top: 15px;
}

.popup .common__btn span:first-child {
    width: 7.625rem;
}

.hidden {
    display: none;
}

@media screen and (max-width: 767px) {
    .footer__subs__label-e {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
        margin-bottom: -1rem;
    }
}

/* Search Box Container */
.search-container {
    position: relative;
    width: 100%;
}

/* Search Input */
.search-input {
    width: 100%;
    padding: 12px 50px 12px 20px;
    border-radius: 25px;
    border: none;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease-in-out;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    backdrop-filter: blur(10px);
    box-shadow: inset 3px 3px 6px rgba(255, 255, 255, 0.1),
                inset -3px -3px 6px rgba(0, 0, 0, 0.2);
}

/* Placeholder Color */
.search-input::placeholder {
    color: #003157;
}

/* Search Button */
.search-btn {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    border: none;
    background: none;
    cursor: pointer;
    font-size: 20px;
    color: white;
    transition: color 0.3s ease-in-out;
}

.search-btn i {
    color: #003157;
}

.search-btn:hover {
    color: #48dbfb;
}

/* Stylish Toggle Switch */
.toggle-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    align-items: center;
    padding: 0 10px;
}

.toggle-btn {
    width: 70px;
    height: 40px;
    background: #ff6b6b;
    border-radius: 20px;
    position: relative;
    cursor: pointer;
    box-shadow: inset 4px 4px 6px rgba(255, 255, 255, 0.2),
                inset -4px -4px 6px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease-in-out;
}

.toggle-btn.active {
    background: #48dbfb;
}

.toggle-circle {
    width: 34px;
    height: 34px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 3px;
    transition: 0.3s;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.3);
}

.toggle-btn.active .toggle-circle {
    left: 32px;
}