/* Modern Footer Styles */
.footer {
    background: linear-gradient(to right, #0a0a0a, #1a1a1a);
    color: #fff;
    padding: 40px 0px;
    border-top: 4px solid #3498db;
    text-align: center;
    flex-wrap: wrap;
    position: relative;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
}
footer ul {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.links-dev  {
    display: flex;
    justify-content: center;
    gap: 20px;
}
#protectedImage.Instagram,
#protectedImage.sharimg,
#protectedImage.TikTok,
#protectedImage.Twitter,
#protectedImage.support-img {
    filter: invert(1) brightness(2);
}
/* Footer Title Styles */
.footer-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 80px;
    height: 3px;
    background: #3498db;
    border-radius: 2px;
    left: 50%;
    transform: translateX(-50%);
}

.footer-title span {
    color: #3498db;
    font-weight: 700;
}

#copyright {
    color: #67d7e8;
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 5px 0;
}

/* Email Styles */
.emaill {
    font-size: 1rem;
    color: #3498db;
    padding: 8px 15px;
    background: rgba(52, 152, 219, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.emaill:hover {
    background: rgba(52, 152, 219, 0.2);
    transform: translateY(-2px);
}

/* Social Links Styles */
.links-dev {
    display: flex;
    gap: 20px;
    align-items: center;
    margin: 20px 0;
}

#protectedImage {
    width: 32px;
    height: 32px;
    transition: all 0.3s ease;
    filter: brightness(0.9);
}

#protectedImage:hover {
    transform: translateY(-3px) scale(1.1);
    filter: brightness(1.2);
}

/* Footer Links Styles */
.footer ul {
    display: flex;
    gap: 25px;
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.footer ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #3498db;
    transition: width 0.3s ease;
}

.footer ul li a:hover {
    color: #3498db;
}

.footer ul li a:hover::after {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer {
        padding: 30px 0px;
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .links-dev {
        justify-content: center;
    }

    .footer ul {
        flex-direction: column;
        gap: 15px;
    }

    .emaill {
        margin: 15px 0;
    }
}

/* Add smooth scrolling for better UX */
html {
    scroll-behavior: smooth;
}
