body, html {
    height: 100%;
    margin: 0;
    overflow-x: hidden;
    background: #fdb507;
}

/* Language Toggle */
.language-toggle {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1000;
}

.text-box {
    background: rgb(255 244 165 / 80%);
    border-radius: 12px;
    box-shadow: 0px 6px 25px rgba(0, 0, 0, 0.1);
    padding: 20px;
    font-weight: 600;
}

.language-toggle select {
    background-color:#a30100;
    color:#fff;
    border:1px solid #fcef41;
    padding:5px 30px 5px 10px;
    font-size:14px;
    border-radius:4px;
    cursor:pointer;
    appearance:none;
    background-image:url("data:image/svg+xml;utf8,<svg fill='%23fcef41' height='24' width='24'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat:no-repeat;
    background-position:right 10px center;
}

/* Desktop Banner */
.jumbotron {
    background-image: url(images/desktop-bg.png);
    background-position: top center;
    background-size: 100%;
    height: 100%;
    border-radius: 0;
}

/* Mobile Banner */
.mobile { display: none; }

@media (max-width: 568px) {
    .desktop { display: none; }
    .mobile { display: block; }
}

/* Mobile Background */
.bgimg1 {
    background-image: url('./images/mobile-banner.png');
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* Footer */
.site-footer {
       background-color: #061421;
    padding: 8px 0px;
    font-size: 12px;
    line-height: 24px;
    color: #ffffff;
}
.site-footer .social-icons .social-icon-li a {
    /* width:30px !important;
    height:30px !important; */
    line-height: 30px;
    margin-right: 0;
    border-radius: 100%;
}
.social-icons li {
    display: inline-block;
    margin-right: 8px;
}
.fa-brands
{
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: #FFF;
    border-radius: 20px;
    font-size: 20px;

}
.social-icons a {
    /* line-height:44px; */
    text-align:center;
    border-radius:50%;
    background:#fff;
    color:#000;
    font-size:16px;
}

.social-icons .fa-facebook-f:hover { background:#3b5998; color:#fff; }
.social-icons .fa-youtube:hover { background:#ff0000; color:#fff; }
.social-icons .fa-x-twitter:hover { background:#1d9bf0; color:#fff; }
.social-icons .fa-instagram:hover { background:#ea4c89; color:#fff; }

