/* About Us Page Specific Styles */
/* Common styles are loaded from pages.css */

/* Mission & Vision Cards */
.mission-vision-section {
    margin-bottom: 50px;
}

.mission-card,
.vision-card {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    height: 100%;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.mission-card {
    border-top: 4px solid #F37039;
}

.vision-card {
    border-top: 4px solid #002245;
}

.mission-card:hover,
.vision-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    transform: translateY(-3px);
}

.mission-card:hover {
    background: #fff5f2;
    border-left-color: #F37039;
}

.vision-card:hover {
    background: #f8f9fa;
    border-left-color: #002245;
}

.mission-card h3,
.vision-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.mission-card h3 {
    color: #F37039;
}

.vision-card h3 {
    color: #002245;
}

.mission-card p,
.vision-card p {
    color: #555;
    font-size: 15px;
    line-height: 1.8;
    text-align: justify;
}

/* What We Do Section */
.what-we-do-section {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 50px;
    transition: all 0.3s ease;
}

.what-we-do-section:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    transform: translateY(-3px);
}

.what-we-do-section h3 {
    color: #002245;
    font-weight: 700;
    margin-bottom: 20px;
}

.what-we-do-section p {
    color: #555;
    font-size: 15px;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 15px;
}

/* Features Grid */
.features-grid {
    margin-bottom: 50px;
}

.feature-item {
    background: #fff;
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}

.feature-item:nth-child(odd) {
    border-top-color: #F37039;
}

.feature-item:nth-child(even) {
    border-top-color: #002245;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.feature-item:nth-child(odd):hover {
    background: #fff5f2;
}

.feature-item:nth-child(even):hover {
    background: #f8f9fa;
}

.feature-item h4 {
    color: #333;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* Values Section - 2 columns */
.values-section {
    margin-bottom: 50px;
}

.value-item {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    margin-bottom: 20px;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    border-left: 4px solid transparent;
}

.value-item:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    transform: translateY(-3px);
    background: #fff5f2;
    border-left-color: #F37039;
}

.value-item i {
    font-size: 28px;
    color: #F37039;
    margin-right: 20px;
    margin-top: 5px;
    flex-shrink: 0;
}

.value-content h4 {
    color: #002245;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.value-content p {
    color: #555;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* Stats Section */
.stats-section {
    background: #f8f9fa;
    padding: 50px 0;
    border-radius: 20px;
    margin-bottom: 50px;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #F37039;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #555;
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .mission-card,
    .vision-card,
    .what-we-do-section {
        padding: 30px 20px;
    }
    
    .value-item {
        flex-direction: column;
        text-align: center;
    }
    
    .value-item i {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .stat-number {
        font-size: 36px;
    }
}
