/* --- Variables & Reset --- */
:root {
    --primary-color: #0f172a; /* Deep Navy */
    --accent-color: #ca8a04;  /* Muted Gold */
    --text-dark: #334155;
    --text-light: #94a3b8;
    --white: #ffffff;
    --light-bg: #f8fafc;
    --font-main: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* --- Utility Classes --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.bg-light { background-color: var(--light-bg); }
.bg-dark { background-color: var(--primary-color); color: var(--white); }
.text-center { text-align: center; }
.text-white { color: var(--white); }

.badge {
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-color);
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: inline-block;
}

.badge-light { color: var(--white); opacity: 0.8; }

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
}

.btn-primary:hover { background-color: #a16207; }

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
    margin-left: 10px;
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* --- Header & Nav --- */
.header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.2rem;
}

.logo-img {
    height: 40px;
    border-radius: 4px;
}

.logo-img {
    height: 80px;       /* Increase this number to make them bigger */
    width: auto;        /* Keeps the shape correct so they don't stretch */
    object-fit: contain; /* Ensures the logo fits nicely inside the box */
    display: block;      /* Helps with spacing */
    margin: 0 auto;      /* Centers the logo if it's inside a div */
}
.nav-links {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-links a {
    font-size: 0.95rem;
    color: #cbd5e1;
    transition: color 0.3s;
}

.nav-links a:hover { color: var(--white); }

.btn-nav {
    background-color: rgba(255,255,255,0.1);
    padding: 8px 16px;
    border-radius: 4px;
}

.mobile-menu-icon {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* --- Hero Section --- */
.hero {
    height: 90vh;
    background-image: url('bkg.jpg'); /* Placeholder image of Damascus or office */
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.6));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
}

/* --- About Section --- */
.section-header { margin-bottom: 50px; }

.section-header h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    text-align: center;
    border-top: 4px solid var(--accent-color);
}

.stat-card h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

/* --- Services Section --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e2e8f0;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.service-card .icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* --- Clients Section --- */
.clients-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.client-item {
    /* Removed the gray background and padding for a cleaner logo look */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px; 
    transition: transform 0.3s ease;
}

.client-item:hover {
    transform: scale(1.05); /* Slight zoom effect when hovering */
}

/* --- Team Section --- */
.team-gallery-placeholder {
    margin-top: 40px;
    text-align: center;
}

.img-fluid {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    opacity: 0.9;
}

/* --- Contact Section --- */
.contact-wrapper {
    display: flex;
    gap: 40px;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-info {
    flex: 1;
    padding: 50px;
    background: var(--primary-color);
    color: var(--white);
}

.contact-info h2 { margin-bottom: 20px; color: var(--white); }
.contact-info p { margin-bottom: 30px; opacity: 0.8; }

.contact-item {
    margin-bottom: 25px;
}

.contact-item strong {
    color: var(--accent-color);
    display: block;
    margin-bottom: 5px;
}

.contact-item a { color: var(--white); text-decoration: underline; }

.contact-map {
    flex: 1.5;
    min-height: 400px;
}

.social-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 20px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 20px;
    font-size: 0.9rem;
    transition: background 0.3s;
}

.social-btn:hover { background: rgba(255,255,255,0.1); }

/* --- Footer --- */
.footer {
    background: #020617;
    color: #64748b;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;
}

/* --- Mobile Responsive --- */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--primary-color);
        padding: 20px;
        text-align: center;
    }

    .nav-links.active { display: flex; }
    .mobile-menu-icon { display: block; }
    
    .hero-title { font-size: 2.5rem; }
    
    .about-grid, .contact-wrapper {
        grid-template-columns: 1fr;
        flex-direction: column;
    }
    
    .contact-map { height: 300px; }
}
