/* Arabic Website Styles - Right to Left Layout */

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    direction: rtl; /* Right to Left Layout */
    font-size: 18px; /* Arabic websites typically need larger fonts */
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f8f8f8;
    color: #333;
    line-height: 1.6;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #0c4b33; /* Common Egyptian green color */
}

.logo img {
    height: 50px;
}

/* Navigation Menu */
nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px; /* In RTL layout, left margin appears on the right side */
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #0c4b33;
}

/* Hero Area */
.hero {
    background: linear-gradient(to left, #0c4b33, #1a936f);
    color: #fff;
    padding: 100px 0;
    text-align: right;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border-bottom: 5px solid rgba(255, 255, 255, 0.1);
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    font-weight: bold;
    position: relative;
    display: inline-block;
}

.hero h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 80px;
    height: 3px;
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    max-width: 650px;
    line-height: 1.9;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.btn {
    display: inline-block;
    background-color: #fff;
    color: #0c4b33;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
}

.btn:hover {
    background-color: #0c4b33;
    color: #fff;
}

/* Services Section */
.services {
    padding: 80px 0;
    text-align: right;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 50px;
    color: #0c4b33;
    text-align: right;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 40px 30px;
    transition: transform 0.4s, box-shadow 0.4s;
    border-top: 5px solid #0c4b33;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 85%, rgba(12, 75, 51, 0.1) 85%, rgba(12, 75, 51, 0.2) 100%);
    z-index: 0;
    transition: opacity 0.4s;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.service-card:hover::before {
    opacity: 0.8;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #0c4b33;
    position: relative;
    z-index: 2;
    transition: transform 0.3s;
}

.service-card:hover h3 {
    transform: translateX(-5px);
}

.service-card p {
    position: relative;
    z-index: 2;
    line-height: 1.8;
    color: #444;
    transition: transform 0.3s;
}

.service-card:hover p {
    transform: translateX(-5px);
}

.service-card i {
    position: relative;
    z-index: 2;
    transition: transform 0.3s;
}

.service-card:hover i {
    transform: scale(1.1);
}

/* About Us Section */
.about {
    padding: 120px 0;
    background-color: #f8fafb;
    text-align: right;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(12, 75, 51, 0.05) 0%, rgba(26, 147, 111, 0.08) 100%);
    border-radius: 50%;
    transform: translate(200px, -200px);
    z-index: 0;
}

.about::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(12, 75, 51, 0.05) 0%, rgba(26, 147, 111, 0.08) 100%);
    border-radius: 50%;
    transform: translate(-150px, 150px);
    z-index: 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-text h2 {
    font-size: 2.4rem;
    margin-bottom: 30px;
    color: #0c4b33;
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 3px;
    background: linear-gradient(to left, #0c4b33, #1a936f);
    border-radius: 3px;
    box-shadow: 0 2px 4px rgba(12, 75, 51, 0.2);
}

.about-text p {
    line-height: 1.9;
    margin-bottom: 20px;
    color: #444;
    font-size: 1.1rem;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s, box-shadow 0.5s;
    border: 8px solid #fff;
}

.about-image:hover img {
    transform: scale(1.03) rotate(1deg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* App Introduction Section */
.app-intro {
    padding: 80px 0;
    background: #fff;
}

.app-intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.app-image {
    position: relative;
    overflow: hidden;
}

.app-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s, box-shadow 0.5s;
}

.app-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.app-text h2 {
    font-size: 2.5rem;
    color: #0c4b33;
    margin-bottom: 25px;
    font-weight: bold;
}

.app-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 35px;
}

.app-features {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: #f8fafb;
    border-radius: 12px;
    transition: background 0.3s, transform 0.3s;
}

.feature-item:hover {
    background: #e8f5e8;
    transform: translateX(5px);
}

.feature-item i {
    font-size: 1.5rem;
    color: #0c4b33;
    width: 30px;
    text-align: center;
}

.feature-item span {
    font-size: 1.1rem;
    color: #333;
    font-weight: 500;
}

.app-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.app-buttons .btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    min-width: 200px;
    justify-content: center;
}

