:root {
    --primary: #2c3e50;
    --secondary: #3498db;
    --accent: #e74c3c;
    --light: #ecf0f1;
    --dark: #2c3e50;
    --success: #27ae60;
}

.about {
    padding: 20px 0;
    background: #f9f9f9;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.about-hero {
    background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.9)), url('../../common/img/about-hero.avif'); 
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0;
    text-align: center;
}

.section {
    padding: 80px 0;
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
}

h1,
h2,
h3 {
    font-weight: 700;
}

h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

h2 {
    font-size: 2.5rem;
    color: --primary;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.btn {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.mission-vision {
    background: var(--light);
}

.mv-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.mv-box {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.mv-box:hover {
    transform: translateY(-10px);
}

.mv-box i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.vendor-section {
    background: url('../../common/img/vendor-section.avif') no-repeat center center;
    background-size: cover;
    position: relative;
    color: white;
    text-align: center;
}

.vendor-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 62, 80, 0.85);
}

/* Vendor Section */
.vendor-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.vendor-benefits-list {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 30px auto;
}

html[lang="en"] .vendor-benefits-list {
    text-align: left;
}

html[lang="ar"] .vendor-benefits-list {
    text-align: right;
}

.vendor-benefit-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 15px;
    text-align: left;
}

.vendor-icon {
    color: var(--accent);
    margin-right: 10px;
    font-size: 1.2rem;
}


.stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 50px;
}

.stat-box {
    text-align: center;
    padding: 30px;
}

.stat-box h3 {
    font-size: 3rem;
    color: var(--accent);
    margin: 0;
}

.team {
    background: var(--light);
}

.team-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.team-member {
    width: 250px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-img {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.team-info {
    padding: 20px;
    text-align: center;
}

.team-info h4 {
    margin: 0;
    color: var(--primary);
}

.team-info p {
    color: var(--accent);
    font-style: italic;
}

.social-links {
    margin-top: 15px;
}

.social-links a {
    color: var(--primary);
    margin: 0 5px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--accent);
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .mv-box {
        min-width: 100%;
    }
}