/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', 'Inter', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

.container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 20px;
}

.content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 60px 40px;
    max-width: 800px;
    width: 100%;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 10;
    animation: slideUp 1s ease-out;
}

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

/* Logo Section */
.logo-section {
    margin-bottom: 40px;
}

.logo {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* Status Badge */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #ff6b6b, #ffa500);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 30px;
    box-shadow: 0 8px 16px rgba(255, 107, 107, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

.status-icon {
    font-size: 18px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

.status-text {
    font-size: 16px;
    margin-right: 8px;
}

.status-text-en {
    font-size: 14px;
    opacity: 0.9;
    font-family: 'Inter', sans-serif;
}

/* Main Title */
.main-title {
    margin-bottom: 30px;
}

.title-ar {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #2c3e50, #3498db);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-en {
    display: block;
    font-size: 1.8rem;
    font-weight: 600;
    color: #7f8c8d;
    font-family: 'Inter', sans-serif;
}

/* Description */
.description {
    margin-bottom: 40px;
    line-height: 1.8;
}

.desc-ar {
    font-size: 1.1rem;
    color: #34495e;
    margin-bottom: 20px;
    font-weight: 400;
}

.desc-en {
    font-size: 1rem;
    color: #7f8c8d;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

/* Contact Information */
.contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(52, 152, 219, 0.1);
    padding: 20px 25px;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(52, 152, 219, 0.2);
}

.contact-item:hover {
    background: rgba(52, 152, 219, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(52, 152, 219, 0.2);
}

.contact-icon {
    font-size: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 50%;
    color: white;
}

.contact-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact-label {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-bottom: 4px;
}

.contact-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-value:hover {
    color: #3498db;
}

/* Progress Section */
.progress-section {
    margin-top: 40px;
}

.progress-text {
    margin-bottom: 20px;
}

.progress-ar {
    display: block;
    font-size: 1.1rem;
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 8px;
}

.progress-en {
    display: block;
    font-size: 1rem;
    color: #7f8c8d;
    font-family: 'Inter', sans-serif;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(52, 152, 219, 0.2);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #3498db, #2980b9);
    border-radius: 4px;
    width: 0%;
    animation: progressFill 3s ease-in-out infinite;
}

@keyframes progressFill {
    0% {
        width: 0%;
    }
    50% {
        width: 75%;
    }
    100% {
        width: 0%;
    }
}

/* Background Elements */
.bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.bg-circle-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.bg-circle-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.bg-circle-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Floating Particles */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: particleFloat 8s linear infinite;
}

.particle:nth-child(1) {
    left: 20%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    left: 40%;
    animation-delay: 2s;
}

.particle:nth-child(3) {
    left: 60%;
    animation-delay: 4s;
}

.particle:nth-child(4) {
    left: 80%;
    animation-delay: 6s;
}

.particle:nth-child(5) {
    left: 10%;
    animation-delay: 1s;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .content {
        padding: 40px 30px;
        margin: 20px;
    }
    
    .title-ar {
        font-size: 2rem;
    }
    
    .title-en {
        font-size: 1.4rem;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 20px;
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .desc-ar {
        font-size: 1rem;
    }
    
    .desc-en {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .content {
        padding: 30px 20px;
    }
    
    .logo {
        max-width: 150px;
    }
    
    .title-ar {
        font-size: 1.8rem;
    }
    
    .title-en {
        font-size: 1.2rem;
    }
    
    .status-badge {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .contact-item {
        padding: 15px 20px;
    }
}

