:root {
    --primary: #6366f1;
    --secondary: #4f46e5;
    --accent: #10b981;
    --bg: #030712;
    --bg-alt: #111827;
    --text: #f9fafb;
    --text-muted: #9ca3af;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    direction: rtl;
}

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

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: rgba(17, 24, 39, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.navbar a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
}

.hero {
    height: 80vh;
    position: relative;
    display: flex;
    align-items: center;
    background-image: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1600&q=80');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, rgba(3,7,18,0.9), transparent);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 span {
    color: var(--primary);
    font-size: 4rem;
}

.btn-primary {
    background: var(--primary);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    margin-left: 1rem;
}

.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 5rem 0;
}

.about-img img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border: 2px solid var(--primary);
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.company-card {
    background: var(--bg-alt);
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s;
}

.company-card:hover {
    transform: translateY(-10px);
}

.company-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-body {
    padding: 2rem;
}

.page-padding {
    padding: 8rem 0 5rem;
}

.stats {
    background: var(--bg-alt);
    padding: 4rem 0;
    display: flex;
    text-align: center;
}

.stat-card h3 {
    font-size: 2.5rem;
    color: var(--accent);
}