:root {
    --primary-color: #2C3E50;
    --secondary-color: #2980B9;
    --accent-color: #27AE60;
    --text-color: #333;
    --light-bg: rgba(255, 255, 255, 0.98);
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

html, body {
    height: 100%;
    font-family: 'Cairo', sans-serif;
    text-align: center;
    direction: rtl;
    background: #f5f6fa;
    display: flex;
    flex-direction: column;
    scroll-behavior: smooth;
    line-height: 1.8;
    color: var(--text-color);
}

/* تنسيق الهيدر */
.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    background: white;
    box-shadow: var(--shadow);
    position: relative;
}

.main-logo img {
    width: 220px;
    height: auto;
    border-radius: 50px; /* جعل الزوايا بيضاوية مثل شعار كاش بلزمناش */
    margin-top: 10px; /* Reduced margin-top */
}

.secondary-logos {
    display: flex;
    gap: 40px; /* Increased gap slightly */
    justify-content: center; /* Center the logos horizontally */
    width: 100%; /* Allow the container to take full width for centering */
    padding-top: 15px; /* Add space above the logos */
    padding-bottom: 15px; /* Add space below the logos, before main logo */
}

.header-logo {
    display: flex;
    flex-direction: column; /* Arrange items vertically */
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px; /* Adjusted border-radius */
    padding: 10px;
    box-shadow: var(--shadow);
    text-decoration: none;
    gap: 5px; /* Reduced gap for vertical layout */
    width: auto;
    height: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center; /* Center text */
}

.header-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.header-logo img {
    width: 95px; /* Increased size */
    height: 95px; /* Increased size */
    object-fit: contain;
}

.header-logo span {
    font-family: 'Cairo', sans-serif;
    color: var(--text-color);
    font-size: 14px;
    white-space: nowrap; /* التأكد من ظهور النص في سطر واحد فقط */
}

/* تحسينات الفوتر */
.footer-bottom {
    background: var(--primary-color);
    color: white;
    padding: 15px;
    font-size: 14px;
}

.footer-bottom a {
    color: var(--accent-color);
    text-decoration: none;
}


/* تنسيق المربعات */
/* توزيع المربعات بشكل أفقي مرن */
.content-container {
    display: flex; /* تغيير من grid إلى flex */
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 20px; /* تعديل المسافة بين المربعات */
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}


.box {
    background: var(--light-bg);
    border-radius: 15px;
    padding: 25px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.box:hover {
    transform: translateY(-5px);
}

.box h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.4rem;
}

/* الأزرار */
.button {
    background: var(--primary-color);
    color: white;
    padding: 12px;
    border-radius: 8px;
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.3s ease;
    font-size: 15px;
}

.button:hover {
    background: #34495E;
}

.button-register { background: var(--accent-color); }
.button-register:hover { background: #2ECC71; }

/* تأثيرات الأدوات التوضيحية */
[data-tooltip] {
    position: relative;
    cursor: help;
}

[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    font-family: 'Cairo', sans-serif;
    box-shadow: var(--shadow);
    width: 300px;
    max-width: 90vw;
}

[data-tooltip]:hover::after {
    opacity: 1;
}

/* الموبايل */
@media (max-width: 1024px) {
    .header-content {
        padding: 10px;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .main-logo {
        margin-top: 15px; /* Reduced margin-top for new layout */
    }

    .main-logo img {
        width: 240px; /* تكبير الشعار الوسطي ليكون واضحًا */
        height: auto;
        border-radius: 25px;
    }

    .secondary-logos {
        /* Removed absolute positioning to allow centering */
        /* position: absolute; */
        /* top: 30px; */ /* Using margin-top from base style */
        /* right: 20px; */ 
        display: flex;
        justify-content: center; /* Ensure centering on smaller screens too */
        width: 100%; /* Ensure full width for centering */
        gap: 30px;
    }

    .header-logo {
        padding: 8px; /* Adjusted padding for vertical layout */
        border-radius: 15px; /* Keep consistent with base style */
    }

    .header-logo img {
        width: 120px;
        height: 120px;
    }

    .header-logo span {
        font-size: 12px;
    }

    .content-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        padding: 15px;
    }

    .box {
        width: 90%;
    }
}

@media (max-width: 768px) {
    .main-logo img {
        width: 160px;
    }

    .secondary-logos {
        gap: 30px;
        top: 30px;
        right: 15px;
    }

    .header-logo img {
        width: 100px;
        height: 100px;
    }

    .header-logo span {
        font-size: 11px;
    }

    .box {
        width: 95%;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .main-logo img {
        width: 140px;
    }

    .secondary-logos {
        gap: 30px;
        top: 30px;
        right: 10px;
    }

    .header-logo img {
        width: 100px;
        height: 100px;
    }

    .header-logo span {
        font-size: 9px;
    }
}

