/* Footer Styles */
.footer {
    background-color: #1a1a1a;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #6610f2);
}

.footer h5 {
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: #007bff;
}

.footer ul li {
    margin-bottom: 0.8rem;
}

.footer ul li a {
    color: #a8a8a8;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer ul li a:hover {
    color: #007bff;
    transform: translateX(5px);
}

.footer .text-muted {
    color: #a8a8a8 !important;
}

.footer .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer .social-links a:hover {
    background: #007bff;
    transform: translateY(-3px);
}

.footer hr {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.footer i {
    color: #007bff;
    width: 20px;
    margin-right: 10px;
}

.footer ul.list-unstyled li {
    display: flex;
    align-items: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer {
        text-align: center;
    }
    
    .footer h5::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer ul.list-unstyled li {
        justify-content: center;
    }
    
    .footer .social-links {
        justify-content: center;
        display: flex;
        gap: 10px;
    }
}

/* Animation for footer elements */
.footer [data-aos] {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.footer [data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Contact Info Styles */
.footer .contact-info {
    margin-bottom: 2rem;
}

.footer .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.footer .contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.footer .contact-item .icon-wrapper {
    width: 40px;
    height: 40px;
    background: rgba(0, 123, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.footer .contact-item .icon-wrapper i {
    color: #007bff;
    font-size: 1.1rem;
    margin: 0;
}

.footer .contact-item .contact-details {
    flex-grow: 1;
}

.footer .contact-item .label {
    display: block;
    color: #007bff;
    font-size: 0.85rem;
    margin-bottom: 4px;
}

.footer .contact-item .value {
    color: #fff;
    font-size: 0.95rem;
}

/* Social Links Styles */
.footer .social-links-wrapper {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
}

.footer .social-links {
    display: flex;
    gap: 15px;
}

.footer .social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer .social-link i {
    color: #fff !important;
    margin: 0;
    width: auto;
}

/* Social Media Brand Colors with Hover Effects */
.footer .social-link.facebook {
    background: #1877f2;
}
.footer .social-link.facebook:hover {
    background: #0d6efd;
    box-shadow: 0 0 15px rgba(24, 119, 242, 0.5);
}

.footer .social-link.twitter {
    background: #1da1f2;
}
.footer .social-link.twitter:hover {
    background: #0c85d0;
    box-shadow: 0 0 15px rgba(29, 161, 242, 0.5);
}

.footer .social-link.instagram {
    background: #e4405f;
}
.footer .social-link.instagram:hover {
    background: #d62d4c;
    box-shadow: 0 0 15px rgba(228, 64, 95, 0.5);
}

.footer .social-link.linkedin {
    background: #0077b5;
}
.footer .social-link.linkedin:hover {
    background: #005885;
    box-shadow: 0 0 15px rgba(0, 119, 181, 0.5);
}

/* Hover Animation */
.footer .social-link:hover {
    transform: translateY(-3px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .footer .social-links-wrapper {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer .social-links {
        justify-content: center;
    }
}
