.manufacturing-section {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7)), url('/tmp/img/laser-3.png') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    padding: 75px 0 90px;
}

.manufacturing-container {
    max-width: 1600px;
    padding: 0 50px;
    margin: 0 auto;
}

.manufacturing-title-wrapper {
    text-align: center;
    margin-bottom: 65px;
}

.manufacturing-subtitle {
    color: rgba(255,255,255,0.95);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 20px;
    font-size: 18px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.manufacturing-title {
    color: white;
    font-size: 42px;
    /* max-width: 1000px; */
    margin: 0 auto 35px;
    line-height: 1.3;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
}

.service-card {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 45px 40px;
    min-height: 320px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: all 0.4s ease;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: translateX(-100%);
    transition: 0.6s;
}

.service-card:hover::before {
    transform: translateX(100%);
}

.service-card:hover {
    background: rgba(0, 0, 0, 0.75);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.service-title {
    color: white;
    font-size: 32px;
    margin-bottom: 25px;
    font-weight: 600;
    text-decoration: none;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
    width: 100%;
    text-align: center;
    line-height: 1.2;
}

.service-title a {
    color: white;
    text-decoration: none;
}

.service-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 22px;
    line-height: 1.5;
    margin: 0;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    width: 100%;
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.kservice-text-2 {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

/* Responsive Styles */
@media (max-width: 1400px) {
    .manufacturing-container {
        padding: 0 30px;
    }
    .manufacturing-title {
        font-size: 36px;
    }
    .service-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    .service-description {
        font-size: 20px;
        -webkit-line-clamp: 4;
    }
    .service-card {
        padding: 35px 30px;
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .manufacturing-container {
        padding: 0 20px;
    }
    .service-card {
        padding: 30px 25px;
        min-height: 280px;
    }
    .manufacturing-title {
        font-size: 32px;
    }
    .service-title {
        font-size: 24px;
        margin-bottom: 15px;
    }
    .service-description {
        font-size: 18px;
        -webkit-line-clamp: 5;
        line-height: 1.4;
    }
    .manufacturing-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .manufacturing-container {
        padding: 0 15px;
    }
    .service-card {
        padding: 25px 20px;
        min-height: 260px;
    }
    .manufacturing-title {
        font-size: 28px;
    }
    .service-title {
        font-size: 22px;
        margin-bottom: 12px;
        line-height: 1.3;
    }
    .service-description {
        font-size: 17px;
        -webkit-line-clamp: 6;
        line-height: 1.35;
    }
    .manufacturing-subtitle {
        font-size: 14px;
        letter-spacing: 1.5px;
    }
}

