﻿.footer-section {
    background-color: #4b226b; /* Dark purple background */
    color: #fff; /* White text */
    padding: 40px 0;
}

.footer-logo img {
    max-width: 150px;
    height: auto;
}

.footer-description {
    font-size: 14px;
    line-height: 1.6;
    text-align:left !important;
}

.footer-heading {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    color: white !important;
}

.footer-links, .contact-info {
    list-style: none;
    padding: 0;
}

    .footer-links li, .contact-info li {
        margin-bottom: 10px;
    }

    .footer-links a, .contact-info a {
        color: #fff;
        text-decoration: none;
        font-size: 14px;
    }

        .footer-links a:hover, .contact-info a:hover {
            color: #ffc107; /* Highlight color */
        }

    .contact-info i {
        color: #ffc107;
        margin-right: 10px;
        font-size: 16px;
    }

/* Ensures equal spacing between sections */
.footer-section .row > div {
    padding: 20px; /* Adds equal padding to each column */
}

/* Mobile View Adjustments */
@media (max-width: 768px) {
    .footer-description, .footer-links, .contact-info {
        text-align: center;
    }

    .footer-section .row > div {
        padding: 10px; /* Reduces padding for smaller screens */
    }
}
