.one{
    color: white !important;
}

/* Footer Styles */
.footerstyle {
    background: #000000;
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

.footerstyle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/img/gallery/section_bg4.png') no-repeat center center;
    background-size: cover;
    opacity: 0.1;
    z-index: 1;
}

.footerstyle > * {
    position: relative;
    z-index: 2;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    max-width: 150px;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.footer-logo img:hover {
    transform: scale(1.05);
}

.single-footer-caption {
    margin-bottom: 30px;
}

.footer-tittle h4 {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-pera {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 300px;
}

.footer-tittle ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-tittle ul li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 10px;
    padding-left: 0;
    line-height: 1.5;
}

.footer-tittle ul li.pl-4 {
    padding-left: 20px;
}

.btn-social {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white !important;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-social:hover {
    background: #ff2828;
    border-color: #ff2828;
    transform: translateY(-2px);
    color: white !important;
    text-decoration: none;
}

.btn-social i {
    font-size: 16px;
}

.footer-copy-right {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 40px;
}

.footer-copy-right p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin: 0;
}

.footer-copy-right a {
    color: #ff2828;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-copy-right a:hover {
    color: #ff6b6b;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footerstyle {
        padding: 40px 0 20px;
    }
    
    .d-flex.flex-row {
        flex-direction: column;
        gap: 30px;
    }
    
    .single-footer-caption {
        text-align: center;
        margin-bottom: 20px;
    }
    
    .footer-pera {
        max-width: 100%;
        margin: 0 auto 20px;
    }
    
    .btn-social {
        margin: 0 5px 10px;
    }
    
    .footer-tittle ul {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footerstyle {
        padding: 30px 0 15px;
    }
    
    .footer-logo img {
        max-width: 120px;
    }
    
    .footer-tittle h4 {
        font-size: 16px;
    }
    
    .footer-pera,
    .footer-tittle ul li {
        font-size: 13px;
    }
}
