/* Modern About Page Styles */

/* Mission Section */
.mission-section {
    padding: 60px 0 40px 0;
    background: white;
}

.mission-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 24px;
    font-family: 'Poppins', sans-serif;
}

.mission-statement {
    font-size: 28px;
    line-height: 1.6;
    color: #334155;
    margin-bottom: 20px;
    font-weight: 600;
}

.mission-statement .highlight {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.mission-description {
    font-size: 18px;
    color: #64748b;
    line-height: 1.8;
}

/* CEO Message Video Section */
.ceo-message-section {
    padding: 40px 0 60px 0;
    background: white;
}

.ceo-message-content {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.video-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ceo-message-text h2 {
    font-size: 36px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
}

.ceo-message-text > p {
    font-size: 17px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 32px;
}

.ceo-highlights {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 16px;
    color: #334155;
    font-weight: 600;
}

.highlight-item svg {
    flex-shrink: 0;
    color: #6366f1;
    background: #ede9fe;
    padding: 6px;
    border-radius: 8px;
    width: 32px;
    height: 32px;
}

.ceo-message-video {
    position: relative;
}

.video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    background: #000;
    max-width: 640px;
    margin: 0 auto;
    padding-bottom: 56.25%; /* 16:9 aspect ratio for regular videos */
    height: 0;
}

/* Special handling for YouTube Shorts (vertical videos) */
.video-wrapper iframe[src*="WdMoKy3DJOI"] {
    padding-bottom: 177.78%; /* 9:16 aspect ratio for Shorts */
    max-width: 360px; /* Limit width for vertical videos */
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
}

.video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
    max-height: 480px;
    object-fit: contain;
}



/* What We Do Section */
.what-we-do-section {
    padding: 80px 0;
    background: #f8fafc;
}

.section-title-center {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
    font-family: 'Poppins', sans-serif;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #64748b;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.pillar-card {
    background: white;
    padding: 40px 32px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #e2e8f0;
}

.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.15);
    border-color: #6366f1;
}

.pillar-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.pillar-card:hover .pillar-icon {
    transform: scale(1.1) rotate(-5deg);
}

.pillar-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
}

.pillar-card p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.transformation-quote {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    padding: 48px 40px;
    border-radius: 24px;
    text-align: center;
    position: relative;
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.3);
}

.quote-icon {
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 16px;
}

.quote-text {
    font-size: 24px;
    font-weight: 600;
    color: white;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
    font-family: 'Georgia', serif;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.value-card {
    background: #f8fafc;
    padding: 40px 32px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.value-card:hover {
    background: white;
    border-color: #e0e7ff;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.1);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6366f1;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.15);
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.25);
}

.value-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
}

.value-card p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* CTA Section */
.cta-section-about {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    text-align: center;
}

.cta-content-about h2 {
    font-size: 42px;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
    font-family: 'Poppins', sans-serif;
}

.cta-content-about p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .ceo-message-content {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
    
    .ceo-message-text h2 {
        font-size: 36px;
    }
}

@media (max-width: 968px) {
    .ceo-message-section {
        padding: 80px 0;
    }
    
    .ceo-message-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .ceo-message-text {
        text-align: center;
    }
    
    .ceo-highlights {
        align-items: center;
    }
    
    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .section-title,
    .section-title-center {
        font-size: 28px;
    }
    
    .mission-statement {
        font-size: 22px;
    }
    
    .quote-text {
        font-size: 20px;
    }
    
    .ceo-message-text h2 {
        font-size: 32px;
    }
}

@media (max-width: 640px) {
    .mission-section,
    .what-we-do-section,
    .values-section,
    .ceo-message-section {
        padding: 60px 0;
    }
    
    .cta-section-about {
        padding: 80px 0;
    }
    
    .section-title,
    .section-title-center {
        font-size: 24px;
    }
    
    .mission-statement {
        font-size: 20px;
    }
    
    .pillar-card,
    .value-card {
        padding: 32px 24px;
    }
    
    .transformation-quote {
        padding: 32px 24px;
    }
    
    .quote-text {
        font-size: 18px;
    }
    
    .cta-content-about h2 {
        font-size: 32px;
    }
    
    .cta-content-about p {
        font-size: 16px;
    }
    
    .ceo-message-text h2 {
        font-size: 28px;
    }
    
    .ceo-message-text > p {
        font-size: 16px;
    }
    
    .highlight-item {
        font-size: 15px;
    }
    
    .play-button {
        width: 72px;
        height: 72px;
    }
    
    .play-button svg {
        width: 48px;
        height: 48px;
    }
}
