﻿/* Production Overview */
.production-overview-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

    .production-overview-image .main-img {
        width: 100%;
        border-radius: 15px;
    }

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: -10px;
    width: 120px;
    height: 120px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

    .experience-badge span {
        font-size: 32px;
        font-weight: 700;
        line-height: 1;
    }

    .experience-badge p {
        font-size: 14px;
        margin: 0;
    }

.production-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

.stat-item {
    flex: 1;
    min-width: 120px;
}

    .stat-item h3 {
        font-size: 32px;
        font-weight: 700;
        color: var(--primary-color);
        margin-bottom: 5px;
    }

    .stat-item p {
        font-size: 14px;
        color: var(--text-secondary);
        margin: 0;
    }

/* Process Timeline */
.process-timeline {
    position: relative;
    padding: 40px 0;
}

.process-item {
    display: flex;
    margin-bottom: 50px;
    position: relative;
}

    .process-item:last-child {
        margin-bottom: 0;
    }

.process-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 30px;
    flex-shrink: 0;
    position: relative;
}

    .process-icon i {
        font-size: 32px;
        color: #fff;
    }

.process-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.process-content {
    flex: 1;
}

    .process-content h3 {
        font-size: 22px;
        margin-bottom: 10px;
        color: var(--text-color);
    }

    .process-content p {
        color: var(--text-secondary);
        margin: 0;
    }

/* Machinery Card */
.machinery-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--border-color);
}

    .machinery-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    }

.machinery-image {
    height: 200px;
    overflow: hidden;
}

    .machinery-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.5s ease;
    }

.machinery-card:hover .machinery-image img {
    transform: scale(1.05);
}

.machinery-content {
    padding: 20px;
}

    .machinery-content h3 {
        font-size: 20px;
        margin-bottom: 10px;
        color: var(--text-color);
    }

    .machinery-content p {
        color: var(--text-secondary);
        margin-bottom: 15px;
    }

.machinery-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .machinery-features li {
        margin-bottom: 8px;
        display: flex;
        align-items: center;
    }

        .machinery-features li i {
            color: var(--primary-color);
            margin-right: 10px;
        }

/* Quality Control */
.quality-control-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

    .quality-control-image img {
        width: 100%;
        border-radius: 15px;
    }

.quality-features {
    margin-top: 30px;
}

.quality-feature-item {
    display: flex;
    margin-bottom: 20px;
}

    .quality-feature-item:last-child {
        margin-bottom: 0;
    }

    .quality-feature-item .icon {
        width: 50px;
        height: 50px;
        background: var(--primary-color);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 20px;
        flex-shrink: 0;
    }

        .quality-feature-item .icon i {
            font-size: 20px;
            color: #fff;
        }

    .quality-feature-item .content {
        flex: 1;
    }

    .quality-feature-item h4 {
        font-size: 18px;
        margin-bottom: 5px;
        color: var(--text-color);
    }

    .quality-feature-item p {
        color: var(--text-secondary);
        margin: 0;
    }

/* R&D Section */
.rd-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

    .rd-image img {
        width: 100%;
        border-radius: 15px;
    }

.rd-features {
    margin-top: 30px;
}

.rd-feature-item {
    display: flex;
    margin-bottom: 20px;
}

    .rd-feature-item:last-child {
        margin-bottom: 0;
    }

    .rd-feature-item .icon {
        width: 50px;
        height: 50px;
        background: var(--primary-color);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 20px;
        flex-shrink: 0;
    }

        .rd-feature-item .icon i {
            font-size: 20px;
            color: #fff;
        }

    .rd-feature-item .content {
        flex: 1;
    }

    .rd-feature-item h4 {
        font-size: 18px;
        margin-bottom: 5px;
        color: var(--text-color);
    }

    .rd-feature-item p {
        color: var(--text-secondary);
        margin: 0;
    }

/* Responsive Styles */
@media (max-width: 991px) {
    .process-icon {
        width: 60px;
        height: 60px;
    }

        .process-icon i {
            font-size: 24px;
        }
}

@media (max-width: 767px) {

    .process-item {
        flex-direction: column;
    }

    .process-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .quality-feature-item,
    .rd-feature-item {
        flex-direction: column;
    }

        .quality-feature-item .icon,
        .rd-feature-item .icon {
            margin-right: 0;
            margin-bottom: 15px;
        }
}
