/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #2c3e50 100%);
    min-height: 100vh;
    overflow-x: hidden;
    color: #ecf0f1;
}

/* Arabic Text Styling */
.arabic-title,
.arabic-subtitle,
.arabic-label,
.arabic-footer {
    font-family: 'Noto Sans Arabic', 'Poppins', sans-serif;
    direction: rtl;
    text-align: center;
}

.english-title,
.english-subtitle,
.english-label,
.english-footer {
    font-family: 'Poppins', sans-serif;
    direction: ltr;
    text-align: center;
}

.container {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

/* Background Animation */
.bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(149, 165, 166, 0.08);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    top: 20%;
    right: 10%;
    animation-delay: 1s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    bottom: 30%;
    left: 20%;
    animation-delay: 2s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    right: 20%;
    animation-delay: 3s;
}

.shape-5 {
    width: 140px;
    height: 140px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
}

/* Main Content */
.content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    width: 100%;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Logo */
.logo {
    margin-bottom: 25px;
    animation: slideInDown 1s ease-out;
}

.logo i {
    font-size: 3.5rem;
    color: #e67e22;
    margin-bottom: 8px;
    display: block;
    animation: pulse 2s infinite;
}

.logo h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ecf0f1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Construction Message */
.construction-message {
    margin-bottom: 30px;
}

.arabic-title {
    margin-bottom: 10px;
}

.english-title {
    margin-bottom: 15px;
    font-size: 3.5rem;
}

.arabic-subtitle {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.english-subtitle {
    margin-bottom: 0;
}

.main-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

.highlight {
    color: #e67e22;
    text-shadow: 2px 2px 4px rgba(230, 126, 34, 0.4);
}

.subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(236, 240, 241, 0.85);
    max-width: 600px;
    margin: 0 auto;
}

/* Progress Bar */
.progress-container {
    margin: 25px 0;
    background: rgba(52, 73, 94, 0.3);
    padding: 15px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(149, 165, 166, 0.2);
}

.progress-label {
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.arabic-label {
    margin-bottom: 3px;
}

.english-label {
    margin-bottom: 10px;
    font-size: 1rem;
    opacity: 0.8;
}

.progress-bar {
    width: 100%;
    height: 10px;
    background: rgba(44, 62, 80, 0.4);
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #e67e22, #f39c12);
    border-radius: 5px;
    width: 0%;
    transition: width 2s ease-out;
    box-shadow: 0 2px 10px rgba(230, 126, 34, 0.4);
}

.progress-percentage {
    font-size: 1.2rem;
    font-weight: 600;
    color: #e67e22;
}

/* Footer */
.footer {
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid rgba(149, 165, 166, 0.2);
}

.footer p {
    color: rgba(149, 165, 166, 0.8);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }
    
    .logo {
        margin-bottom: 20px;
    }
    
    .logo h1 {
        font-size: 2rem;
    }
    
    .logo i {
        font-size: 3rem;
        margin-bottom: 6px;
    }
    
    .construction-message {
        margin-bottom: 25px;
    }
    
    .progress-container {
        margin: 20px 0;
        padding: 12px;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .content {
        padding: 0 10px;
    }
    
    /* Disable progress animation on tablets and mobile */
    .progress-fill {
        transition: none;
        width: 75% !important;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2rem;
        margin-bottom: 8px;
    }
    
    .english-title {
        font-size: 2.8rem;
        margin-bottom: 12px;
    }
    
    .logo {
        margin-bottom: 15px;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .logo i {
        font-size: 2.5rem;
        margin-bottom: 5px;
    }
    
    .construction-message {
        margin-bottom: 20px;
    }
    
    .progress-container {
        margin: 15px 0;
        padding: 10px;
    }
    
    .container {
        padding: 10px;
    }
    
    .floating-shape {
        display: none; /* Hide floating shapes on very small screens */
    }
    
    /* Disable progress animation on mobile */
    .progress-fill {
        transition: none;
        width: 75% !important;
    }
}
