/* ===== About Page Enhanced Styles ===== */

/* ========== About Hero ========== */
.about-hero-section {
    padding: 60px 0 80px;
    background: linear-gradient(135deg, #f8faff 0%, #fff 50%, #eef3ff 100%);
}
.about-hero-content {
    padding-right: 40px;
}
.about-hero-label {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(74, 123, 247, 0.1);
    color: #4A7BF7;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}
.about-hero-title {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.3;
    margin-bottom: 20px;
}
.about-hero-desc {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 24px;
}
.about-hero-badges {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.about-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.about-badge i {
    color: #4A7BF7;
    font-size: 16px;
}
.about-hero-image {
    position: relative;
}
.about-hero-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.about-hero-experience {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: linear-gradient(135deg, #4A7BF7, #6C63FF);
    color: #fff;
    padding: 20px 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(74, 123, 247, 0.3);
}
.about-hero-experience .exp-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
}
.about-hero-experience .exp-text {
    display: block;
    font-size: 12px;
    margin-top: 4px;
    opacity: 0.9;
}

/* ========== Story Content ========== */
.about-story-section {
    background: #fff;
}
.about-story-content {
    font-size: 16px;
    line-height: 1.9;
    color: #444;
}
.about-story-content h2,
.about-story-content h3 {
    color: #1a1a2e;
    margin-top: 32px;
    margin-bottom: 16px;
}

/* ========== Core Strengths ========== */
.about-strengths-section {
    background: #f9fbff;
}
.strength-card {
    padding: 30px 24px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    margin-bottom: 24px;
    transition: all 0.3s ease;
    height: calc(100% - 24px);
}
.strength-card:hover {
    border-color: #4A7BF7;
    box-shadow: 0 8px 30px rgba(74, 123, 247, 0.1);
    transform: translateY(-4px);
}
.strength-icon-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.strength-icon-wrap i {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(74, 123, 247, 0.1), rgba(108, 99, 255, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #4A7BF7;
}
.strength-number {
    font-size: 32px;
    font-weight: 800;
    color: rgba(74, 123, 247, 0.12);
    line-height: 1;
}
.strength-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
}
.strength-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* ========== Counter ========== */
.about-counter-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #4A7BF7, #6C63FF);
}
.about-counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.about-counter-item {
    text-align: center;
    color: #fff;
}
.about-counter-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}
.about-counter-icon i {
    font-size: 22px;
    color: #fff;
}
.about-counter-item h3 {
    font-size: 40px;
    font-weight: 800;
    margin: 0;
    color: #fff;
}
.about-counter-item p {
    font-size: 14px;
    opacity: 0.85;
    margin: 4px 0 0;
}

/* ========== Timeline ========== */
.about-timeline-section {
    background: #fff;
}
.about-timeline {
    position: relative;
    padding-left: 40px;
    max-width: 700px;
    margin: 0 auto;
}
.about-timeline::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #4A7BF7, #6C63FF);
    border-radius: 2px;
}
.timeline-item {
    position: relative;
    padding-bottom: 36px;
    padding-left: 24px;
}
.timeline-item:last-child {
    padding-bottom: 0;
}
.timeline-dot {
    position: absolute;
    left: -34px;
    top: 4px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #4A7BF7;
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px rgba(74, 123, 247, 0.2);
}
.timeline-content {
    background: #f9fbff;
    padding: 20px 24px;
    border-radius: 10px;
    border: 1px solid #eef3ff;
    transition: all 0.3s ease;
}
.timeline-content:hover {
    box-shadow: 0 4px 20px rgba(74, 123, 247, 0.08);
    border-color: rgba(74, 123, 247, 0.2);
}
.timeline-year {
    display: inline-block;
    padding: 3px 12px;
    background: linear-gradient(135deg, #4A7BF7, #6C63FF);
    color: #fff;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 8px;
}
.timeline-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 6px;
}
.timeline-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ========== Certifications ========== */
.about-certifications-section {
    background: #f9fbff;
}
.cert-card {
    text-align: center;
    padding: 24px 16px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}
.cert-card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.06);
    transform: translateY(-3px);
}
.cert-image {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}
.cert-image img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}
.cert-icon-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(74, 123, 247, 0.1), rgba(108, 99, 255, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}
.cert-icon-placeholder i {
    font-size: 32px;
    color: #4A7BF7;
}
.cert-name {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 8px 0 4px;
}
.cert-desc {
    font-size: 12px;
    color: #888;
}

/* ========== Team ========== */
.about-team-section {
    background: #fff;
}
.team-card {
    text-align: center;
    margin-bottom: 30px;
}
.team-card-image {
    width: 100%;
    height: 260px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
}
.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.team-card:hover .team-card-image img {
    transform: scale(1.05);
}
.team-card-info h4 {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 4px;
}
.team-card-info span {
    font-size: 13px;
    color: #888;
}

/* ========== CTA ========== */
.about-cta-section {
    padding: 60px 0;
    background: #fff;
}
.about-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 48px;
    background: linear-gradient(135deg, #1a1a2e, #2d2d44);
    border-radius: 16px;
    gap: 24px;
}
.about-cta-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}
.about-cta-content p {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    margin: 0;
}
.about-cta-btns {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}
.about-cta-btns .btn-outline-light {
    border-color: rgba(255,255,255,0.3);
    color: #fff;
}
.about-cta-btns .btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}

/* ========== Responsive ========== */
@media (max-width: 991px) {
    .about-hero-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    .about-hero-title {
        font-size: 28px;
    }
    .about-counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .about-cta-box {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }
}
@media (max-width: 767px) {
    .about-hero-section {
        padding: 40px 0 60px;
    }
    .about-hero-title {
        font-size: 24px;
    }
    .about-hero-experience {
        bottom: -10px;
        left: 10px;
        padding: 14px 18px;
    }
    .about-hero-experience .exp-number {
        font-size: 28px;
    }
    .about-counter-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-counter-item h3 {
        font-size: 30px;
    }
    .about-timeline {
        padding-left: 30px;
    }
    .timeline-dot {
        left: -24px;
    }
    .about-cta-btns {
        flex-direction: column;
        width: 100%;
    }
    .about-cta-btns .btn {
        width: 100%;
    }
}
