footer {
    background-color: var(--FooterColor);
    color: var(--ParaFont);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border-top: 1px solid #000;
    width: 100%;
    overflow: hidden;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin-bottom: 10px;
}

.footer-content p {
    margin: 0;
    font-size: 1rem;
}

.companyName {
    color: var(--PcolorTwo);
}
.companyName::hover {
    color: var(--hoverText);
}

.footer-links {
    display: flex;
    gap: 15px;
}

.footer-links a {
    color: var(--ParaFont);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--barcolor);
}

.footer-tags {
    border: none;
}

.footer-tags a {
    text-decoration: none;
    color: #fff;

}
.footer-tags a::hover{
    color: var(--barcolor);
}

.top {
    margin-top: 10px;
}

.top a {
    color: var(--hedFont);
    font-size: 2rem;
    text-decoration: none;
    transition: color 0.3s, transform 0.3s;
}

.top a:hover {
    color: var(--hoverText);
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }



    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}

/* ------------------------------Footer---------------------------------------------------------------- */