
        .footer {
            background-color: #1b086a;
            color: white;
            text-align: center;
            padding: 20px;
            position: relative;
        }


        .footer-container {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            padding: 20px;
        }

        .footer-first-column {
            width: 30%;
            text-align: center;
            margin-bottom: 20px; /* Add spacing for mobile */
        }

        .footer-column {
            width: 15%;
            text-align: center;
            margin-bottom: 20px; /* Add spacing for mobile */
        }

        .footer-column h4 {
            color: #fff;
            margin-bottom: 10px;
        }

        .footer-column ul {
            list-style: none;
            padding: 0;
        }

        .footer-column ul li {
            margin-bottom: 5px;
        }

        .footer-column ul li a {
            color: #fff;
            text-decoration: none;
        }

        .footer-column ul li a:hover {
            text-decoration: underline;
        }

        .footer-img {
            height: 25vh;
            max-width: 100%; /* Ensure the image scales properly */
        }

    /* Stack links vertically on mobile */
    @media (max-width: 768px) {
        .mobile-menu-btn {
            display: block;
        }
        .navbar img {
            height: 40px; /* Smaller height for mobile devices */
        }
        .footer-img{
                height: 15vh; /* Reduce image size for mobile */
            }
        .footer-container {
            flex-direction: column; /* Stack columns vertically */
            align-items: center; /* Center-align content */
        }

        .footer-first-column,
        .footer-column {
            width: 100%; /* Full width for each column */
            text-align: center; /* Center-align text */
        }

        .footer-column ul li {
            margin-bottom: 10px; /* Add more spacing for better readability */
        }
    }