
    /* General Footer Styles */
    .footer {
        background-image: url("{{ asset('images/jengo2.png') }}") no-repeat center center;
        background-size: cover;
        background-color: #D6E3F0;
        padding: 30px 10px;
        text-align: center;
        width: 100%;
    }

    
    .footer-container {
        display: flex;
        flex-wrap: nowrap;  /* Adjust or remove if you want wrapping */
        justify-content: space-between;
        max-width: 100%;  /* Change from 1200px to 100% to take full width */
        margin: 0 auto;    /* Ensures it centers but you can adjust or remove to align differently */
    }
    

    .footer h3 {
        font-size: 18px;
        margin-bottom: 10px;
        font-weight: bold;
        color: black;
    }

    /* Make footer items uniform */
    .footer-item {
        display: block;
        color: black;
        margin-bottom: 5px;
        font-weight: normal; /* Ensure they are not bold */
    }
    .footer-item a {
        color: black;
        text-decoration: none;
    }

    .footer-item a:hover {
        text-decoration: underline;
    }

    /* Social Icons */
    .social-icons {
        display: flex;
        /* justify-content: center; */
        gap: 10px;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .social-icons a img {
        width: 25px;
        transition: transform 0.2s ease;
    }

    .social-icons a img:hover {
        transform: scale(1.1);
    }

    /* Subscribe Button */
    .subscribe a {
        display: inline-block;
        background-color: red;
        color: white;
        padding: 10px 15px;
        border-radius: 8px;
        font-size: 14px;
        font-weight: bold;
        text-decoration: none;
        transition: background-color 0.3s, transform 0.2s;
    }

    .subscribe a:hover {
        background-color: darkred;
        transform: scale(1.05);
        color: white !important;
    }


    .subscribe a:active {
        transform: scale(0.95);
    }

    /* Modal Custom Styling */
    .modal-content {
        border-radius: 10px;
        padding: 20px;
    }

    /* Ondoa hover effect kwenye tabs */
    .nav-tabs .nav-link {
        color: black;
        font-weight: bold;
        transition: none; /* Hakikisha hakuna transition effect */
    }

    .nav-tabs .nav-link:hover {
        background-color: transparent; /* Ondoa background change wakati wa hover */
        color: black; /* Acha iwe rangi ya kawaida */
    }

    /* Weka rangi tofauti kwenye tab active */
    .nav-tabs .nav-link.active {
        background-color: #D0ECE7; /* Rangi ya active tab */
        color: white;
        /* border-color: red; */
    }

    /* Footer Bottom */
    .footer-bottom {
        background-color: #738FB1;
        text-align: center;
        padding: 10px;
        font-size: 14px;
        color: white;
    }

    /* Go to Top Button */
    #goToTopBtn {
        display: none;
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: #738FB1;
        color: white;
        border: none;
        padding: 10px 15px;
        font-size: 16px;
        cursor: pointer;
        border-radius: 5px;
        transition: 0.3s;
    }

    #goToTopBtn:hover {
        background-color: #4d6c92;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            text-align: justify;
        }

        .footer-column {
            min-width: 100%;
            margin-bottom: 20px;
        }
    }
