/* Full-width background wrapper */
.infotech-net-bd-home-header-background {
    width: 100%;
    background-color: #ccf; /* Full width background */
    padding: 80px 20px;
    box-sizing: border-box;
}

/* Content container */
.infotech-net-bd-home-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-home-header-text h1 {
    color: #00f; /* Deep navy blue */
    font-size: clamp(24px, 5vw, 40px); /* Responsive font size */
    margin-bottom: 10px;
}

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

/* Button Styling */
.infotech-net-bd-home-header-button {
    background-color: #f00; /* Red button */
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.infotech-net-bd-home-header-button:hover {
    background-color: #c00; /* Darker red on hover */
    transform: scale(1.05);
    box-shadow: 0 0 10px #f00;
}

.infotech-net-bd-home-header-button:focus {
    outline: 3px solid #fff;
    outline-offset: 2px;
}

/* Responsive Styling */
@media (max-width: 600px) {
    .infotech-net-bd-home-header-background {
        padding: 40px 15px;
    }

    .infotech-net-bd-home-header-text p {
        font-size: 15px;
    }
}