
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Cairo', sans-serif;
        }
        
        :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;
        }
        
         body {
    background-color: #fff;
    color: #502418;
    overflow-x: hidden;
 /* Adjust according to your header height */
}
        .container {
            max-width: 100%;
            margin: 0 auto;
            position: relative;
        }
        
        /* شريط التنقل */
        .logo {
            width: 180px;
            height: 80px;
            position: relative;
            background-image:url(assets/images/Layer_1.png);
            border-radius: var(--border-radius);
            display: flex;
            justify-content: center;
            align-items: center;
        }
       
        /* الهيرو section */
        .hero {
            height: 1006px;
            background-image:url(assets/images/Rectangle\ 134.png);
            background-size: cover;
            background-position: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: #ECFFFB;
            padding: 0 20px;
        }
        
        .hero-content {
            max-width: 900px;
        }
        
        .hero h1 {
            font-size: 42px;
            font-weight: 700;
            color: #F5B034;
            margin-bottom: 40px;
            line-height: 1.4;
        }
        
        .hero p {
            font-size: 28px;
            font-weight: 700;
            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);
        }
        
        /* فواصل */
        .divider {
            height: 17px;
            background: #F2A437;
            margin: 40px 0;
        }
        
        /* قسم الشركاء */
        .partners {
            padding: 80px 20px;
        }
        
        .partners-section {
            background: white;
            border-radius: 30px;
            border: 4px #F5B034 solid;
            padding: 40px;
            margin-bottom: 60px;
            position: relative;
        }
        
        .partners-title {
            text-align: right;
            color: #072380;
            font-size: 30px;
            font-weight: 700;
            margin-bottom: 30px;
        }
        
        .partners-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 30px;
            justify-items: center;
            align-items: center;
        }
        
        .partner-logo {
            width: 180px;
            height: 120px;
            background: #f8f8f8;
            border-radius: 10px;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .partner-logo:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .partner-logo img {
            max-width: 80%;
            max-height: 80%;
        }
      .local-clients {
    padding: 80px 20px;
    text-align: center;
}

.local-clients h2 {
    color: #072380;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 40px;
}

/* GRID: always side by side */
.clients-grid {
    display: flex; /* use flex to keep them in a row */
    justify-content: center;
    flex-wrap: wrap; /* allow wrapping if too small */
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

/* CARD */
.client-card {
    position: relative;
    background: #F2FAFF;
    border-radius: 30px;
    padding: 30px 20px;
    text-align: center;
    border: 4px solid #2C7BAD;
    overflow: hidden;
    cursor: pointer;
    width: 220px; /* fixed width to stay balanced */
    flex-shrink: 0;

    /* FLOATING EFFECT */
    animation: floatUp 4s ease-in-out infinite;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* FLOAT KEYFRAMES */
@keyframes floatUp {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* RIPPLE EFFECT */
.client-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.35) 0%, transparent 70%);
    transform: scale(0);
    opacity: 0;
    transition: transform 0.6s ease, opacity 0.6s ease;
    border-radius: 50%;
    pointer-events: none;
}

.client-card:hover::before {
    transform: scale(1);
    opacity: 1;
}

/* GLOW + LIFT */
.client-card:hover {
    transform: translateY(-12px) scale(1.05);
    box-shadow:
        0 0 20px rgba(44,123,173,0.6),
        0 0 40px rgba(44,123,173,0.35),
        0 0 60px rgba(44,123,173,0.2);
}

/* NUMBER */
.client-number {
    color: #502418;
    font-size: 48px;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 10px;
}

/* TEXT */
.client-type {
    color: #502418;
    font-size: 24px;
    font-weight: 400;
}

/* FLOATING BUBBLE */
.client-card::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.25);
    border-radius: 50%;
    top: 75%;
    left: 25%;
    animation: bubble 3s infinite ease-in-out;
}

@keyframes bubble {
    0% { transform: translateY(0) scale(0.5); opacity: 0.5; }
    50% { transform: translateY(-40px) scale(1); opacity: 1; }
    100% { transform: translateY(0) scale(0.5); opacity: 0.5; }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .clients-grid {
        justify-content: center;
        gap: 20px;
    }

    .client-card {
        width: 180px; /* smaller boxes for mobile */
    }

    .client-number {
        font-size: 36px;
    }

    .client-type {
        font-size: 20px;
    }
}

       
        
        /* Responsive design */
        @media (max-width: 1024px) {
            .hero h1 {
                font-size: 36px;
            }
            
            .hero p {
                font-size: 24px;
            }
            
            .partners-grid {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            }
            
            .partner-logo {
                width: 140px;
                height: 100px;
            }
            
            .client-number {
                font-size: 48px;
            }
            
            .client-type {
                font-size: 28px;
            }
        }
        
        @media (max-width: 768px) {
            nav {
                flex-direction: column;
                height: auto;
                padding: 20px;
            }
            
            .nav-links {
                flex-wrap: wrap;
                justify-content: center;
                margin-top: 20px;
            }
            
            .hero {
                height: auto;
                padding: 80px 20px;
            }
            
            .hero h1 {
                font-size: 28px;
            }
            
            .hero p {
                font-size: 20px;
            }
            
            .partners-grid {
                grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
                gap: 20px;
            }
            
            .partner-logo {
                width: 110px;
                height: 80px;
            }
            
            .clients-grid {
                grid-template-columns: 1fr;
                max-width: 400px;
            }
            
            .client-card {
                padding: 20px 15px;
            }
            
            .client-number {
                font-size: 36px;
            }
            
            .client-type {
                font-size: 22px;
            }
            
            .contact-form {
                grid-template-columns: 1fr;
            }
            
            .form-group.full {
                grid-column: 1;
            }
        }
