/* style/link-to-work.css */

.LinkToWork {
    width: 100%;
    height: 330px;
    overflow: hidden;
    background-image: url("../images/explore_our_projects.png");
    background-size: cover; /* Ensure the background image covers the container */
    background-position: center; /* Center the background image */
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box; /* Recommended */
    padding: 20px; /* Add some padding if needed */
}

.Frame111 {
    width: 90%; /* Adjust width as needed */
    max-width: 912px;
    height: auto; /* Adjust height as needed */
    background: #DFF5FF;
    overflow: hidden;
    border-radius: 10px;
    padding: 10px 20px; /* Add padding inside the box */
    box-sizing: border-box;
}

.ExploreOurProjectsAcrossDiverseIndustries {
    color: black;
    font-size: 36px;
    font-family: Montserrat, sans-serif;
    font-weight: 400;
    line-height: 1.2; /* Adjusted line-height for better flow */
    letter-spacing: 1px;
    text-align: center;
    word-wrap: break-word;
}

/* Optional: Add media queries for responsiveness */
@media screen and (max-width: 768px) {
    .ExploreOurProjectsAcrossDiverseIndustries {
        font-size: 24px;
        line-height: 1.3;
    }
    .Frame111 {
        padding: 15px;
    }
    .LinkToWork {
        height: auto; /* Adjust height for smaller screens */
        padding: 30px 10px;
    }
}