/* ===== Company Overview ===== */
.overview-img-wrapper {
    position: relative;
}

.overview-main-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.overview-experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    padding: 20px 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(102, 46, 145, 0.3);
}

.exp-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
}

.exp-text {
    display: block;
    font-size: 0.78rem;
    font-weight: 500;
    opacity: 0.9;
    line-height: 1.3;
    margin-top: 4px;
}

.overview-content .section-label {
    margin-bottom: 8px;
}

.overview-content h2 {
    font-size: 1.75rem;
    font-weight: 900;
    margin-bottom: 18px;
    line-height: 1.3;
}

.overview-content p {
    color: var(--gray-600);
    font-size: 0.92rem;
    line-height: 1.75;
    margin-bottom: 14px;
}

.overview-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 24px 0 28px;
}

.overview-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--gray-700);
}

.overview-feature .bi {
    color: var(--primary);
    font-size: 1rem;
    flex-shrink: 0;
}

/* ===== Stats Counter ===== */
.stats-counter-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.stats-counter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -5%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
}

.stat-item {
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 2;
}

.stat-icon {
    margin-bottom: 12px;
}

.stat-icon .bi {
    font-size: 2rem;
    opacity: 0.7;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1;
    display: inline;
}

.stat-suffix {
    font-size: 2rem;
    font-weight: 900;
    display: inline;
}

.stat-label {
    display: block;
    font-size: 0.88rem;
    font-weight: 500;
    opacity: 0.8;
    margin-top: 6px;
}

/* ===== Timeline ===== */
.timeline-section {
    background: var(--gray-50);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary), var(--primary-light));
    border-radius: 3px;
}

.timeline-item {
    position: relative;
    margin-bottom: 36px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -33px;
    top: 6px;
    width: 16px;
    height: 16px;
    background: #fff;
    border: 3px solid var(--primary);
    border-radius: 50%;
    z-index: 2;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-dot {
    background: var(--primary);
    box-shadow: 0 0 0 6px rgba(102, 46, 145, 0.15);
}

.timeline-content {
    background: #fff;
    padding: 20px 24px;
    border-radius: 10px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    border-color: var(--primary);
}

.timeline-year {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    color: #fff;
    background: var(--primary);
    padding: 3px 12px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.timeline-content h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.timeline-content p {
    font-size: 0.88rem;
    color: var(--gray-500);
    margin: 0;
    line-height: 1.65;
}

/* ===== Factory Tour ===== */
.factory-card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.factory-card:hover {
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

.factory-img {
    position: relative;
    overflow: hidden;
}

.factory-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.factory-card:hover .factory-img img {
    transform: scale(1.05);
}

.factory-overlay {
    position: absolute;
    inset: 0;
    background: rgba(102, 46, 145, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.factory-card:hover .factory-overlay {
    opacity: 1;
}

.factory-overlay .bi {
    color: #fff;
    font-size: 1.6rem;
}

.factory-body {
    padding: 18px 20px;
}

.factory-body h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.factory-body p {
    font-size: 0.84rem;
    color: var(--gray-500);
    margin: 0;
    line-height: 1.6;
}

/* ===== Why Choose Us ===== */
.why-choose-section {
    background: var(--gray-50);
}

.why-card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 30px 24px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.why-card:hover {
    border-color: var(--primary);
    box-shadow: 0 12px 30px rgba(102, 46, 145, 0.1);
    transform: translateY(-4px);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: rgba(102, 46, 145, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    transition: all 0.3s ease;
}

.why-card:hover .why-icon {
    background: var(--primary);
}

.why-icon .bi {
    font-size: 1.6rem;
    color: var(--primary);
    transition: color 0.3s ease;
}

.why-card:hover .why-icon .bi {
    color: #fff;
}

.why-card h5 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.65;
    margin: 0;
}

/* ===== Industries We Serve ===== */

.industry-card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 24px 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.industry-card:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 25px rgba(102, 46, 145, 0.1);
    transform: translateY(-4px);
}

.industry-icon {
    width: 60px;
    height: 60px;
    background: rgba(102, 46, 145, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    transition: all 0.3s ease;
}

.industry-card:hover .industry-icon {
    background: var(--primary);
}

.industry-icon .bi {
    font-size: 1.4rem;
    color: var(--primary);
    transition: color 0.3s ease;
}

.industry-card:hover .industry-icon .bi {
    color: #fff;
}

.industry-card h6 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.industry-card span {
    font-size: 0.78rem;
    color: var(--gray-500);
    line-height: 1.5;
    display: block;
}

/* ===== Responsive ===== */
@media (max-width: 991.98px) {
    .overview-experience-badge { bottom: -10px; right: -10px; padding: 14px 18px; }
    .exp-number { font-size: 2rem; }
    .overview-content h2 { font-size: 1.5rem; }
    .overview-features { grid-template-columns: 1fr; }
    .section-header-center h2 { font-size: 1.6rem; }
}

@media (max-width: 767.98px) {
    .timeline { padding-left: 30px; }
    .timeline-dot { left: -23px; width: 14px; height: 14px; }
    .stat-number { font-size: 2.2rem; }
    .stat-suffix { font-size: 1.5rem; }
}
