/* About Page Specific Styles */
.hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
                 url('../assets/hero3.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 200px 0;
    text-align: center;
    margin-bottom: 40px;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Company Overview Section */
.company-overview {
    background-color: var(--light);
}

.stat-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition-speed) ease;
    padding: 1.5rem;
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--secondary);
    margin: 0;
    font-size: 1.1rem;
}

/* Expertise Section */
.expertise-section {
    padding: 5rem 0;
}

.product-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    display: flex;
    align-items: center;
}

.product-list li i {
    color: var(--success);
    margin-right: 10px;
}

/* Global Presence Section */
.global-presence {
    background-color: var(--light);
}

.country-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.badge {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all var(--transition-speed) ease;
}

.badge:hover {
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Advantage Section */
.advantage-section {
    padding: 5rem 0;
}

.advantage-section ul {
    padding-left: 1.5rem;
}

.advantage-section li i {
    color: var(--success);
    margin-right: 10px;
}

/* Mission Section */
.mission-section {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../images/mission-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--text-light);
    padding: 6rem 0;
}

.mission-section .lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* Quality Section */
.quality-section img {
    transition: transform var(--transition-speed) ease;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.quality-section img:hover {
    transform: scale(1.05);
}

/* Add more images to sections */
.company-overview img,
.expertise-section img,
.global-presence img,
.advantage-section img,
.mission-section img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}