.app-buttons .btn-primary {
    background: linear-gradient(135deg, #0c4b33, #1a936f);
    color: #fff;
}

.app-buttons .btn-primary:hover {
    background: linear-gradient(135deg, #0a3d29, #16805d);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(12, 75, 51, 0.3);
}

.app-buttons .btn-secondary {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: #fff;
}

.app-buttons .btn-secondary:hover {
    background: linear-gradient(135deg, #1a252f, #2c3e50);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(44, 62, 80, 0.3);
}

.app-buttons .btn i {
    font-size: 1.3rem;
}

/* Responsive Design for App Section */
@media (max-width: 768px) {
    .app-intro-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .app-image {
        order: -1;
        text-align: center;
    }
    
    .app-image img {
        max-width: 300px;
    }
    
    .app-text h2 {
        font-size: 2rem;
    }
    
    .app-text p {
        font-size: 1.1rem;
    }
    
    .app-buttons {
        justify-content: center;
    }
    
    .app-buttons .btn {
        min-width: 180px;
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* Statistics */
.statistics {
    padding: 80px 0;
    background: linear-gradient(135deg, #0c4b33, #1a936f);
    color: #fff;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
    display: block;
}

.stat-text {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: #f8fafb;
}

.testimonials h2 {
    text-align: center;
    color: #0c4b33;
    margin-bottom: 50px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-content {
    margin-bottom: 25px;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0c4b33, #1a936f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    font-size: 1.2rem;
}

.author-info h4 {
    color: #0c4b33;
    margin-bottom: 5px;
}

.author-info p {
    color: #666;
    font-size: 0.9rem;
}

/* Partners */
.partners {
    padding: 80px 0;
    background: #fff;
}

.partners h2 {
    text-align: center;
    color: #0c4b33;
    margin-bottom: 50px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    align-items: center;
}

.partner-logo {
    background: #f8fafb;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #0c4b33;
    transition: all 0.3s;
    cursor: pointer;
}

.partner-logo:hover {
    background: #0c4b33;
    color: #fff;
    transform: scale(1.05);
}

/* Contact Us Section */
.contact {
    padding: 80px 0;
    text-align: right;
}

.contact-form {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.form-group textarea {
    height: 150px;
}

/* Contact Info Section */
.contact-info-section {
    padding: 80px 0;
    background: #f8fafb;
    text-align: center;
}

.contact-info-section h2 {
    color: #0c4b33;
    margin-bottom: 15px;
    font-size: 2.5rem;
}

.contact-info-section > p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.contact-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    text-align: center;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0c4b33, #1a936f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 1.5rem;
}

.contact-card h3 {
    color: #0c4b33;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.contact-card p {
    color: #333;
    line-height: 1.6;
    margin: 0;
}

.contact-benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.benefit-card {
    background: #fff;
    padding: 20px 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-3px);
}

.benefit-card i {
    color: #1a936f;
    font-size: 1.2rem;
}

.benefit-card span {
    color: #333;
    font-weight: 500;
}

@media (max-width: 768px) {
    .contact-details {
        grid-template-columns: 1fr;
    }
    
    .contact-benefits {
        flex-direction: column;
        align-items: center;
    }
    
    .benefit-card {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* About Page Styles */
.about-section {
    padding: 80px 0;
    text-align: right;
}

.about-section h2 {
    color: #0c4b33;
    margin-bottom: 30px;
}

.about-section p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 50px 0;
}

.mission, .vision {
    background-color: #fff;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.company-values {
    margin-top: 50px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.value-card {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
}

.value-card i {
    font-size: 50px;
    color: #0c4b33;
    margin-bottom: 15px;
}

.value-card h3 {
    color: #0c4b33;
    margin-bottom: 15px;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .mission-vision {
        grid-template-columns: 1fr;
    }
}

/* FAQ Page Styles */
.company-profile-page {
    padding: 40px 0;
    text-align: right;
}

.profile-section {
    margin-bottom: 40px;
}

.profile-section h2 {
    color: #0c4b33;
    margin-bottom: 20px;
}

.profile-section p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.info-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
}

.info-card h3 {
    color: #0c4b33;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-size: 1.3rem;
}

.info-card h3 i {
    margin-left: 12px;
    color: #0c4b33;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 25px;
}

.contact-info {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.contact-info h3 {
    color: #0c4b33;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.contact-info-item {
    display: flex;
    margin-bottom: 15px;
}

.contact-info-item i {
    color: #0c4b33;
    font-size: 18px;
    margin-left: 12px;
    margin-top: 2px;
}

.contact-info-item div {
    flex: 1;
}

.contact-info-item h4 {
    margin-bottom: 3px;
    font-size: 1.05rem;
}

.contact-info-item p {
    color: #666;
    font-size: 0.95rem;
}

.faq-section {
    background-color: #f1f1f1;
    padding: 40px 0;
    text-align: right;
}

.faq-item {
    margin-bottom: 20px;
    background-color: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    color: #0c4b33;
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.faq-item p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 50px 0 20px;
    text-align: right;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #fff;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    text-decoration: none;
    color: #ddd;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    text-align: center;
}

/* Page Title */
.page-title {
    background: linear-gradient(135deg, #0c4b33, #1a936f);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.page-title h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.page-title p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Products Page */
.products {
    padding: 80px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.product-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
    background: linear-gradient(135deg, #0c4b33, #1a936f);
    padding: 40px;
    text-align: center;
}

.product-content {
    padding: 30px;
}

.product-content h3 {
    color: #0c4b33;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.product-features {
    list-style: none;
    margin: 20px 0;
}

.product-features li {
    padding: 5px 0;
    color: #666;
}

.product-features li:before {
    content: "✓";
    color: #0c4b33;
    font-weight: bold;
    margin-left: 10px;
}

.product-price {
    font-size: 1.3rem;
    color: #0c4b33;
    font-weight: bold;
    margin: 20px 0;
}

.custom-solutions {
    background: #f8fafb;
    padding: 60px 0;
    text-align: center;
}

.custom-solutions h2 {
    color: #0c4b33;
    margin-bottom: 20px;
}

/* News Page */
.news {
    padding: 80px 0;
}

.news-categories {
    text-align: center;
    margin-bottom: 40px;
}

.category-btn {
    background: #fff;
    border: 2px solid #0c4b33;
    color: #0c4b33;
    padding: 10px 20px;
    margin: 0 5px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
}

.category-btn.active,
.category-btn:hover {
    background: #0c4b33;
    color: #fff;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.news-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-image {
    background: linear-gradient(135deg, #0c4b33, #1a936f);
    padding: 40px;
    text-align: center;
}

.news-content {
    padding: 25px;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #666;
}

.news-category {
    background: #0c4b33;
    color: #fff;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
}

.news-content h3 {
    color: #0c4b33;
    margin-bottom: 15px;
}

.read-more {
    color: #0c4b33;
    text-decoration: none;
    font-weight: bold;
}

.read-more:hover {
    text-decoration: underline;
}

.news-pagination {
    text-align: center;
    margin-top: 40px;
}

.pagination-btn {
    background: #fff;
    border: 1px solid #ddd;
    color: #333;
    padding: 10px 15px;
    margin: 0 5px;
    border-radius: 5px;
    cursor: pointer;
}

.pagination-btn.active,
.pagination-btn:hover {
    background: #0c4b33;
    color: #fff;
}



/* Case Studies */
.case-studies {
    padding: 80px 0;
}

.case-filters {
    text-align: center;
    margin-bottom: 40px;
}

.filter-btn {
    background: #fff;
    border: 2px solid #0c4b33;
    color: #0c4b33;
    padding: 10px 20px;
    margin: 0 5px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
    background: #0c4b33;
    color: #fff;
}

.cases-grid {
    display: grid;
    gap: 30px;
}

.case-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.case-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.case-icon {
    margin-left: 20px;
}

.case-category {
    background: #0c4b33;
    color: #fff;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
}

.case-results {
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
    padding: 20px;
    background: #f8fafb;
    border-radius: 8px;
}

.result-item {
    text-align: center;
}

.result-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #0c4b33;
}

.result-text {
    font-size: 0.9rem;
    color: #666;
}

.case-testimonial {
    background: #f8fafb;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    border-right: 4px solid #0c4b33;
}

.case-testimonial p {
    font-style: italic;
    margin-bottom: 10px;
}

.case-testimonial cite {
    color: #0c4b33;
    font-weight: bold;
}

.cta-section {
    background: linear-gradient(135deg, #0c4b33, #1a936f);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

/* Careers */
.why-join {
    padding: 80px 0;
    background: #f8fafb;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.benefit-card i {
    margin-bottom: 20px;
}

.job-openings {
    padding: 80px 0;
}

.job-filters {
    text-align: center;
    margin-bottom: 40px;
}

.jobs-list {
    display: grid;
    gap: 20px;
}

.job-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 25px;
    transition: box-shadow 0.3s;
}

.job-card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.job-type {
    background: #0c4b33;
    color: #fff;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
}

.job-info {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    color: #666;
    font-size: 0.9rem;
}

.job-tags {
    margin-bottom: 15px;
}

.tag {
    background: #f0f0f0;
    color: #333;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    margin-left: 5px;
}

.job-description {
    margin-bottom: 20px;
}

.job-actions {
    display: flex;
    gap: 10px;
}

.btn-outline {
    background: transparent;
    border: 2px solid #0c4b33;
    color: #0c4b33;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: #0c4b33;
    color: #fff;
}

.application-process {
    padding: 80px 0;
    background: #f8fafb;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step {
    text-align: center;
    padding: 30px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #0c4b33;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

/* Contact */
.contact-info {
    padding: 60px 0;
    background: #f8fafb;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.info-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.info-card i {
    margin-bottom: 20px;
}

.info-card h3 {
    color: #0c4b33;
    margin-bottom: 15px;
}

.directions-btn, .support-btn {
    display: inline-block;
    background: #0c4b33;
    color: #fff;
    padding: 8px 16px;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 15px;
    transition: background 0.3s;
}

.directions-btn:hover, .support-btn:hover {
    background: #0a3d29;
}

.working-hours {
    color: #666;
    font-size: 0.9rem;
}

.response-time {
    color: #0c4b33;
    font-weight: bold;
}

.contact-form-section {
    padding: 80px 0;
}

.form-container {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0c4b33;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-left: 10px;
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto;
}

.form-sidebar {
    display: grid;
    gap: 20px;
}

.sidebar-card {
    background: #f8fafb;
    padding: 25px;
    border-radius: 8px;
}

.sidebar-card h3 {
    color: #0c4b33;
    margin-bottom: 15px;
}

.sidebar-card ul {
    list-style: none;
}

.sidebar-card ul li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-card ul li i {
    color: #0c4b33;
}

.working-hours-detailed {
    display: grid;
    gap: 10px;
}

.day {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
}

.map-section {
    padding: 60px 0;
    background: #f8fafb;
}

.map-container {
    margin-top: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-section {
    padding: 80px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    background: #f8fafb;
}

.faq-question h3 {
    margin: 0;
    color: #0c4b33;
}

.faq-question i {
    transition: transform 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
}

.faq-answer p {
    padding: 20px;
    margin: 0;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Privacy Policy Page */
.privacy-policy {
    background-color: #f8f9fa;
    padding: 40px 0;
}

.privacy-header {
    text-align: center;
    margin-bottom: 40px;
}

.privacy-header h1 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.last-updated {
    color: #7f8c8d;
    font-size: 1rem;
    font-weight: 500;
}

.privacy-content {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    max-width: 900px;
    margin: 0 auto;
}

.privacy-content .intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 30px;
    text-align: justify;
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 20px;
    border-right: 4px solid #3498db;
    padding-right: 15px;
}

.policy-section h3 {
    color: #34495e;
    font-size: 1.3rem;
    margin-bottom: 15px;
    margin-top: 25px;
}

.policy-section p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
    text-align: justify;
}

.policy-section ul {
    margin-right: 20px;
    margin-bottom: 20px;
}

.policy-section li {
    line-height: 1.8;
    color: #555;
    margin-bottom: 8px;
    text-align: justify;
}

.note {
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 15px;
    border-radius: 5px;
    color: #856404;
    font-weight: 500;
}

.data-retention-table {
    overflow-x: auto;
    margin: 20px 0;
}

.data-retention-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.data-retention-table th,
.data-retention-table td {
    padding: 15px;
    text-align: right;
    border-bottom: 1px solid #ecf0f1;
}

.data-retention-table th {
    background-color: #34495e;
    color: white;
    font-weight: 600;
}

.data-retention-table tr:hover {
    background-color: #f8f9fa;
}

/* Arabic text direction */
[dir="rtl"] {
    text-align: right;
}

[dir="rtl"] .policy-section h2 {
    border-left: 4px solid #3498db;
    border-right: none;
    padding-left: 15px;
    padding-right: 0;
}

[dir="rtl"] .policy-section ul {
    margin-left: 20px;
    margin-right: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
    }
    
    nav ul {
        margin-top: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 5px 10px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    

}

@media (max-width: 576px) {
    html {
        font-size: 16px;
    }
    
    .services-grid,
    .products-grid,
    .news-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .case-results {
        flex-direction: column;
        gap: 15px;
    }
    
    .job-info {
        flex-direction: column;
        gap: 10px;
    }
    
    .job-actions {
        flex-direction: column;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .form-container {
        padding: 20px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partner-logo {
        padding: 20px;
        font-size: 1.2rem;
    }
}