/* General Reset */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Arabic:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-family: "Noto Sans Arabic", "Roboto", sans-serif;
}
.en-font{
    font-family: "Roboto", sans-serif;;
}

body {
    background: url('bg.png') no-repeat center center fixed;
    background-size: cover;
    background-color: #0b1a03; /* Fallback dark green */
    color: white;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.container {
    width: 90%;
    max-width: 600px;
}

/* Logo & Headers */
.logo {
    width: 120px;
    margin-bottom: 20px;
    margin-top: 50px;
}

h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 5px;
}

h2 {
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 1px;
}

/* Middle Section */
.construction-section {
    margin: 50px 0;
}

.arabic-text {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

h3 {
    font-size: 2rem;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 20px;
}

h3 span {
    font-weight: 900;
    font-size: 2.8rem;
}

/* Progress Bar */
.progress-bar-container {
    width: 250px;
    height: 18px;
    border: 2px solid #ffffff;
    border-radius: 10px;
    margin: 0 auto;
    padding: 2px;
}

.progress-bar {
    width: 40%; /* Adjust percentage as needed */
    height: 100%;
    background-color: white;
    border-radius: 6px;
}

/* Footer & Icons */
.footer {
    margin-top: 40px;
}

.contact-text, .radio-text {
    font-size: 0.9rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.social-icons i {
    font-size: 1.4rem;
    cursor: pointer;
    transition: transform 0.2s;
    color: #FFF;
}

.social-icons i:hover {
    transform: scale(1.2);
}

.secondary i {
    font-size: 1.1rem;
}

/* Responsive Scaling */
@media (max-width: 480px) {
    h1 { font-size: 1.8rem; }
    h3 span { font-size: 2.2rem; }
}