/* Machine Features Background */
#machine {
    position: relative;
    background-color: #000;
    color: white;
    padding-top: 200px;
    padding-bottom: 120px;
    margin-top: 50px;
    z-index: 10;
}

/* Background Image Layer (Standard) */
#machine::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/point_bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

/* Overlay Layer for Text Readability */
#machine::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* Ensure content stays above the background */
#machine .container {
    position: relative;
    z-index: 2;
}

/* Force text color to white for visibility on dark background */
#machine h2,
#machine p,
#machine .text-gray-500 {
    color: white !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    #machine {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}