@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css');

.footer {
    background: #fff7f7;
    /* color: #ffffff; */
    padding: 2rem 1rem;
    margin-top: 3rem;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 2rem;
    border-top: 1px solid #34495e;
    padding-top: 3rem;
}

.footer-column {
    padding: 0 1rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #3498db;
}

.footer-about {
    color: #2b2c2c;
    line-height: 1.6;
    font-size: 0.9rem;
}

.footer-heading {
    color: #161616;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #2b2c2c;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #3498db;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.social-icons a {
    color: #ffffff;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.fb{
    color: #3498db !important;
}
.ig{
    color: #f121bd !important;
}
.ln{
    color: #3498db !important;
}

.social-icons a:hover {
    color: #3498db;
}

.contact-info p {
    margin: 0.5rem 0;
    color: #2b2c2c;
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    color: #000000;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-column {
        text-align: center;
        padding: 0;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-about,
    .contact-info {
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .footer-bottom p {
        font-size: 0.8rem;
    }
}