/* Footer */
.footer {
    background-color: black;
    color: white;
    position: relative;
    overflow: hidden;
}

.footer h5 {
    color: black;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer h5:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #F39C37;
}

.footer ul li {
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.footer ul li:hover {
    transform: translateX(5px);
}

.footer a {
    color: black;
    text-decoration: none;
    transition: all 0.3s ease;
}
.custom-width{
    width: 75%;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
    border: 2px solid #F39C37;
}

.social-links a:last-child {
    margin-right: 0;
}

.social-links a:hover {
    background-color: #F39C37;
    transform: translateY(-3px);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: #F39C37;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #F39C37;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}
.payment-logo{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f1f1f1;
    border-radius: 7px;
    padding: 0 5px;
    gap: 10px;
   
}

.payment-logo img{
    
    object-fit: contain;
}
.form-control:focus{
    box-shadow: 0 0 0 0.2rem #f39c375e;
    outline: 0;
    border:none;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .footer {
        text-align: center;
    }
    .custom-width{
        width: 100%;
    }
    
    .footer h5:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer ul {
        margin-bottom: 2rem;
    }
    
    .social-links {
        justify-content: center;
        margin-bottom: 2rem;
    }
    
    .footer .text-md-end {
        text-align: center !important;
    }
}