:root {
    --primary: #0077b6;
    --secondary: #00b4d8;
    --accent: #90e0ef;
    --dark-900: #0f172a;
    --dark-800: #1e293b;
    --light-100: #f8fafc;
    --light-200: #f1f5f9;
    --glass: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    --shadow-soft: 0 10px 40px -10px rgba(0, 0, 0, 0.1);
}
.about-page {
    font-family: 'Cairo', sans-serif;
    overflow-x: hidden;
    background-color: #fdfdfd;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.about-hero {
    position: relative;
    padding: 120px 0 80px;
    background: radial-gradient(circle at top right, rgba(0, 119, 182, 0.05), transparent 60%),
        radial-gradient(circle at bottom left, rgba(0, 180, 216, 0.05), transparent 60%);
    overflow: hidden;
}
.about-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    filter: blur(120px);
    opacity: 0.1;
    border-radius: 50%;
    z-index: 0;
    animation: floating 10s ease-in-out infinite;
}
@keyframes floating {
    0%,
    100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-30px, 50px);
    }
}
.about-breadcrumb {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #64748b;
    margin-bottom: 40px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    width: fit-content;
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
}
.about-breadcrumb a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s;
}
.about-breadcrumb a:hover {
    color: var(--dark-900);
}
.about-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.about-kicker {
    display: inline-block;
    color: var(--primary);
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 15px;
    position: relative;
    padding-right: 40px;
}
.about-kicker::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 30px;
    height: 2px;
    background: var(--primary);
}
.about-title {
    font-size: 48px;
    font-weight: 900;
    color: var(--dark-900);
    line-height: 1.2;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--dark-900) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.about-subtitle {
    font-size: 18px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 90%;
}
.about-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}
.about-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    color: var(--dark-800);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}
.about-chip:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
    color: var(--primary);
}
.about-chip i {
    color: var(--secondary);
}
.about-hero-cta {
    display: flex;
    gap: 20px;
}
.btn-primary,
.btn-secondary {
    padding: 14px 30px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    box-shadow: 0 10px 20px -5px rgba(0, 119, 182, 0.4);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(0, 119, 182, 0.5);
}
.btn-secondary {
    background: #fff;
    color: var(--dark-900);
    border: 1px solid #e2e8f0;
}
.btn-secondary:hover {
    background: var(--light-100);
    border-color: var(--dark-900);
}
.about-hero-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 30px;
    padding: 40px;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}
.about-hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}
.about-hero-card-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 800;
    color: var(--dark-900);
    margin-bottom: 10px;
}
.about-hero-card-note {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 30px;
}
.about-promise {
    display: grid;
    gap: 20px;
    margin-bottom: 30px;
}
.promise-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s;
}
.promise-item:hover {
    transform: translateX(-5px);
}
.p-icon {
    width: 32px;
    height: 32px;
    background: var(--light-200);
    color: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.p-text {
    font-weight: 600;
    color: var(--dark-800);
}
.about-hero-foot {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}
.about-foot-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
}
.about-section {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 120px;
}

.about-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px 30px;
    border: 1px solid var(--light-200);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -10px rgba(0, 119, 182, 0.15);
    border-color: rgba(0, 119, 182, 0.2);
}

.about-card-title {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 24px;
    font-weight: 800;
    color: var(--dark-900);
    margin-bottom: 20px;
}

.about-card-title i {
    color: #cbd5e1;
    font-size: 28px;
    transition: color 0.4s;
}

.about-card:hover .about-card-title i {
    color: var(--primary);
}

.about-card-text {
    font-size: 16px;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 30px;
}

.about-card-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.about-badge {
    background: var(--light-100);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--dark-800);
    transition: all 0.3s;
}

.about-card:hover .about-badge {
    background: var(--primary);
    color: #fff;
}

.about-timeline {
    position: relative;
    padding: 20px 0;
    max-width: 800px;
    margin: 0 auto 120px;
}

.about-timeline-head {
    text-align: center;
    margin-bottom: 60px;
}

.about-h2 {
    font-size: 36px;
    font-weight: 900;
    color: var(--dark-900);
    margin-bottom: 15px;
}

.about-lead {
    font-size: 18px;
    color: #64748b;
}

.timeline {
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    right: 24px;
    width: 2px;
    height: 100%;
    background: var(--light-200);
    z-index: 0;
}

.timeline-item {
    background: #fff;
    border: 1px solid var(--light-200);
    border-radius: 16px;
    padding: 20px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
    transition: all 0.3s;
    text-align: right;
}

.timeline-item:hover {
    border-color: var(--primary);
    transform: translateX(-5px);
}

.timeline-item[aria-expanded="true"] {
    background: var(--dark-900);
    border-color: var(--dark-900);
    color: #fff;
}

.t-dot {
    width: 40px;
    height: 40px;
    background: var(--light-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--primary);
    flex-shrink: 0;
    border: 2px solid #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.timeline-item[aria-expanded="true"] .t-dot {
    background: var(--primary);
    color: #fff;
    border-color: var(--dark-800);
}

.t-title {
    flex: 1;
    font-weight: 700;
    font-size: 18px;
}

.timeline-item i {
    transition: transform 0.3s;
}

.timeline-item[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.timeline-panel {
    background: var(--light-100);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    margin-right: 30px;
    border-right: 3px solid var(--primary);
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
    display: none;
    animation: slideDown 0.4s ease-out;
}

.timeline-panel[style*="block"] {
    display: block !important;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-stats {
    background: var(--dark-900);
    border-radius: 30px;
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.about-stats::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary), transparent 70%);
    opacity: 0.2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
}
.stat-card {
    text-align: center;
}

.stat-top {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.stat-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon svg {
    fill: var(--accent);
}

.stat-kicker {
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.stat-value {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 10px;
    background: linear-gradient(to bottom, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 16px;
    color: #94a3b8;
}

.about-cta {
    margin-top: 100px;
    text-align: center;
    background: var(--light-100);
    border-radius: 24px;
    padding: 60px 20px;
    border: 1px solid #e2e8f0;
}

.about-cta-title {
    font-size: 32px;
    font-weight: 900;
    color: var(--dark-900);
    margin-bottom: 15px;
}

.about-cta-sub {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 40px;
}

.about-cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

@media (max-width: 992px) {
    .about-hero-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-title {
        font-size: 36px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        display: none;
    }

    .timeline-item {
        text-align: center;
        flex-direction: column;
    }

    .timeline-panel {
        margin-right: 0;
        border-right: none;
        border-top: 3px solid var(--primary);
    }

    .about-cta-actions {
        flex-direction: column;
    }
}