/* Modern Footer Styles */
footer.bg-dark {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #2d2d2d 100%) !important;
    position: relative;
    overflow: hidden;
}



/* Logo styling */
footer .navbar-brand img {
    height: 60px;
    width: auto;
    filter: brightness(1.1);
    transition: transform 0.3s ease;
}

footer .navbar-brand:hover img {
    transform: scale(1.05);
}



/* Typography improvements */
footer h6 {
    color: #64b5f6 !important;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 8px;
}

footer h6::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #64b5f6, #42a5f5);
    border-radius: 1px;
}

footer p {
    line-height: 1.6;
    color: #b0bec5 !important;
}

/* Link styling */
footer a {
    transition: all 0.3s ease;
    position: relative;
}

footer ul li a {
    color: #b0bec5 !important;
    padding: 4px 0;
    display: inline-block;
}

footer ul li a:hover {
    color: #64b5f6 !important;
    transform: translateX(5px);
}

footer ul li a i.fa-chevron-right {
    color: #64b5f6;
    transition: transform 0.3s ease;
}

footer ul li a:hover i.fa-chevron-right {
    transform: translateX(3px);
}

/* Social media icons */
footer .d-flex a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #b0bec5 !important;
    transition: all 0.3s ease;
    text-decoration: none;
    backdrop-filter: blur(10px);
}

footer .d-flex a:hover {
    background: #64b5f6;
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(100, 181, 246, 0.3);
}

/* Contact info styling */
footer .col-lg-3 p {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

footer .col-lg-3 i {
    margin-top: 2px;
    flex-shrink: 0;
}

/* Footer bottom section */
footer .border-top {
    border-color: rgba(255, 255, 255, 0.1) !important;
    background: rgba(255, 255, 255, 0.755);
    backdrop-filter: blur(10px);
    width: 100vw;
    padding: 200px;
    margin-left: calc(-50vw + 50%);
}

footer .text-light-emphasis {
    color: #000000 !important;
}

/* Developer credit styling */
footer .col-md-6.text-md-end a {
    color: #008cff !important;
    text-decoration: none;
    transition: all 0.4s ease;
    padding: 6px 10px;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
}

footer .col-md-6.text-md-end a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: #008cff;
    transition: width 0.4s ease;
}

footer .col-md-6.text-md-end a:hover {
    background: rgba(0, 140, 255, 0.1);
    color: #0066cc !important;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 140, 255, 0.2);
}

footer .col-md-6.text-md-end a:hover::after {
    width: 100%;
}


/* Responsive improvements */
@media (max-width: 768px) {
    footer .col-md-6.text-md-end {
        text-align: center !important;
        margin-top: 15px;
    }
    
    footer .navbar-brand img {
        height: 50px;
    }
    
    footer .d-flex {
        justify-content: center;
        margin-top: 20px;
    }
}

/* Smooth animations */
footer * {
    transition: color 0.3s ease, transform 0.3s ease;
}

/* Subtle hover effect for entire footer sections */
footer .col-lg-4:hover,
footer .col-lg-2:hover,
footer .col-lg-3:hover {
    transform: translateY(-2px);
    transition: transform 0.3s ease;
}