/* Omra Page Styles */
.omra-page {
    font-family: 'Cairo', sans-serif; /* Assuming an Arabic font is needed, or inherit */
    color: #333;
    direction: rtl; /* Arabic content */
    padding-bottom: 4rem;
}

/* Hero Section */
.omra-hero {
    text-align: center;
    padding: 2rem 0;
}

.omra-hero__image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Values Section (3 Icons) */
.omra-values {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 2rem 0;
    text-align: center;
    flex-wrap: wrap;
}

.omra-value-item {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.omra-value-item img {
    height: 80px;
    width: auto;
    margin-bottom: 1rem;
}

.omra-value-item p {
    font-weight: 700;
    font-size: 1.1rem;
    color: #2c3e50;
}

/* Mission Section (Purple Banner) */
.omra-mission {
    background-color: #a594c3; /* Light purple from image */
    color: white;
    text-align: center;
    padding: 3rem 1rem;
    margin: 2rem 0;
}

.omra-mission h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.omra-mission p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsibility Section */
.omra-responsibility {
    text-align: center;
    padding: 2rem 0;
}

.omra-responsibility h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.omra-step-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.omra-kifeh-img {
    display: block;
    max-width: 150px;
}

.omra-arrow-down {
    height: 40px; /* Adjust size */
    width: auto;
}

.omra-main-box {
    border: 2px solid #a594c3;
    border-radius: 10px;
    padding: 1.5rem;
    max-width: 800px;
    margin: 1rem auto;
    color: #2c3e50;
    font-weight: 700;
    font-size: 1.2rem;
    background: white;
}

.omra-split-arrows {
    display: flex;
    justify-content: center;
    gap: 200px; /* Space between arrows pointing to cards */
    margin-bottom: 1rem;
}

.omra-arrow-small {
    height: 30px;
    width: auto;
}

/* Examples Section */
.omra-examples {
    display: flex;
    justify-content: center;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto 3rem;
    flex-wrap: wrap;
}

.omra-example-wrapper {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.omra-example-label {
    max-width: 100px;
    margin-bottom: 0.5rem;
}

.omra-example-card {
    width: 100%;
    height: 100%; /* Ensure equal height */
    border: 2px solid #a594c3;
    border-radius: 10px;
    overflow: hidden;
    background: white;
    display: flex;
    flex-direction: column;
}

.omra-card-header {
    background-color: #a594c3;
    color: white;
    padding: 1rem;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
}

.omra-card-body {
    padding: 1.5rem;
    text-align: center;
    color: #333;
    font-weight: 600;
    line-height: 1.6;
    flex-grow: 1; /* Fill remaining space */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Footer Banner */
.omra-footer-banner {
    background-color: #a594c3;
    color: white;
    text-align: center;
    padding: 3rem 2rem;
    margin: 2rem auto;
    border-radius: 8px;
    max-width: 900px;
}

.omra-footer-banner h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.omra-footer-banner p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.omra-footer-banner p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* CTA Section */
.omra-cta {
    text-align: center;
    padding: 2rem 0;
}

.omra-cta h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.omra-phone-btn {
    display: inline-flex;
    align-items: center;
    background-color: #1a1a2e; /* Dark blue/black */
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    gap: 0.5rem;
}

.omra-phone-btn:hover {
    background-color: #2c2c44;
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .omra-values {
        flex-direction: column;
        align-items: center;
    }
    
    .omra-examples {
        flex-direction: column;
    }
}
