/* يمكنك تغيير المتغيرات التالية لتغيير خلفية الموقع بسرعة */
:root {
    --bg-start: #1a2f5a;
    --bg-end: #1a2f5a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, var(--bg-start), var(--bg-end));
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow-x: hidden;
}

/* خلفية متحركة */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
    animation: backgroundMove 15s ease-in-out infinite;
    pointer-events: none;
}

@keyframes backgroundMove {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

/* الحاوية */
.container {
    width: 100%;
    max-width: 480px;
    margin: 40px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 50px 40px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    position: relative;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* الشعار */
.left {
    width: 100%;
    margin-bottom: 35px;
    animation: fadeIn 1s ease-out 0.2s both;
}

.left .logo {
    width: 140px;
    height: 140px;
    display: block;
    margin: 0 auto;
    border-radius: 50%;
    box-shadow: 
        0 10px 30px rgba(102, 126, 234, 0.4),
        0 0 0 8px rgba(255, 255, 255, 1),
        0 0 0 10px rgba(102, 126, 234, 0.2);
    transition: all 0.4s ease;
    object-fit: cover;
}

.left .logo:hover {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 
        0 15px 40px rgba(102, 126, 234, 0.5),
        0 0 0 8px rgba(255, 255, 255, 1),
        0 0 0 10px rgba(102, 126, 234, 0.3);
}

.brand-en {
    color: #1a2f5a;
    font-size: 36px;
    font-weight: 700;
    margin-top: 15px;
    letter-spacing: 1px;

    background: linear-gradient(135deg, #1a2f5a, #243b75);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-ar {
    color: #1a2f5a;
    font-size: 24px;
    font-weight: 600;
    margin-top: 5px;
    opacity: 0.9;
}

/* الأزرار */
.right {
    width: 100%;
}

.grid-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    animation: fadeIn 1s ease-out 0.4s both;
}

/* تعديل لون الأزرار — الآن نفس لون خلفية الموقع */
.btn {
    background: #1a2f5a; 
    color: white;
    padding: 16px 0;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 15px;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn:hover {
    background: #243b75;
    transform: translateY(-3px);
}

/* الخط الفاصل */
.divider {
    width: 50%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #667eea, transparent);
    margin: 35px auto;
    border-radius: 2px;
}

/* الأيقونات الرسمية */
.social-icons {
    display: flex;
    gap: 18px;
    justify-content: center;
    margin-top: 10px;
}

/* لون كل دائرة يبقى رسمي */
.social-icons a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icons img {
    width: 24px;
    height: 24px;
    
}

/* ألوان رسمية لكل أيقونة */
.social-icons a[aria-label="Instagram"] {
   background: #000;
}

.social-icons a[aria-label="Facebook"] {
    background: #000;
    
}

.social-icons a[aria-label="LinkedIn"] {
    background: #000;
}

.social-icons a[aria-label="YouTube"] {
    background: #000;
}

.social-icons a[aria-label="WhatsApp"] {
    background: #000;
}

.social-icons a[aria-label="google-map-icon"] {
   background: #000;
}
/* hello word */
.social-icons a:hover {
    transform: scale(1.1);
}

/* موبايل */
@media (max-width: 600px) {
    .container { padding: 40px 30px; border-radius: 25px; }
    .left .logo { width: 120px; height: 120px; }
    .brand-en { font-size: 30px; }
    .brand-ar { font-size: 20px; }
    .btn { font-size: 15px; padding: 14px 0; }
    .social-icons a { width: 45px; height: 45px; }
    .social-icons img { width: 22px; height: 22px; }
}

@media (max-width: 400px) {
    .container { padding: 35px 25px; }
    .brand-en { font-size: 26px; }
    .brand-ar { font-size: 18px; }
}

