:root {
    --primary: #344998;
    --primary-dark: #263570;
    --secondary: #f5f7fa;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --white: #fff;
    --gradient: linear-gradient(135deg, #344998, #263570);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}



/* ===== Hero ===== */
.hero-about {
    background: var(--gradient);
    color: #fff;
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

.hero-shape {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 80px;
    background: #fff;
    clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 100%);
}

/* ===== Story ===== */
.story-section {
    padding: 100px 0;
    background: #fff;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-label {
    display: inline-block;
    background: rgba(52, 73, 152, 0.1);
    color: var(--primary);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    font-weight: 900;
}

.story-text p {
    line-height: 1.9;
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 1.05rem;
}

.story-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.stat-box {
    text-align: center;
}

.stat-box h3 {
    font-size: 2.5rem;
    color: var(--primary);
    font-weight: 900;
}

.stat-box p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 5px;
}

.story-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* ===== Mission & Vision ===== */
.mission-vision {
    padding: 80px 0;
    background: var(--secondary);
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mv-card {
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.mv-icon i {
    font-size: 2rem;
    color: #fff;
}

.mv-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.mv-card p {
    line-height: 1.8;
    color: var(--text-light);
}

/* ===== Values ===== */
.values-section {
    padding: 100px 0;
    background: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    background: var(--secondary);
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    transition: 0.3s;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon i {
    color: #fff;
    font-size: 1.5rem;
}

.value-card h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ===== Team ===== */
.team-section {
    padding: 100px 0;
    background: var(--secondary);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.team-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.team-card h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 800;
}

.team-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===== CTA ===== */
.cta-section {
    padding: 100px 0;
    background: var(--gradient);
    color: #fff;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 900;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.btn-cta {
    padding: 18px 50px;
    border: none;
    background: #fff;
    color: var(--primary);
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: 0.3s;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ===== Footer ===== */
.main-footer {
    background: #1a1a2e;
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.footer-content p {
    opacity: 0.7;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {

    .story-grid,
    .mv-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .main-nav {
        display: none;
    }
}