/* ========================================
   ABOUT PAGE STYLES
   ======================================== */

/* About Section */
.about {
    padding: 6rem 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    perspective: 1000px;
}

/* Flip Card */
.flip-card {
    position: relative;
    width: 100%;
    height: 500px;
    cursor: pointer;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 15px;
    overflow: hidden;
}

.flip-card-front {
    background: #f9fafb;
}

.flip-card-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.flip-card-back {
    background: linear-gradient(135deg, #1a365d 0%, #2d5aa0 100%);
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.experience-content {
    text-align: center;
    color: white;
}

.experience-number {
    font-size: 5rem;
    font-weight: 800;
    color: #ffd700;
    line-height: 1;
    margin-bottom: 1rem;
}

.experience-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-decoration-color: #ffd700;
}

.experience-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 350px;
    margin: 0 auto;
}

.about-badge {
    display: inline-block;
    background: #ffd700;
    color: #1a365d;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #1a365d;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
}

.about-description {
    color: #4a5f7f;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.about-checklist {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.checklist-item i {
    color: #1a365d;
    font-size: 0.9rem;
}

.checklist-item span {
    color: #1a365d;
    font-weight: 500;
    font-size: 0.95rem;
}

.about-cta {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.btn-about-cta {
    background: #1a365d;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    width: fit-content;
}

.btn-about-cta:hover {
    background: #2d5aa0;
    transform: translateX(5px);
}

.btn-about-cta i {
    font-size: 0.85rem;
}

/* Success Metrics */
.success-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: #f9fafb;
    border-radius: 12px;
}

.metric-item {
    text-align: center;
}

.metric-number {
    font-size: 3rem;
    font-weight: 800;
    color: #1a365d;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.metric-number::after {
    content: '%';
    font-size: 2rem;
    margin-left: 0.2rem;
}

.metric-item:nth-child(2) .metric-number::after {
    content: 'x';
}

.metric-label {
    font-size: 0.9rem;
    color: #4a5f7f;
    font-weight: 500;
}

/* Key Differentiators */
.differentiators-section {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid #e5e7eb;
}

.differentiators-section h3 {
    font-size: 2.2rem;
    color: #1a365d;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.differentiators-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.diff-item {
    text-align: center;
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

.diff-item:hover {
    transform: translateY(-5px);
}

.diff-icon {
    width: 70px;
    height: 70px;
    background: #f9fafb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.diff-item:hover .diff-icon {
    background: #ffd700;
    transform: scale(1.1);
}

.diff-icon i {
    font-size: 1.8rem;
    color: #1a365d;
}

.diff-item h4 {
    font-size: 1.1rem;
    color: #1a365d;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.diff-item p {
    font-size: 0.9rem;
    color: #4a5f7f;
    line-height: 1.6;
}

/* Credentials Section */
.credentials-section {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 3rem;
    background: #f9fafb;
    border-radius: 12px;
}

.industry-focus h4,
.certifications h4 {
    font-size: 1.3rem;
    color: #1a365d;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.industry-icons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.industry-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-width: 80px;
}

.industry-item i {
    font-size: 2rem;
    color: #1a365d;
}

.industry-item span {
    font-size: 0.8rem;
    color: #4a5f7f;
    font-weight: 500;
}

.cert-badges {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border-left: 4px solid #ffd700;
}

.cert-badge i {
    font-size: 1.5rem;
    color: #ffd700;
}

.cert-badge span {
    font-size: 0.95rem;
    color: #1a365d;
    font-weight: 600;
}

/* Training Process */
.training-process {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid #e5e7eb;
}

.training-process h3 {
    font-size: 2.2rem;
    color: #1a365d;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    max-width: 250px;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a365d;
}

.step-content h4 {
    font-size: 1.2rem;
    color: #1a365d;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.step-content p {
    font-size: 0.9rem;
    color: #4a5f7f;
    line-height: 1.6;
}

.process-arrow {
    color: #1a365d;
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* About CTA Section */
.about-cta-section {
    background: linear-gradient(135deg, #1a365d 0%, #2d5aa0 100%);
    text-align: center;
}

.about-cta-content {
    max-width: 700px;
    margin: 0 auto;
    color: white;
}

.about-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.about-cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive Design for About Page */
@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .flip-card {
        height: 400px;
    }

    .differentiators-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .credentials-section {
        grid-template-columns: 1fr;
    }

    .industry-icons {
        grid-template-columns: repeat(4, 1fr);
    }

    .process-steps {
        flex-direction: column;
    }

    .process-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    .about {
        padding: 4rem 0;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .flip-card {
        height: 350px;
    }

    .experience-number {
        font-size: 4rem;
    }

    .experience-text {
        font-size: 1.2rem;
    }

    .about-checklist {
        flex-direction: column;
        gap: 1rem;
    }

    .success-metrics {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .differentiators-section h3,
    .training-process h3 {
        font-size: 1.8rem;
    }

    .differentiators-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .industry-icons {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .about-cta-content h2 {
        font-size: 2rem;
    }

    .about-cta-content p {
        font-size: 1rem;
    }
}