/* About Page Styles */

/* Company Story Section */
.company-story-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.story-content {
    padding-right: 2rem;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    align-items: stretch;
}

.story-stats .stat-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 140px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.story-stats .stat-item:hover {
    transform: translateY(-5px);
}

.story-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #228B70;
    margin-bottom: 0.5rem;
    min-height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-stats .stat-label {
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 600;
}

.story-images {
    padding-left: 2rem;
}

.video-container {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 5rem 0;
    background: white;
}

.mission-card,
.vision-card {
    background: #f8f9fa;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px);
    border-color: #228B70;
}

.card-icon {
    width: 80px;
    height: 80px;
    background: #228B70;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.card-icon i {
    font-size: 2rem;
    color: white;
}

.mission-card h3,
.vision-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.mission-card p,
.vision-card p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Values Section */
.values-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.value-item {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #228B70, #1C7D64);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 1.8rem;
    color: white;
}

.value-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.value-item p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 0;
}

/* About Who Section */
.about-who-section {
    padding: 5rem 0;
    background: #228B70;
}

.about-who-section .section-title {
    color: white;
}

.about-who-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.about-who-section .user-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.about-who-section .user-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem 1rem;
    text-align: center;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
}

.about-who-section .user-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    color: white;
    text-decoration: none;
}

.about-who-section .user-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.about-who-section .user-icon i {
    font-size: 1.5rem;
    color: white;
}

.about-who-section .user-card:hover .user-icon {
    background: #ffc107;
    transform: scale(1.1);
}

.about-who-section .user-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.about-who-section .user-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

/* About CTA Section */
.about-cta-section {
    padding: 4rem 0;
    background: #228B70;
}

.about-cta-section .cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.about-cta-section .cta-text h2 {
    color: white !important;
    font-size: 2rem !important;
    font-weight: 700 !important;
    margin-bottom: 1rem !important;
}

.about-cta-section .cta-text p {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.1rem !important;
    margin-bottom: 0 !important;
}

.about-cta-section .cta-button {
    flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .story-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .story-images {
        padding-left: 0;
    }
    
    .video-container {
        height: 300px;
    }
    
    .story-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .about-who-section .user-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .about-cta-section .cta-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .about-hero-title {
        font-size: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .about-who-section .user-grid {
        grid-template-columns: 1fr;
    }
    
    .story-stats .stat-item,
    .value-item {
        padding: 1.5rem 1rem;
    }
}
