/* About Us Page Redesign */

:root {
    --au-primary-blue: #2563eb;
    --au-light-bg: #f8fafc;
    --au-mint-bg: #e0f2f1;
    /* Approximate color from screenshot for Why Choose section */
    --au-text-dark: #1e293b;
    --au-text-muted: #64748b;
}

/* Page Wrapper override if needed */
.page-about-us {
    background-color: #fff;
}

/* 1. Hero Section */
.about-hero-section {
    background: linear-gradient(to bottom, #f0f9ff, #ffffff);
    padding: 80px 0 60px;
    text-align: center;
}

.about-hero-badge {
    background: #e0f2fe;
    color: #0284c7;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.about-hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-hero-title span {
    color: var(--au-primary-blue);
}

.about-hero-desc {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--au-text-muted);
}

/* 2. Intro Section */
.about-intro-section {
    padding: 60px 0;
}

.about-intro-badge {
    background: #e0f2fe;
    color: #0369a1;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.about-intro-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--au-text-dark);
}

.about-intro-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    color: var(--au-text-muted);
    font-size: 0.95rem;
}

.about-intro-list li i {
    color: var(--au-primary-blue);
    background: #eff6ff;
    padding: 4px;
    border-radius: 50%;
    margin-right: 10px;
    font-size: 0.8rem;
}

.about-intro-img {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    background: #e0f2fe;
    /* Placeholder color matching screenshot */
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0369a1;
    font-weight: 600;
}

/* 3. Why Choose Us Section (Mint/Greenish BG) */
.about-why-section {
    background-color: #bcece0;
    /* Minty color from screenshot */
    background: linear-gradient(180deg, #d1fae5 0%, #a7f3d0 100%);
    /* Tailwind-ish mint */
    padding: 80px 0;
    text-align: center;
}

.about-why-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #064e3b;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.why-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    text-align: left;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s;
}

.why-card:hover {
    transform: translateY(-5px);
}

.why-icon {
    width: 40px;
    height: 40px;
    background: #eff6ff;
    color: var(--au-primary-blue);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.why-card-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--au-text-dark);
}

.why-card-text {
    font-size: 0.9rem;
    color: var(--au-text-muted);
    line-height: 1.5;
}

/* 4. Stats Section (Solid Blue) */
.about-stats-section {
    background-color: #2563eb;
    /* Primary Blue */
    color: white;
    padding: 60px 0;
}

.stats-row-blue {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    text-align: center;
    gap: 30px;
}

.stat-item-blue-main {
    flex: 1;
    min-width: 200px;
}

.stat-val-white {
    font-size: 3rem;
    font-weight: 800;
    display: block;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label-white {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* 5. Vision Mission Values */
.about-vmv-section {
    padding: 80px 0;
    text-align: center;
    background: white;
}

.vmv-title {
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--au-text-dark);
}

.vmv-subtitle {
    color: var(--au-text-muted);
    margin-bottom: 50px;
}

.vmv-card {
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 40px 30px;
    height: 100%;
    transition: box-shadow 0.3s;
}

.vmv-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.vmv-icon {
    width: 60px;
    height: 60px;
    background: #2563eb;
    color: white;
    border-radius: 16px;
    /* Squircle */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.vmv-card-title {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--au-text-dark);
}

.vmv-card-text {
    font-size: 0.9rem;
    color: var(--au-text-muted);
    line-height: 1.6;
}

/* 6. Founder Quote */
.about-quote-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #ecfeff, #fff);
    /* Cyan tint */
}

.quote-card-center {
    background: white;
    border-radius: 20px;
    padding: 50px;
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.avatar-circle {
    width: 80px;
    height: 80px;
    background: #3b82f6;
    color: white;
    font-size: 2rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.quote-content {
    flex: 1;
}

.quote-icon-mark {
    color: #cbd5e1;
    font-size: 2rem;
    display: block;
    margin-bottom: 15px;
}

.quote-text-main {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--au-text-dark);
    font-style: italic;
    margin-bottom: 15px;
}

.quote-desc {
    font-size: 0.95rem;
    color: var(--au-text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.quote-author {
    font-weight: 800;
    font-size: 1rem;
    color: #0f172a;
    display: block;
}

.quote-role {
    color: var(--au-primary-blue);
    font-size: 0.85rem;
    font-weight: 600;
}

@media(max-width: 768px) {
    .quote-card-center {
        flex-direction: column;
        text-align: left;
        /* Keep left alignment usually looks better for text blocks */
    }

    .stats-row-blue {
        flex-direction: column;
        gap: 40px;
    }
}