/* ==========================================================================
   আমাদের সম্পর্কে পেজ - মডার্ন ও কর্পোরেট স্টাইল
   ========================================================================== */

.ul-about-page {
    padding: 120px 0 60px;
    background: var(--ast-global-color-5);
}

/* হিরো সেকশন */
.about-hero {
    text-align: center;
    margin-bottom: 60px;
}
.about-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}
.about-hero p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* স্ট্যাটস গ্রিড */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}
.stat-card {
    background: var(--ast-global-color-4);
    border-radius: 24px;
    padding: 32px 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s;
}
.stat-card:hover {
    transform: translateY(-5px);
}
.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--ast-global-color-0);
    font-family: 'Inter', sans-serif;
}
.stat-label {
    font-size: 1rem;
    color: var(--ast-global-color-2);
    margin-top: 8px;
}

/* মিশন ও ভিশন */
.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}
.mv-card {
    background: var(--ast-global-color-4);
    border-radius: 28px;
    padding: 40px 32px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}
.mv-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}
.mv-card h3 {
    margin-bottom: 16px;
}
.mv-card p {
    color: var(--ast-global-color-3);
    line-height: 1.6;
}

/* আমাদের কাহিনী */
.story-section {
    margin-bottom: 80px;
}
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.story-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}
.story-content p {
    margin-bottom: 16px;
    color: var(--ast-global-color-3);
    line-height: 1.7;
}
.signature {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 2px solid var(--ast-global-color-6);
    font-style: italic;
    color: var(--ast-global-color-0);
}
.story-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

/* কোর ভ্যালু */
.values-section {
    margin-bottom: 60px;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.value-card {
    background: var(--ast-global-color-4);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: transform 0.3s;
}
.value-card:hover {
    transform: translateY(-5px);
}
.value-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}
.value-card h3 {
    margin-bottom: 12px;
}

/* টিম সেকশন */
.team-section {
    margin-bottom: 60px;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.team-card {
    background: var(--ast-global-color-4);
    border-radius: 24px;
    padding: 32px 24px;
    text-align: center;
    transition: transform 0.3s;
}
.team-card:hover {
    transform: translateY(-5px);
}
.team-img {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: var(--ast-global-color-0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    color: white;
}
.team-card h3 {
    font-size: 1.2rem;
    margin-bottom: 6px;
}
.team-role {
    color: var(--ast-global-color-1);
    font-weight: 600;
    margin-bottom: 12px;
}
.team-card p {
    font-size: 0.85rem;
    color: var(--ast-global-color-3);
}

/* লাইসেন্স */
.license-section {
    margin-bottom: 60px;
}
.license-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.license-card {
    background: var(--ast-global-color-4);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
}
.license-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}
.license-card h3 {
    margin-bottom: 10px;
}
.license-card p {
    font-size: 0.85rem;
    color: var(--ast-global-color-3);
}

/* টাইমলাইন */
.timeline-section {
    margin-bottom: 60px;
}
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 30px;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--ast-global-color-0);
}
.timeline-item {
    position: relative;
    margin-bottom: 40px;
}
.timeline-dot {
    position: absolute;
    left: -26px;
    top: 8px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--ast-global-color-1);
    border: 2px solid var(--ast-global-color-4);
    z-index: 1;
}
.timeline-content {
    background: var(--ast-global-color-4);
    border-radius: 16px;
    padding: 20px 24px;
    box-shadow: var(--shadow-sm);
}
.timeline-year {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--ast-global-color-1);
    margin-bottom: 6px;
}
.timeline-content h4 {
    margin-bottom: 8px;
}
.timeline-content p {
    color: var(--ast-global-color-3);
    font-size: 0.9rem;
}

/* রেসপন্সিভ */
@media (max-width: 1024px) {
    .stats-grid,
    .values-grid,
    .team-grid,
    .license-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .ul-about-page {
        padding: 100px 0 40px;
    }
    .about-hero h1 {
        font-size: 2rem;
    }
    .stats-grid,
    .mission-vision-grid,
    .story-grid,
    .values-grid,
    .team-grid,
    .license-grid {
        grid-template-columns: 1fr;
    }
    .timeline {
        padding-left: 20px;
    }
    .timeline-dot {
        left: -21px;
    }
}
