/* Resetting basic styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* General Body Styles */
body {
    font-family: Arial, sans-serif;
   
    color: #333;
}

/* Header Styles */
header {
    color: #0b0b0b;
    text-align: center;
    padding: 20px 0;
    margin-bottom: 20px;
}

header h1 {
    font-size: 2.5em;
    margin: 0;
}

/* Container and General Layout */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Styling for the Logo Image */
img {
    display: block;
    margin: 0 auto;
    border-radius: 8px;
   width: 200px;
   height: 200px;

}

/* Title Styling */
.title {
    font-size: 2.5em;
    text-align: center;
    margin: 20px 0;
    color: #0b0b0b; /* Bright Pink */
}

/* Text Styling for Construction Message */
.text {
    font-size: 1.2em;
    text-align: center;
    color: #1a6fac;
    margin-bottom: 40px;
}

/* Content Layout */
.content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;

}

/* Contact Section Styling */
.contact-section {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
}

/* Section Headers */
.contact-section h2 {
    font-size: 1.8em;
    margin-bottom: 15px;
    border-bottom: 2px solid #f17f2e; /* Bright Orange */
    padding-bottom: 10px;
    color: #f17f2e; /* Bright Orange */
}

/* Contact Information Styling */
.info {
    font-size: 1em;
    line-height: 1.6;
}

.info p {
    margin-bottom: 10px;
}

/* Icon Color */
.info i {
    margin-right: 10px;
    color: #62a726; /* Light Green */
}

/* Labels for Contact Fields */
.info span {
    font-weight: bold;
    color: #333;
}

/* Links Styling */
.info a {
    color: #0e0e0e;
    text-decoration: none;
}

.info a:hover {
    text-decoration: underline;
}

/* Footer Styling */
footer {
    background: linear-gradient(90deg, #eb5289, #f17f2e, #8ed152);
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
}

footer p {
    margin: 0;
    font-size: 1em;
}

/* Bilingual Layout Adjustments */
html[lang="ar"] {
    direction: rtl;
}

html[lang="ar"] .container {
    text-align: right;
}

/* Specific Adjustments for RTL (Arabic) */
.arabic {
    direction: rtl;
    text-align: right;
}

.arabic .info i {
    margin-left: 10px; 
    margin-right: 0;
}

.arabic .info span {
    display: inline-block;
    text-align: right;
}

/* Bilingual Sections Side by Side */
.bilingual-sections {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.bilingual-sections .contact-section {
    flex: 1;
}

/* Ensuring Sections Fit Side by Side on Small Screens */
@media (max-width: 768px) {
    .bilingual-sections {
        flex-direction: column;
    }

    .bilingual-sections .contact-section {
        margin-bottom: 20px;
    }
}
