.factory-box {
    position: relative;
    width: 100%;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

a.factory-box {
    display: flex;
}

.factory-box .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    transition: background-color 0.3s ease;
    z-index: 1;
}

.factory-box:hover .overlay {
    background-color: rgba(0, 0, 0, 0.7);
}

.factory-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 20px;
}

.factory-name {
    margin: 0;
    transition: transform 0.3s ease;
}

.factory-box:hover .factory-name {
    transform: scale(1.1);
}

.factory-divider {
    width: 0;
    height: 2px;
    background-color: transparent;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.factory-box:hover .factory-divider {
    width: 50px;
    margin: 10px auto;
}

.factory-details {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.factory-box:hover .factory-details {
    opacity: 1;
    max-height: 200px;
}

.factory-details p {
    margin: 5px 0;
    font-size: 14px;
}

.factory-mail-icon {
    position: absolute;
    bottom: 15px;
    right: 15px;
    z-index: 3;
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}