   .footer {
        background: #eee;
        padding: 50px 8%;
    }

    .footer-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .footer-box {
        background: #f7f7f7;
        padding: 20px;
        border-radius: 5px;
    }

    .footer-box h3 {
        font-size: 18px;
        margin-bottom: 15px;
        border-bottom: 1px solid #ccc;
        padding-bottom: 8px;
    }

    /* 🔗 Animated underline links */
    .links ul {
        list-style: none;
        padding: 0;
    }

    .links ul li {
        padding: 10px 0;
        border-bottom: 1px solid #ddd;
    }

    .links ul li a {
        text-decoration: none;
        color: #333;
        position: relative;
        font-size: 15px;
    }

    .links ul li a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -3px;
        width: 0%;
        height: 2px;
        background: #007BFF;
        transition: 0.3s;
    }

    .links ul li a:hover::after {
        width: 100%;
    }

    /* 🖼️ Image Zoom Effect */
    .img-box {
        overflow: hidden;
        border-radius: 4px;
    }

    .img-box img {
        width: 100%;
        height: 160px;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

    .img-box:hover img {
        transform: scale(1.1);
    }

    .footer-box p {
        font-size: 14px;
        margin-top: 10px;
        color: #444;
        line-height: 1.5;
    }

    /* 🌐 Social Icons */
    .social {
        text-align: center;
        margin-top: 30px;
    }

    .social a {
        display: inline-block;
        margin: 0 8px;
        font-size: 18px;
        color: #555;
        width: 40px;
        height: 40px;
        line-height: 40px;
        border-radius: 50%;
        background: #ddd;
        transition: 0.3s;
    }

    .social a:hover {
        color: #fff;
        background: #007BFF;
        transform: translateY(-3px);
    }

    /* Bottom */
    .footer-bottom {
        text-align: center;
        margin-top: 20px;
        padding-top: 15px;
        border-top: 1px solid #ccc;
        font-size: 14px;
    }

    /* 📱 Responsive */
    @media (max-width: 900px) {
        .footer-container {
            grid-template-columns: 1fr 1fr;
        }
    }

    @media (max-width: 600px) {
        .footer-container {
            grid-template-columns: 1fr;
        }
    }