
                :root {
            --primary-blue: #0569B0;
            --secondary-blue: #2C7BAD;
            --light-blue: #EAF2F7;
            --orange: #F5B034;
            --dark-orange: #E56844;
            --white: #FFFFFF;
            --off-white: #FCF0EC;
            --light-bg: #F2FAFF;
            --dark-text: #502418;
            --section-padding: 80px 5%;
            --border-radius: 17px;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        @font-face {
            font-family: Cairo;
            src: url(/fonts/alfont_com_Cairo-Regular.ttf);
            font-weight: normal;
            font-style: normal;
        }
        body {
            background-color: #fff;
            color: #502418;
            overflow-x: hidden;
            font-family: 'Cairo', sans-serif;
        }
        
        .container {
            max-width: 100%;
            margin: 0 auto;
            position: relative;
        }
        
       
        /* الهيرو section */
        .hero {
            height: 967px;
            background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('/assets/images/hand.png');
            background-size: cover;
            background-position: center;
            position: relative;
            margin-top: -130px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: #ECFFFB;
        }
        
        .hero-content {
            max-width: 900px;
            margin-top: 100px;
        }
        
        .hero h1 {
            font-size: 40px;
            font-weight: 700;
            color: #F5B034;
            margin-bottom: 30px;
        }
        
        .hero p {
            font-size: 32px;
            margin-bottom: 40px;
            line-height: 1.6;
        }
        
        .scroll-down {
            position: absolute;
            bottom: 50px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            color: #ECFFFB;
        }
        
        .scroll-circle {
            width: 101px;
            height: 101px;
            background: #E56844;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 10px;
        }
        
        .scroll-arrow {
            width: 72px;
            height: 72px;
            background: #ECFFFB;
            transform: rotate(180deg);
        }
        
        /* خدمات section */
      /* =========================
   SERVICES – PROFESSIONAL
========================= */

.services {
    padding: 90px 7%;           /* SAFE SPACE from edges */
    background: #ffffff;
}

/* SINGLE SERVICE */
.service {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 70px 0;
}

/* IMAGE – SMALLER & CLEAN */
.service-image {
    flex: 0 0 30%;               /* smaller image area */
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-image img {
    max-width: 260px;
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

/* CONTENT – BIGGER & STRONG */
.service-content {
    flex: 1;
    max-width: 720px;
}

.service-content h2 {
    font-size: 40px;
    font-weight: 700;
    color: #0569B0;
    margin-bottom: 22px;
    line-height: 1.3;
}

.service-content p {
    font-size: 24px;
    line-height: 1.9;
    color: #502418;
}

/* =========================
   AUTO ALTERNATION (RTL/LTR)
========================= */

/* ENGLISH */
html[dir="ltr"] .service:nth-child(even) {
    flex-direction: row-reverse;
}

/* ARABIC */
html[dir="rtl"] .service:nth-child(odd) {
    flex-direction: row-reverse;
}

/* TEXT ALIGN */
html[dir="rtl"] .service-content {
    text-align: right;
}

html[dir="ltr"] .service-content {
    text-align: left;
}

/* SUBTLE SEPARATOR (NO SPACE) */
.service + .service {
    border-top: 1px solid #edf2f6;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1024px) {
    .service {
        flex-direction: column !important;
        text-align: center;
        gap: 30px;
    }

    .service-content {
        text-align: center;
    }

    .service-image img {
        max-width: 220px;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 60px 6%;
    }

    .service {
        padding: 50px 0;
    }

    .service-content h2 {
        font-size: 30px;
    }

    .service-content p {
        font-size: 18px;
    }
}

        /* المنتجات section */
        .products {
            background: #F2FAFF;
            padding: 80px 20px;
            text-align: center;
        }
        
        
        .product-slider {
            display: flex;
            gap: 20px;
            overflow: hidden; /* نخفي أي زيادة */
            position: relative;
        }
        .product-track {
            display: flex;
            gap: 20px;
            animation: scroll 20s linear infinite;
        }
        .product-slider {
            display: flex;
            overflow-x: auto;
            gap: 20px;
            padding: 20px 0;
            scrollbar-width: none;
        }
        
        .product-slider::-webkit-scrollbar {
            display: none;
        }
        
        .product-item {
            min-width: 276px;
            height: 292px;
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            flex-shrink: 0;
        }
        .product-item img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* يخلي الصورة تغطي العنصر */
            border-radius: 10px;
        }

        @keyframes scroll {
            0% {
                transform: translateX(30%);
            }
            100% {
                transform: translateX(10%);
            }
        }
        .product-request {
            padding: 60px 20px;
            text-align: center;
        }
        
        .product-request h3 {
            color: #286F9C;
            font-size: 40px;
            font-weight: 700;
            margin-bottom: 40px;
        }
        
        .form-input {
            background-color: var(--off-white);
            border-radius: 8px;
            padding: 15px 20px;
            border: none;
            text-align: right;
            font-size: 1rem;
            color: #333;
                        font-family: Cairo;

        }
        
        .form-input::placeholder {
            color: #999;
        }
        /* Contact section */
        .contact {
            background: #2C7BAD;
            padding: 10px 20px;
            color: white;
            text-align: center;
        }
        
        .contact-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
    
        
        /* Responsive design */
        @media (max-width: 1024px) {
            .service, .service:nth-child(even) {
                flex-direction: column;
                text-align: center;
            }
            
            .service-content {
                text-align: center;
                margin-top: 30px;
            }
            
            .products h2 {
                font-size: 60px;
            }
        }
        
        @media (max-width: 768px) {
        
            
            .hero h1 {
                font-size: 32px;
            }
            
            .hero p {
                font-size: 24px;
            }
            
            .service-content h2 {
                font-size: 28px;
            }
            
            .service-content p {
                font-size: 18px;
            }
            
            .products h2 {
                font-size: 40px;
            }
        }
