/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-top: 3px solid #ffc107;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ffc107, transparent);
}

.footer h5, .footer h6 {
    position: relative;
    padding-bottom: 10px;
}

.footer h5::after, .footer h6::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #ffc107;
    transition: width 0.3s ease;
}

.footer h5:hover::after, .footer h6:hover::after {
    width: 50px;
}

.footer .list-unstyled li {
    transition: all 0.3s ease;
    border-radius: 5px;
    padding: 5px 0;
}

.footer .list-unstyled li:hover {
    background: rgba(255, 193, 7, 0.1);
    transform: translateX(5px);
}

.footer .list-unstyled a {
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 10px;
    border-radius: 5px;
    display: inline-block;
    width: 100%;
}

.footer .list-unstyled a:hover {
    color: #ffc107 !important;
    background: rgba(255, 193, 7, 0.1);
    text-decoration: none;
    transform: translateX(5px);
}

.footer .list-unstyled a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 2px;
    background: #ffc107;
    transition: width 0.3s ease;
    transform: translateY(-50%);
}

.footer .list-unstyled a:hover::before {
    width: 100%;
}

/* Social Media Icons */
.footer .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 193, 7, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.footer .social-links a:hover {
    background: #ffc107;
    color: #1a1a1a !important;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
    border-color: #ffc107;
}

/* Contact Info */
.footer .contact-info li {
    display: flex;
    align-items: center;
    padding: 8px 0;
    transition: all 0.3s ease;
}

.footer .contact-info li:hover {
    background: rgba(255, 193, 7, 0.1);
    border-radius: 5px;
    padding-left: 10px;
}

.footer .contact-info i {
    min-width: 20px;
    text-align: center;
}

/* Bottom Footer */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 193, 7, 0.2);
}

.footer-bottom .badge {
    transition: all 0.3s ease;
}

.footer-bottom .badge:hover {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer {
        text-align: center;
    }
    
    .footer .social-links {
        justify-content: center;
    }
    
    .footer .contact-info li {
        justify-content: center;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .footer-bottom .text-md-end {
        text-align: center !important;
        margin-top: 15px;
    }
}

/* Animation for page load */
.footer {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover effects for company description */
.footer .company-desc {
    position: relative;
    overflow: hidden;
}

.footer .company-desc::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffc107, transparent);
    transition: left 0.5s ease;
}

.footer .company-desc:hover::after {
    left: 100%;
}

/* Icon animations */
.footer .bi {
    transition: all 0.3s ease;
}

.footer .list-unstyled a:hover .bi {
    transform: scale(1.2);
    color: #ffc107;
}

/* Copyright link hover */
.footer .copyright a {
    position: relative;
    transition: all 0.3s ease;
}

.footer .copyright a:hover {
    color: #ffc107 !important;
    text-shadow: 0 0 10px rgba(255, 193, 7, 0.5);
}

/* Certificate badges */
.footer .certificates img {
    transition: all 0.3s ease;
    filter: grayscale(100%);
}

.footer .certificates img:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
} 