  footer {
    background-color: #333 !important;
    color: white;
    padding: 30px 0 !important;
    text-align: center;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-social {
    margin-bottom: 20px;
}

.social-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 35px; /* Size of the circle */
    height: 35px; /* Size of the circle */
    border-radius: 50%;
    margin: 0 15px;
    font-size: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
    color: white; /* Default icon color */
}

/* Facebook */
.facebook {
    background-color: #1877f2; /* Facebook Blue */
}

/* Twitter */
.twitter {
    background-color: #1da1f2; /* Twitter Blue */
}

/* YouTube */
.youtube {
    background-color: #ff0000; /* YouTube Red */
}

/* Telegram */
.telegram {
    background-color: #0088cc; /* Telegram Blue */
}

/* LinkedIn */
.linkedin {
    background-color: #0077b5; /* LinkedIn Blue */
}

/* Hover Effects */
.social-icon:hover {
    transform: scale(1.2);
}

.social-icon:hover.facebook {
    background-color: #1568c7; /* Darker Facebook Blue */
}

.social-icon:hover.twitter {
    background-color: #0d95c5; /* Darker Twitter Blue */
}

.social-icon:hover.youtube {
    background-color: #cc0000; /* Darker YouTube Red */
}

.social-icon:hover.telegram {
    background-color: #006f8b; /* Darker Telegram Blue */
}

.social-icon:hover.linkedin {
    background-color: #00678b; /* Darker LinkedIn Blue */
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-link {
    color: white;
    text-decoration: none;
}

.footer-link:hover {
    color: #f0f0f0;
}
/* Responsive Design for Smaller Screens */
@media screen and (max-width: 768px) {
    .footer-container {
        flex-direction: column;
    }

    .footer-social {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .social-icon {
        width: 30px; /* Smaller circle size */
        height: 30px; /* Smaller circle size */
        font-size: 19px; /* Smaller icon size */
        margin: 5px; /* Reduced spacing */
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 10px; /* Adjusted gap for links */
    }
}
.footer-link {
    color: white;
    text-decoration: none;
    padding: 5px 10px; /* Space around the text */
    border: 2px solid white; /* Border around the link */
    border-radius: 18px; /* Rounded corners */
    transition: all 0.3s ease; /* Smooth transition effect */
}

.footer-link:hover {
    color: #333; /* Change text color on hover */
    background-color: white; /* Background color on hover */
    border-color: #f0f0f0; /* Lighter border on hover */
}

/*Copy-right footer*/

.footer-copyright {
    background-color: #222; /* Darker background for copyright section */
    color: white; /* Text color */
    text-align: center; /* Center align text */
    padding: 10px 0; /* Add spacing around the text */
    font-size: 14px; /* Smaller font size */
    margin-top: 20px; /* Add space above copyright section */
    border-top: 1px solid #444; /* Optional: Border to separate from the rest of the footer */
}