/* General Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f4f4f4;
}

/* Header Styles */
header {
    background: #0073e6;
    color: #fff;
    padding: 1rem 0;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2rem;
}

.quote {
    font-size: 2.4rem;
    font-style: italic;
    color: #e70e2b;
    margin: 10px 0;
    text-align: center;
    direction: rtl; /* Ensures proper text direction for Arabic */
    font-family: 'Arial', sans-serif; /* Adjust font family if needed */
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 10px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* Slideshow Styles */
#slideshow {
    background-color: #ffffff;
    position: relative;
    width: 100%;
    max-width: 600px; /* You can adjust this size */
    margin: 0 auto; /* Center the slideshow */
    overflow: hidden;
    border-radius: 10px;
}

.slides {
    display: flex;
    width: 100%;
}

.slide {
    display: none; /* Hide all slides by default */
    width: 100%;
    border-radius: 10px;
}

.slide.active {
    display: block; /* Show the active slide */
}

/* Main Content Styles */
main {
    padding: 20px;
    background-color: #fff;
    margin: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

section {
    margin-bottom: 20px;
}

section h2 {
    color: #0073e6;
    border-bottom: 2px solid #0073e6;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

section p, section ul {
    margin: 10px 0;
}

/* Form Styles */
form {
    display: flex;
    flex-direction: column;
}

form label {
    margin: 5px 0 2px;
}

form input, form textarea {
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

form button {
    padding: 10px;
    background: #0073e6;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
}

form button:hover {
    background: #005bb5;
}

/* Footer Styles */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    bottom: 0;
}

footer p {
    margin: 5px 0;
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}
