:root {
    --primary-color: #1a3a3a; /* أخضر داكن */
    --secondary-color: #d4af37; /* ذهبي */
    --background-color: #fdfaf5; /* بيج فاتح */
    --text-color: #333333;
    --light-text-color: #f5f5f5;
    --font-family: 'Tajawal', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.8;
    text-align: right;
    overflow-x: hidden; /* لمنع التمرير الأفقي */
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

/* --- Header --- */
.main-header {
    background-color: transparent;
    padding: 20px 0;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: background-color 0.4s ease, padding 0.4s ease;
}
.main-header.scrolled {
    position: fixed;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    padding: 15px 0;
}
.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--primary-color);
    text-decoration: none;
    z-index: 10;
}
.main-nav ul {
    list-style: none;
    display: flex; /* Changed from inline for better control */
}
.main-nav ul li {
    margin-right: 30px;
}
.main-nav a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
    padding-bottom: 5px;
}
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}
.main-nav a:hover::after {
    width: 100%;
}
.burger-menu {
    display: none; /* Hidden on desktop */
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
}

/* ... (انسخ نفس كود CSS من الرد السابق هنا، من Hero Section إلى Footer) ... */
/* --- Hero Section --- */
.hero {
    padding-top: 150px;
    padding-bottom: 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}
.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.hero-content {
    max-width: 50%;
}
.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.3;
    margin-bottom: 20px;
}
.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-color);
}
.hero-image img {
    max-width: 500px;
    width: 100%;
    animation: float 6s ease-in-out infinite;
}
@keyframes float {
	0% { transform: translatey(0px); }
	50% { transform: translatey(-20px); }
	100% { transform: translatey(0px); }
}

.btn {
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
}
.btn-primary {
    background-color: var(--primary-color);
    color: var(--background-color);
    border: 2px solid var(--primary-color);
}
.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
    transform: translateY(-3px);
}
.btn i {
    margin-right: 8px;
    transition: transform 0.3s ease;
}
.btn:hover i {
    transform: translateX(-5px);
}

/* --- General Section Styling --- */
section {
    padding: 80px 0;
}
.section-tag {
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}
.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}
.section-tag-center, .section-title-center {
    text-align: center;
}
.section-title-center {
    margin-bottom: 60px;
}


/* --- About Section --- */
.about-section .container {
    display: flex;
    align-items: center;
    gap: 60px;
}
.about-image {
    flex-basis: 40%;
}
.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: -20px -20px 0px 0px rgba(26, 58, 58, 0.1);
}
.about-content {
    flex-basis: 60%;
}
.stats {
    display: flex;
    margin-top: 30px;
    gap: 30px;
}
.stat-item {
    text-align: center;
    border-right: 2px solid var(--secondary-color);
    padding-right: 20px;
}
.stat-item:last-child {
    border: none;
}
.stat-item h3 {
    font-size: 2.5rem;
    color: var(--secondary-color);
}
.stat-item p {
    font-weight: 700;
}

/* --- Methodology Section --- */
.methodology-section {
    background: var(--light-text-color);
}
.timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
}
.timeline-item {
    background: var(--background-color);
    padding: 30px;
    border-radius: 10px;
    border-top: 4px solid var(--primary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.timeline-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
}
.timeline-icon {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

/* --- Services Section --- */
.services-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.service-card {
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #ddd;
    text-align: center;
    transition: all 0.3s ease;
}
.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}
.service-card h4 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}
.service-card.active, .service-card:hover {
    background-color: var(--primary-color);
    color: var(--light-text-color);
    transform: scale(1.05);
    border-color: var(--primary-color);
}
.service-card.active *, .service-card:hover * {
    color: var(--light-text-color);
}

/* --- FAQ Section --- */
.faq-section {
    max-width: 800px;
    margin: auto;
}
.faq-item {
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 20px;
}
.faq-question {
    font-size: 1.2rem;
    font-weight: 700;
    padding: 20px 0;
    cursor: pointer;
    position: relative;
}
.faq-question::after {
    content: '\f078'; /* Font Awesome down arrow */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 10px;
    transition: transform 0.3s ease;
}
.faq-item.active .faq-question::after {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}
.faq-answer p {
    padding-bottom: 20px;
}

/* --- Footer --- */
.main-footer {
    background-color: var(--primary-color);
    color: var(--light-text-color);
    text-align: center;
    padding: 60px 0 20px 0;
}
.main-footer h2 {
    color: var(--background-color);
    font-size: 2.2rem;
    margin-bottom: 15px;
}
.contact-info {
    margin: 30px 0;
}
.contact-link {
    color: var(--background-color);
    text-decoration: none;
    font-size: 1.2rem;
    margin: 0 15px;
    border: 2px solid var(--secondary-color);
    padding: 10px 20px;
    border-radius: 30px;
    transition: all 0.3s ease;
}
.contact-link:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}
.copyright {
    margin-top: 40px;
    font-size: 0.9rem;
    opacity: 0.7;
}


/* --- Responsive Design --- */
@media (max-width: 768px) {
    .container {
        width: 90%;
    }

    /* Mobile Navigation */
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%; /* Start off-screen */
        width: 100%;
        height: 100vh;
        background-color: var(--primary-color);
        transition: right 0.5s ease-in-out;
        z-index: 5;
    }
    .main-nav.active {
        right: 0; /* Slide in */
    }
    .main-nav ul {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100%;
    }
    .main-nav ul li {
        margin: 20px 0;
    }
    .main-nav a {
        color: var(--light-text-color);
        font-size: 1.5rem;
    }
    .burger-menu {
        display: block; /* Show burger on mobile */
    }
    .burger-menu i.fa-times { /* Style for close icon */
        color: var(--light-text-color);
    }
    
    /* Hero Section */
    .hero {
        padding-top: 120px;
        text-align: center;
    }
    .hero .container {
        flex-direction: column-reverse; /* Image above text */
    }
    .hero-content {
        max-width: 100%;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-image img {
        max-width: 350px;
        margin-bottom: 30px;
    }

    /* About Section */
    .about-section .container {
        flex-direction: column;
    }
    .about-image img {
        box-shadow: none;
    }
    .stats {
        justify-content: center;
    }

    /* General Font Sizes */
    .section-title, .section-title-center {
        font-size: 2rem;
    }
    
    /* Footer */
    .contact-info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .contact-link {
        margin: 10px 0;
        width: 80%;
    }
}
scr