/* Header Text Styling */
.infotech-net-bd-services-header-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #000; /* fallback text color */
    padding-top: 50px; /* adjust the value as needed */
}

.infotech-net-bd-services-header-text h2 {
    color: #00f; /* Deep navy blue */
    font-size: clamp(24px, 5vw, 40px); /* Responsive font size */
    margin-bottom: 10px;
}

.infotech-net-bd-services-header-text p {
    font-size: 20px;
    margin-bottom: 20px;
}

/* Services Section Styling */
.infotech-net-bd-services {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 50px;
    flex-wrap: wrap;
}

.infotech-net-bd-service-card {
    background-color: #f00; /* Red background for cards */
    padding: 20px;
    color: #fff;
    border-radius: 5px;
    width: 200px;
    text-align: center;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.infotech-net-bd-service-card:hover {
    background-color: #c00; /* Darker red on hover */
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .infotech-net-bd-services {
        flex-direction: column;
        align-items: center;
    }

    .infotech-net-bd-service-card {
        width: 80%;
        max-width: 300px;
    }
}