.frontend_footer .footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    /* Gradient text */
    background: linear-gradient(90deg, #00d1b2, #3273dc, #ff3860);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
/* Underline effect */
.frontend_footer .footer-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #00d1b2, #3273dc);
    border-radius: 2px;
}
/* Footer Links */
.frontend_footer .footer-link {
    color: #b5b5b5;
    display: inline-block;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}
.frontend_footer .footer-link:hover {
    color: #00d1b2;
    transform: translateX(5px);
}
/* Social icons hover */
.frontend_footer .icon:hover {
    transform: scale(1.2);
    transition: 0.3s;
}
/* Gradient top border */
.frontend_footer .frontend_footer {
    border-top: 4px solid;
    border-image: linear-gradient(90deg, #00d1b2, #3273dc, #ff3860) 1;
}
/* Footer Bottom Section */
.frontend_footer .footer-bottom {
    text-align: center;
    padding-top: 15px;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
/* Text styling */
.frontend_footer .footer-bottom p {
    color: #b5b5b5;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}
/* Brand highlight */
.frontend_footer .brand-name {
    font-weight: 600;
    background: linear-gradient(90deg, #00d1b2, #3273dc, #ff3860);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}
/* Hover glow effect */
.frontend_footer .brand-name:hover {
    text-shadow: 0 0 8px rgba(0, 209, 178, 0.6);
}
/* Optional subtle animation */
.frontend_footer .brand-name::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0%;
    height: 2px;
    background: #00d1b2;
    transition: width 0.3s ease;
}
.frontend_footer .brand-name:hover::after {
    width: 100%;
}
