
    footer {
        background-color: #d60404;
        color: var(--secondary-color);
        padding: 50px 20px;
        position: relative;
        overflow: hidden;
    }

    .footer-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        max-width: 1200px;
        margin: 0 auto;
    }

    .footer-logo {
        flex: 1;
        padding: 20px;
    }

    .footer-logo img {
        /* width: 80px; */
        margin-bottom: 15px;
        transition: transform 0.3s ease;
    }

    .footer-logo:hover img {
        transform: rotate(360deg);
    }

    .footer-logo h2 {
        font-size: 2rem;
        margin-bottom: 10px;
        transition: color 0.3s ease;
    }

    .footer-logo:hover h2 {
        color: #fff;
    }

    .footer-links, .footer-contact, .footer-social {
        flex: 1;
        margin: 10px;
        padding: 20px;
    }

    .footer-links h3, .footer-contact h3, .footer-social h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
        color: #fff;
        position: relative;
        display: inline-block;
        padding-bottom: 5px;
    }

    /* Line Effect on Heading */
    .heading::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 3px;
        background-color: #fff;
        transform: scaleX(0);
        transform-origin: bottom right;
        transition: transform 0.3s ease;
    }

    .heading:hover::after {
        transform: scaleX(1);
        transform-origin: bottom left;
    }

    .footer-links ul, .footer-contact ul, .footer-social ul {
        list-style: none;
        padding: 0;
    }

    .footer-links li, .footer-contact li, .footer-social li {
        margin: 10px 0;
        font-size: 1rem;
        transition: transform 0.3s ease;
    }

    .footer-links a, .footer-contact a, .footer-social a {
        text-decoration: none;
        color: var(--secondary-color);
        font-weight: bold;
        transition: color 0.3s ease, transform 0.3s ease;
    }

    .footer-links a:hover, .footer-contact a:hover, .footer-social a:hover {
        color: #fff;
        transform: translateX(10px);
    }

    .footer-social ul li a img {
        width: 30px;
        margin-right: 10px;
        transition: transform 0.3s ease;
    }

    .footer-social ul li a:hover img {
        transform: scale(1.1);
    }

    .footer-bottom {
        text-align: center;
        margin-top: 30px;
        font-size: 1rem;
    }

    /* Hover Effects */
    .footer-links li:hover, .footer-contact li:hover, .footer-social li:hover {
        transform: translateY(-5px);
    }

    /* Responsive Styling */
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            text-align: center;
        }

        .footer-logo {
            text-align: center;
            margin-bottom: 20px;
        }

        .footer-links, .footer-contact, .footer-social {
            margin-bottom: 20px;
            text-align: left; /* Aligning the text left within each footer section */
        }
    }
