body {
    margin: 0;
    font-family: 'Tajawal', sans-serif;
    background: #f5f5f5;
    color: #1a1a1a;
}

/* HERO SECTION */
.hero {
    position: relative;
    height: 100vh;

    /* الصورة الرئيسية */
    background-image: url('hero.png');
    background-size: cover;       /* يجعل الصورة تغطّي الشاشة بالكامل */
    background-position: center;  /* يركز الصورة في النص */
    background-repeat: no-repeat;
    
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* الطبقة الداكنة فوق الصورة */
.hero .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 20, 40, 0.55); /* navy transparent */
    backdrop-filter: brightness(0.8);  /* يعطي وضوح للصورة */
}

/* المحتوى فوق الصورة */
.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 650px;
    padding: 20px;
}

.hero-content .logo {
    width: 150px;
    margin-bottom: 15px;
}

.hero-content h1 {
    font-size: 42px;
    margin-bottom: 10px;
    font-weight: 700;
}

.hero-content p {
    font-size: 20px;
    opacity: 0.95;
    margin-bottom: 30px;
}

/* CTA Button */
.cta {
    background: #f2d74c;
    color: #000;
    padding: 12px 32px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        height: 80vh;
    }
    .hero-content h1 {
        font-size: 28px;
    }
    .hero-content p {
        font-size: 16px;
    }
    .hero-content .logo {
        width: 110px;
    }
}
/* GENERAL SECTIONS */
.section {
    padding: 70px 8%;
    text-align: center;
    background: #fff;
}

.dark {
    background: #0f213b;
    color: white;
}

h2 {
    font-size: 32px;
    margin-bottom: 25px;
}

.desc {
    max-width: 700px;
    margin: auto;
    font-size: 18px;
    line-height: 1.7;
}

/* ICON BOXES */
.icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 40px;
}

.icon-box {
    background: #0f213b;
    color: #fff;
    padding: 20px 30px;
    border-radius: 8px;
    font-size: 18px;
}

/* PRODUCTS */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 35px;
}

.product-box {
    background: #ffffff15;
    padding: 25px;
    border-radius: 8px;
}

.product-box ul {
    list-style: none;
    padding: 0;
    line-height: 1.8;
}

/* FACTORY */
.capabilities {
    list-style: none;
    padding: 0;
    font-size: 20px;
    line-height: 2.2;
}

/* FOOTER */
footer {
    background: #0f213b;
    color: white;
    text-align: center;
    padding: 18px;
}
