body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background: #f5f7fa;
    color: #333;
}

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

/* ===== الهيدر ===== */
header {
    background: #1a1a1a;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.header-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header-logo {
    width: 120px;
    margin-bottom: 10px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

header h1 {
    margin: 0;
    font-size: 32px;
}

header nav {
    text-align: center;
    margin-top: 15px;
}

header nav a {
    color: #fff;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

header nav a:hover {
    color: #00bfff;
}

/* ===== الهيرو ===== */
.hero {
    background: url("../images/AI HANDE BLUE 2.jpg") center/cover no-repeat;
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.hero-overlay {
    background: rgba(0,0,0,0.4);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #00bfff;
}

.hero p {
    font-size: 18px;
}

/* ===== الخدمات ===== */
.services {
    padding: 40px 0;
    background: #fff;
    text-align: center;
}

.services h2 {
    color: #0077cc;
    margin-bottom: 30px;
}

.service-item {
    display: inline-block;
    width: 30%;
    margin: 1%;
    padding: 20px;
    background: #e6f2ff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

/* ===== معرض الصور ===== */
.gallery {
    margin: 50px 0;
    text-align: center;
}

.gallery h2 {
    margin-bottom: 30px;
    color: #0077cc;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-grid img {
    width: 100%;
    border-radius: 15px;
    border: 3px solid #e6f2ff;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    transition: 0.3s;
}

.gallery-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

/* ===== الفوتر ===== */
footer {
    background: #1a1a1a;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

/* ===== متجاوب ===== */
@media (max-width: 768px) {
    .service-item {
        width: 80%;
        margin: 10px auto;
        display: block;
    }
}
