body {
    margin: 0;
    font-family: "Tajawal", Arial, sans-serif;
    background: #f4f6f8;
    color: #222;
}

.hero {
    background: linear-gradient(135deg, #0b1f33, #102a44);
    color: #fff;
    text-align: center;
    padding: 50px 20px;
}

.logo {
    width: 120px;
    margin-bottom: 10px;
}

section {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
}

h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #0b1f33;
}

.about p,
.vision p,
.mission p {
    text-align: center;
    line-height: 1.9;
    max-width: 800px;
    margin: auto;
}

.goals ul {
    max-width: 700px;
    margin: auto;
    line-height: 2;
    list-style: disc;
}

/* Brands */
.brands {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
}

.card {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.card img {
    max-width: 110px;
    margin-bottom: 10px;
}

.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    color: #fff;
}

.gold { background: #c9a24d; }
.green { background: #0f7a3b; }
.red { background: #c62828; }
.blue { background: #0b3a82; }

/* Products */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
}

.product {
    background: #fff;
    padding: 18px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Contact */
.contact {
    background: #fff;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* Footer */
footer {
    background: #0b1f33;
    color: #fff;
    text-align: center;
    padding: 15px;
}

/* WhatsApp */
.whatsapp {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #25D366;
    color: #fff;
    padding: 12px 16px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}
