/* About Page Specific Styles */

/* Company Overview */
.company-overview {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.overview-content h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 30px;
    position: relative;
}

.overview-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2ecc71, #27ae60);
}

.overview-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.overview-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.overview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.overview-image:hover img {
    transform: scale(1.05);
}

/* Mission Vision Values */
.mvv-section {
    padding: 100px 0;
    background: white;
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.mvv-card {
    text-align: center;
    padding: 50px 30px;
    background: #f8f9fa;
    border-radius: 20px;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.mvv-card:hover {
    transform: translateY(-10px);
    border-color: #2ecc71;
    box-shadow: 0 20px 40px rgba(46, 204, 113, 0.1);
}

.mvv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 10px 25px rgba(46, 204, 113, 0.3);
}

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

.mvv-card h3 {
    font-size: 1.75rem;
    color: #333;
    margin-bottom: 20px;
}

.mvv-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #666;
}

.mvv-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.mvv-card ul li {
    padding: 8px 0;
    color: #555;
    font-size: 1rem;
    position: relative;
    padding-left: 25px;
}

.mvv-card ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-weight: bold;
}

/* Timeline Section */
.timeline-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.timeline-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 80px;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #2ecc71, #27ae60);
}

.timeline-item {
    position: relative;
    padding: 40px 0;
}

.timeline-item:nth-child(odd) {
    padding-right: 50%;
    text-align: right;
}

.timeline-item:nth-child(even) {
    padding-left: 50%;
    padding-right: 0;
}

.timeline-date {
    position: absolute;
    top: 45px;
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
}

.timeline-item:nth-child(odd) .timeline-date {
    left: 50%;
    transform: translateX(-50%);
}

.timeline-item:nth-child(even) .timeline-date {
    right: 50%;
    transform: translateX(50%);
}

.timeline-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    margin: 0 40px;
}

.timeline-content::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: white;
    border: 4px solid #2ecc71;
    border-radius: 50%;
    top: 45px;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -50px;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -50px;
}

.timeline-content h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: white;
}

.team-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
}

.team-section .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 60px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    max-width: 800px;
    margin: 0 auto;
}

.team-member {
    background: #f8f9fa;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-align: center;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.member-image {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.team-member h3 {
    font-size: 1.5rem;
    color: #333;
    margin: 25px 20px 10px;
}

.member-role {
    color: #2ecc71;
    font-size: 1.1rem;
    margin: 0 20px 15px;
    font-weight: 500;
}

.member-bio {
    color: #666;
    padding: 0 20px 25px;
    line-height: 1.6;
}

/* Certifications */
.certifications {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    padding: 80px 0;
    color: white;
}

.certifications .section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: white;
}

.cert-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 600px;
    margin: 0 auto;
}

.cert-placeholder {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cert-placeholder p {
    font-size: 1.3rem;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 992px) {
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .timeline::before {
        left: 40px;
    }
    
    .timeline-item {
        padding-left: 80px !important;
        padding-right: 0 !important;
        text-align: left !important;
    }
    
    .timeline-date {
        position: static !important;
        transform: none !important;
        display: inline-block;
        margin-bottom: 20px;
    }
    
    .timeline-content {
        margin: 0;
    }
    
    .timeline-content::before {
        left: -42px !important;
    }
}

@media (max-width: 768px) {
    .company-overview,
    .mvv-section,
    .timeline-section,
    .team-section {
        padding: 60px 0;
    }
    
    .mvv-grid,
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .timeline {
        padding-left: 20px;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        padding-left: 60px !important;
    }
}