/* industry css */

.industries-banner {
    position: relative;
    background-image: url("../assets/img/industries-bg1.jpg");
    background-size: cover;
    background-position: center;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.industries-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.banner-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.banner-content h1 {
    margin-top: 10px;
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
}




.Worked {
    padding: 50px 80px;
    background-color: #f8f9fa;
    text-align: center;
}

.Worked h3 {
    font-size: 2rem;
    color: #162d42;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.industries {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.industry {
    box-sizing: border-box;
    flex: 0 0 200px;
    height: 180px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px 10px;
    width: 100%;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.industry:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.industry img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 15px;
}

.industry p {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
}

.industry a {
    text-decoration: none;
}



/* industrial solutions css */

.industrial-solutions {
    padding: 60px 80px;
    background-color: rgba(224, 240, 243, 0.879);
    text-align: center;
}

.industrial-solutions h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #162d42;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.solutions {
    display: flex;
    flex-direction: row;
    gap: 30px;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
}

.sol {
    text-decoration: none;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 250px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.sol:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.sol img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.sol div {
    padding: 15px;
    text-decoration: none;
    color: #162d42;
    font-weight: bold;
    font-size: 1rem;
    transition: color 0.3s ease;
}


.sol div:hover {
    color: #C28B28;
}


.industry,
.sol {
    will-change: transform;
    backface-visibility: hidden;
}