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

body {
    font-family: 'Poppins', sans-serif;
    color: #fff;
}

/* Header */
header {
    position: absolute;
    width: 100%;
    padding: 20px;
    z-index: 10;
}

.logo {
    width: 120px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    background: url("hero.jpg") no-repeat center center/cover;
    display: flex;
    align-items: center;
}

/* Overlay */
.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(13, 27, 61, 0.95) 0%,
            rgba(13, 27, 61, 0.7) 50%,
            rgba(13, 27, 61, 0.2) 100%);
}

/* Content */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    margin-left: 50px;
    padding: 40px;

    /* 🔥 fancy glass effect */
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
}

/* Arabic */
/* Arabic block */
.arabic {
    direction: rtl;
    text-align: right;
    margin-bottom: 30px;
    font-family: 'Cairo', sans-serif;
}

/* 🔥 Company name (Arabic) */
.arabic h1 {
    font-size: 44px;
    margin-bottom: 15px;
    font-weight: 700;

    /* SAME GOLD STYLE */
    background: linear-gradient(135deg, #c9a55c, #a98745);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Arabic description */
.arabic .lead {
    font-size: 20px;
    line-height: 2;
    color: #f0f0f0;
}

/* English title (match style) */
.english h2 {
    font-size: 30px;
    margin-top: 25px;
    font-weight: 600;

    background: linear-gradient(135deg, #c9a55c, #a98745);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.english p {
    font-size: 18px;
    line-height: 1.7;
    color: #ddd;
}

/* Features */
.features {
    list-style: none;
    margin: 15px 0;
}

.features li {
    font-size: 17px;
    margin-bottom: 8px;
}

/* Contact box */
.contact-box {
    margin: 25px 0;
    padding: 15px;
    background: rgba(201, 165, 92, 0.1);
    border-left: 4px solid #c9a55c;
    border-radius: 8px;
    font-size: 16px;
}

.contact-box p {
    margin-bottom: 5px;
}

/* Button */
.btn {
    display: inline-block;
    padding: 14px 30px;
    background: linear-gradient(135deg, #c9a55c, #a98745);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    transition: 0.3s;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Responsive */
/* =========================
   MOBILE OPTIMIZATION
========================= */
@media (max-width: 768px) {

    .hero {
        height: auto;
        min-height: 100vh;
        padding: 80px 0;
    }

    .hero-content {
        margin: 0 15px;
        padding: 20px;
        max-width: 100%;

        text-align: center;

        /* stronger background for readability */
        background: rgba(13, 27, 61, 0.75);
        backdrop-filter: blur(8px);
    }

    /* Arabic */
    .arabic {
        text-align: center;
        direction: rtl;
    }

    .arabic h1 {
        font-size: 26px;
        line-height: 1.6;
    }

    .arabic .lead {
        font-size: 16px;
        line-height: 1.8;
    }

    /* English */
    .english h2 {
        font-size: 20px;
    }

    .english p {
        font-size: 15px;
    }

    /* Features */
    .features {
        padding: 0;
    }

    .features li {
        font-size: 14px;
        margin-bottom: 6px;
    }

    /* Contact */
    .contact-box {
        font-size: 14px;
        padding: 10px;
    }

    /* Button */
    .btn {
        width: 100%;
        text-align: center;
        padding: 14px;
        font-size: 15px;
    }

    /* WhatsApp button adjust */
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
}

/* Dark overlay for readability */
.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(13, 27, 61, 0.9), rgba(13, 27, 61, 0.4));
}

/* Content */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Arabic */
.ar-title {
    font-size: 36px;
    margin-bottom: 15px;
    color: #fff;
}

.ar-text {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #ddd;
}

/* English */
.en-title {
    margin-top: 30px;
    font-size: 26px;
    color: #c9a55c;
}

.en-text {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #ddd;
}

/* Features */
.features {
    list-style: none;
    margin-bottom: 20px;
}

.features li {
    margin-bottom: 8px;
}

/* Button */
.btn {
    display: inline-block;
    padding: 12px 25px;
    background: #c9a55c;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s;
}

.btn:hover {
    background: #a98745;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #0d1b3d;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        padding: 60px 20px;
    }

    .ar-title {
        font-size: 28px;
    }

    .en-title {
        font-size: 20px;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;

    display: flex;
    align-items: center;
    gap: 10px;

    background: #25D366;
    color: white;
    padding: 12px 18px;
    border-radius: 50px;

    font-size: 15px;
    text-decoration: none;
    font-weight: 600;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    z-index: 999;

    transition: all 0.3s ease;
}

/* Hover effect */
.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

/* Icon */
.whatsapp-icon {
    font-size: 20px;
}

/* Optional: hide text on small screens */
@media (max-width: 600px) {
    .whatsapp-text {
        display: none;
    }

    .whatsapp-float {
        padding: 14px;
        border-radius: 50%;
    }
}