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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    direction: rtl;
}

.container {
    width: 100%;
    max-width: 1200px;
    text-align: center;
}

.content {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.logo {
    width: 180px;
    height: 180px;
    margin: 0 auto 40px;
    display: block;
    animation: fadeInUp 1s ease-out;
}

.coming-soon {
    font-size: 3.5rem;
    font-weight: 300;
    color: #1a5490;
    margin-bottom: 30px;
    letter-spacing: 3px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.company-name-arabic {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 500;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.company-name-english {
    font-size: 3rem;
    font-weight: 700;
    color: #1a5490;
    margin-bottom: 40px;
    letter-spacing: 8px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.follow-us {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    animation: fadeInUp 1s ease-out 1s both;
}

.social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a5490;
    background: rgba(26, 84, 144, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: #1a5490;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(26, 84, 144, 0.3);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .content {
        padding: 40px 20px;
    }
    
    .logo {
        width: 150px;
        height: 150px;
        margin-bottom: 30px;
    }
    
    .coming-soon {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .company-name-arabic {
        font-size: 1.4rem;
    }
    
    .company-name-english {
        font-size: 2.2rem;
        letter-spacing: 4px;
    }
    
    .follow-us {
        font-size: 1rem;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .coming-soon {
        font-size: 2rem;
    }
    
    .company-name-arabic {
        font-size: 1.2rem;
    }
    
    .company-name-english {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }
}

