/* Footer Styles */
.footer_b5 {
    background: linear-gradient(to right, #1a2b5f, #222f5a);
    color: #e0e0e0;
    position: relative;
    overflow: hidden;
}

.footer_b5::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -100px;
    width: 300px;
    height: 300px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='rgba(255,123,0,0.05)' d='M50 0 L100 50 L50 100 L0 50 Z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    transform: translateY(-50%);
    opacity: 0.1;
    z-index: 0;
}

.footer-content_b5 {
    display: flex;
    flex-wrap: wrap;
    padding: 60px 0 40px;
    position: relative;
    z-index: 1;
}

.footer-column_b5 {
    flex: 1;
    min-width: 250px;
    padding: 0 20px;
    margin-bottom: 30px;
}

.footer-logo_b5 {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-description_b5 {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

.social-links_b5 {
    display: flex;
    gap: 15px;
}

.social-link_b5 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.3s ease;
}

.social-link_b5:hover {
    background: #ff7b00;
    transform: translateY(-3px);
}

.footer-heading_b5 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading_b5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: #ff7b00;
}

.footer-links_b5 {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links_b5 li a {
    color: #e0e0e0;
    font-size: 14px;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: inline-block;
}

.footer-links_b5 li a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.coming-soon_b5 {
    position: relative;
}

.coming-soon_b5 span {
    position: absolute;
    right: -85px;
    top: 0;
    background: rgba(255, 123, 0, 0.2);
    color: #ff7b00;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 10px;
}

.newsletter-description_b5 {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

.form-group_b5 {
    position: relative;
    margin-bottom: 15px;
}

.form-group_b5 input {
    width: 100%;
    height: 46px;
    padding: 0 110px 0 15px;
    border-radius: 5px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 14px;
}

.form-group_b5 input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group_b5 input:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 123, 0, 0.3);
}

.btn-subscribe_b5 {
    position: absolute;
    right: 3px;
    top: 3px;
    height: 40px;
    background: linear-gradient(135deg, #ff7b00, #ff5100);
    color: #ffffff;
    border: none;
    padding: 0 15px;
    font-size: 14px;
}

.btn-subscribe_b5 i {
    margin-left: 5px;
}

.opt-in_b5 {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.opt-in_b5 input {
    margin-top: 3px;
}

.opt-in_b5 label {
    font-size: 12px;
    line-height: 1.4;
    color: #e0e0e0;
}

/* Copyright Bar */
.copyright-bar_b5 {
    background: #14204a;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-content_b5 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright-text_b5 {
    font-size: 12px;
    color: #a0a0a0;
}

.copyright-right_b5 {
    display: flex;
    align-items: center;
    gap: 20px;
}

.language-selector_b5 select {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #e0e0e0;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
}

.back-to-top_b5 {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #e0e0e0;
    font-size: 12px;
    transition: color 0.3s ease;
}

.back-to-top_b5:hover {
    color: #ff7b00;
}

.back-to-top_b5 i {
    font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .footer-column_b5 {
        flex: 1 0 calc(50% - 40px);
    }
}

@media (max-width: 767px) {
.footer-column_b5 {
    flex: 1 0 100%;
}

.copyright-content_b5 {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
}

.copyright-right_b5 {
    flex-direction: column;
    gap: 15px;
}
}
@media (max-width: 480px) {
    .footer-content_b5 {
        padding: 40px 0 20px;
    }
}