/* About Section Redesign Styles */
.about-section-redesign {
    position: relative;
    width: 100%;
    padding: 6rem;
    background: #f8f9fa;
    background: #fff;
}
.about-section-redesign::after{
    content: "";
    display: block;
    clear: both;
}
.about-container-redesign {
    width: 100%;
    min-height: 50px;
}
/* .about-section-redesign {
    padding: 6rem 0;
    background: #f8f9fa;
} */

/* .about-container-redesign {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    min-height: 700px;
} */
/* .about-image-redesign {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
} */
.about-overlay-card-redesign {
    float: left;
    width: 38%;
    width: 26%;
    width: 33%;
    background: rgba(255, 255, 255, 0.90);
    /* backdrop-filter: blur(5px); */
    /* border-radius: 20px; */
    padding: 3rem;
    /* box-shadow: 0 20px 20px rgba(0, 0, 0, 0.2); */
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 2;
    /* transform: translate(21%, 5%); */
}

.about-image-redesign {
    float: right;
    width: 65%;
    z-index: 1;
}

.factory-image-redesign {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* .about-overlay-card-redesign {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    max-width: 90%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 2;
} */

.feature-section-redesign {
    width: 100%;
}

.about-badge-redesign {
    display: inline-block;
    background: linear-gradient(135deg, #0061cf, #004a9f);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.about-title-redesign {
    font-size: 1.75rem;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.3;
    margin-bottom: 2.5rem;
}

.about-description-redesign {
    font-size: 1rem;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 2rem;
}

.about-actions-redesign {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Stats Card */
.about-stats-card-redesign {
    position: relative;
    bottom: auto;
    right: auto;
    background: rgba(0, 97, 207, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: auto;
    margin-top: 2rem;
}

.stats-redesign {
    display: flex;
    gap: 2rem;
}

.stat-item-redesign {
    text-align: center;
}

.stat-number-redesign {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

.stat-label-redesign {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Feature Section */
.feature-section-redesign {
    background: transparent;
}

.feature-grid-redesign {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.feature-item-redesign {
    text-align: center;
    padding: 1.5rem;
    padding: 0rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(0, 97, 207, 0.05);
}

.feature-item-redesign:hover {
    background: rgba(0, 97, 207, 0.05);
    transform: translateY(-5px);
}

.feature-icon-redesign {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0061cf, #004a9f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0.2rem auto 0.2rem auto;
    /* box-shadow: 0 8px 25px rgba(0, 97, 207, 0.3); */
}

.feature-icon-redesign i {
    font-size: 1.5rem;
    color: white;
}

.feature-title-redesign {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.feature-desc-redesign {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.4;
}

.feature-item-redesign h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.feature-item-redesign p {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
}

/* Buttons */
.btn-redesign {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary-redesign {
    background: linear-gradient(135deg, #0061cf, #004a9f);
    color: white;
}

.btn-primary-redesign:hover {
    background: linear-gradient(135deg, #004a9f, #003875);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 97, 207, 0.3);
    color: white;
    text-decoration: none;
}

.btn-outline-redesign {
    background: transparent;
    color: #0061cf;
    border-color: #0061cf;
}

.btn-outline-redesign:hover {
    background: #0061cf;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 97, 207, 0.2);
    text-decoration: none;
}

.capability-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 1rem;
}

.capability-features li {
    position: relative;
    padding: 0.5rem 0 0.5rem 2rem;
    color: var(--gray-700);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.capability-features li a {
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.capability-features li a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.capability-features li a i {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 1rem;
    width: 1.5rem;
    text-align: center;
    transition: color 0.3s ease;
}

.capability-features li a:hover i {
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-section-redesign{
        padding: 20px;
    }
    .about-container-redesign {
        min-height: 500px;
    }
    
    .about-overlay-card-redesign {
        width: 100%;
        padding: 30px 0;
    }
    
    .about-image-redesign {
        position: relative;
        height: 300px;
    }
    
    .feature-grid-redesign {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .capability-features {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .btn-redesign {
        justify-content: center;
    }
    .about-container-redesign {
        padding: 0;
        min-height: 400px;
    }
    .about-image-redesign {
        width: 100%;
        height: auto;
    }
    .factory-image-redesign {
        border-radius: 5px;
    }
}

@media (max-width: 480px) {    
    .feature-grid-redesign {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .feature-icon-redesign {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon-redesign i {
        font-size: 1.5rem;
    }
    
    .about-title-redesign {
        font-size: 1.5rem;
    }
    
    .about-description-redesign {
        font-size: 0.9rem;
    }
}
@media (min-width: 769px) and (max-width: 1199px) { 
    .about-overlay-card-redesign{
        width: 42%;
    }
    .about-image-redesign{
        width: 58%;
        transform: translateY(20%);
    }
    .about-section-redesign{
        padding: 2rem;
    }
    .about-title-redesign{
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
}
@media (min-width: 1200px) and (max-width: 1700px) { 
    .about-section-redesign{
        padding: 2rem;
    }
    .about-overlay-card-redesign {
        padding: 2rem;
    }
}