.netsolution-com-bd-footer-area {
    background-color: #ff00cc; /* Vibrant background color */
    color: #fff;
    padding: 20px 0;
}

.netsolution-com-bd-footer-container {
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.netsolution-com-bd-footer-section {
    flex-basis: 30%; /* Flexible width */
    margin: 10px 0; /* Add margin for spacing */
}

.netsolution-com-bd-footer-section h2 {
    font-size: 18px;
    margin-bottom: 15px;
    border-bottom: 2px solid #fff;
    padding-bottom: 10px;
}

.netsolution-com-bd-footer-section p,
.netsolution-com-bd-footer-section ul {
    font-size: 14px;
}

.netsolution-com-bd-footer-section ul {
    list-style: none;
    padding: 0;
}

.netsolution-com-bd-footer-section ul li {
    margin-bottom: 10px;
}

.netsolution-com-bd-footer-section ul li a {
    color: #fff;
    text-decoration: none; /* No underline for general links */
    transition: color 0.3s, background-color 0.3s, border 0.3s; /* Smooth transition for border */
}

.netsolution-com-bd-footer-section ul li a:hover {
    color: #ffcc00; /* Change text color on hover */
    background-color: rgba(255, 255, 255, 0.3); /* Slightly more pronounced background */
    border-bottom: 1px solid #ffcc00; /* Border on hover */
}

/* Specific styles for email and phone links */
.netsolution-com-bd-footer-section-contact a {
    color: #fff; /* Ensure initial color is white */
    text-decoration: none; /* No underline for email and phone */
    transition: color 0.3s; /* Smooth transition for color */
}

.netsolution-com-bd-footer-section-contact a:hover {
    color: #fff; /* Keep the color white on hover */
}

/* Media Query for Responsiveness */
@media (max-width: 768px) {
    .netsolution-com-bd-footer-section {
        flex-basis: 100%; /* Full width on smaller screens */
        text-align: center; /* Center text for better appearance */
        margin: 2px 0; /* Further reduced margin for better spacing */
        padding: 0 10px; /* Less padding left and right for mobile view */
    }

    .netsolution-com-bd-footer-section h2 {
        font-size: 16px; /* Slightly reduce font size */
    }

    .netsolution-com-bd-footer-section p,
    .netsolution-com-bd-footer-section ul {
        font-size: 12px; /* Slightly reduce font size */
    }
}