.footer {
    background: linear-gradient(to right, #ddede5, #d1deeb);
    padding: 40px 20px;
    font-family: Arial, sans-serif;
    /* width: 100%; */
    margin: 0;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
}

.footer-section {
    flex: 1 1 22%;
    min-width: 200px;
    margin-bottom: 20px;
}
.footer-section p a {
    text-decoration: none;
    color: #555;
}

.footer h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #d32f2f; /* Red Header */
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 8px;
}

.footer ul li a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.footer ul li a:hover {
    color: #d32f2f;
    font-weight: bold;
}

/* Contact Section */
.footer .contact p {
    margin: 5px 0;
    color: #555;
}

/* Social Media Icons */
.social-links {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.social-icon {
    font-size: 16px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s;
}

.fb {
    background-color: #3b5998;
}
.insta {
    background-color: #e4405f;
}
.twitter {
    background-color: #1da1f2;
}
.youtube {
    background-color: #ff0000;
}

.social-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Bottom Copyright Section */
.footer-bottom {
    text-align: center;
    border-top: 1px solid #ccc;
    padding-top: 15px;
    margin-top: 20px;
    font-size: 14px;
    color: #777;
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
    .footer-section {
        flex: 1 1 45%;
    }
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }
    .footer-section {
        width: 100%;
        text-align: center;
    }
    .social-links {
        justify-content: center;
    }
}
