﻿body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f8f9fa;
    font-family: 'Cairo', sans-serif;
    direction: rtl;
}

.custom-card {
    cursor: pointer;
    transition: 0.3s;
    border: 2px solid transparent;
}

    .custom-card.selected {
        border: 3px solid #007bff;
    }

/* شعار في المنتصف */
.logo {
    text-align: center;
    margin-bottom: 20px;
}

    .logo img {
        max-width: 150px;
    }

/* تصميم المربعات */
.custom-card {
    background: linear-gradient(135deg, #7c1f3b, #a02950, #7c1f3b);
    color: white;
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

    .custom-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background-image: linear-gradient(90deg, #FFD700, #FFC107, #FFD700, #FFB300);
    }

    .custom-card i {
        font-size: 50px;
        margin-bottom: 15px;
        color: #FFD700;
    }

/* حقوق الملكية */
.footer {
    margin-top: 30px;
    font-size: 14px;
    color: #333;
    text-align: center;
}

a {
    color: #ffffff; /* اللون الأبيض */
    text-decoration: none; /* إزالة التسطير */
    transition: color 0.3s ease-in-out; /* تأثير سلس عند تغيير اللون */
}

    a:hover {
        color: #FFD700; /* اللون الذهبي عند التأشير */
    }

    a:visited {
        color: #ffffff; /* عند الزيارة يبقى أبيض */
    }
   h3{
       text-align:center;
       margin:10px;

       padding-bottom:20px;
   }