/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.7rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    height: 38px;
    margin-right: 0.2rem;
}

.logo-arabic {
    font-family: 'Amiri', serif;
    font-size: 2.1rem;
    color: #4B3A1A;
    font-weight: 700;
    margin-right: 0.3rem;
    letter-spacing: 0.01em;
    line-height: 1;
}

.logo-english {
    font-family: 'Merriweather', serif;
    font-size: 1.25rem;
    color: #4B3A1A;
    font-weight: 400;
    letter-spacing: 0.04em;
    margin-top: 0.2rem;
}

.nav {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.nav-list {
    display: flex;
    gap: 3.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list a {
    text-decoration: none;
    color: #6B7280;
    font-weight: 600;
    font-size: 1.08rem;
    letter-spacing: 0.01em;
    transition: color 0.2s;
}

.nav-list a:hover {
    color: #2b5314;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: 1.5rem;
}

.nav-toggle-bar {
    width: 24px;
    height: 3px;
    background: #6B7280;
    margin: 3px 0;
    border-radius: 2px;
    transition: all 0.3s;
}

/* Hero Section - Match photo colors exactly */
.hero {
    background: #F8FAFC;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    width: 100%;
}

.hero-text {
    padding-right: 2rem;
    text-align: center;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-text p {
    font-size: 1.2rem;
    color: #6B7280;
    margin-bottom: 3rem;
    line-height: 1.6;
    font-weight: 400;
}

.cta-button {
    background: #2b5314;
    color: white;
    border: 1px solid #2b5314;
    padding: 16px 28px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(43, 83, 20, 0.3);
    display: inline-block;
    width: 387px;
    height: 60px;
    line-height: 28px;
    text-align: center;
}

.cta-button:hover {
    background: #1f3d0f;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(43, 83, 20, 0.4);
}

/* Hero Images - Exact match to photo layout */
.hero-images {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 592px;
    height: 789.33px;
}

.image-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.image-item {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* About Section - White background as in photo */
.about {
    padding: 80px 0;
    background: #FFFFFF;
}

.about h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    text-align: center;
    margin-bottom: 1.5rem;
}

.about-description {
    font-size: 1.1rem;
    color: #6B7280;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.6;
}

.about-image {
    margin: 3rem 0 4rem;
    border-radius: 15px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.about-text-section {
    text-align: center;
}

.about-text-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
}

.about-text-section p {
    color: #6B7280;
    line-height: 1.6;
    font-size: 1rem;
}

/* Work Opportunities Section - Light gray background as in photo */
.opportunities {
    padding: 80px 0;
    background: #F9FAFB;
}

.opportunities h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6B7280;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.opportunities-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.opportunities-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.opportunity-item {
    margin-bottom: 2.5rem;
}

.opportunity-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2b5314;
    margin-bottom: 0.5rem;
}

.opportunity-item .organization {
    font-size: 0.95rem;
    color: #10B981;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.opportunity-item .summary {
    color: #6B7280;
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.opportunity-item .salary {
    font-size: 0.9rem;
    color: #111827;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.opportunity-item .target-group {
    font-size: 0.85rem;
    color: #9CA3AF;
    font-style: italic;
}

.opportunities-image {
    border-radius: 15px;
    overflow: hidden;
    height: 500px;
}

.opportunities-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Education Section - Match reference photo */
.education {
    padding: 80px 0 0 0;
    background: #fff;
}

.education-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem 4rem;
    align-items: start;
    margin-bottom: 3rem;
}

.education-label {
    display: block;
    font-size: 1rem;
    color: #4B4B3B;
    font-weight: 600;
    margin-bottom: 1.2rem;
    letter-spacing: 0.01em;
}

.education-title {
    font-size: 2.3rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 1.2rem;
    line-height: 1.1;
}

.education-desc {
    font-size: 1.1rem;
    color: #5A6A7A;
    line-height: 1.6;
    margin-bottom: 0;
}

.education-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.education-feature h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 0.3rem;
}

.education-feature p {
    font-size: 1rem;
    color: #5A6A7A;
    line-height: 1.5;
    margin: 0;
}

.education-photo {
    width: 100%;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    background: #eee;
}

.education-photo img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Real Stories Section - Match reference photo */
.success-stories {
    padding: 80px 0;
    background: #fff;
}

.stories-label {
    display: block;
    font-size: 1rem;
    color: #4B4B3B;
    font-weight: 600;
    margin-bottom: 1.2rem;
    letter-spacing: 0.01em;
}

.stories-title {
    font-size: 2.3rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 1.2rem;
    line-height: 1.1;
    text-align: left;
}

.stories-desc {
    font-size: 1.1rem;
    color: #5A6A7A;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 600px;
    text-align: left;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem 2rem;
}

.story-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: none;
    box-shadow: none;
    border: none;
}

.story-item img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 1.1rem;
}

.story-name {
    font-size: 1.08rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 0.2rem;
}

.story-job {
    font-size: 1rem;
    color: #444;
    font-weight: 400;
    text-transform: none;
}

/* Contact Section - Split background as in photo */
.contact {
    padding: 80px 0;
    background: linear-gradient(90deg, #111827 50%, #FFFFFF 50%);
    position: relative;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    color: white;
}

.contact-info h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: white;
}

.contact-form {
    color: #111827;
}

.contact-form h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #111827;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.contact-item p {
    color: #9CA3AF;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.contact-item a {
    color: #2b5314;
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    color: #1f3d0f;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.95rem;
    color: #111827;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    background: #FFFFFF;
    color: #111827;
    font-size: 0.95rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2b5314;
    box-shadow: 0 0 0 3px rgba(43, 83, 20, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9CA3AF;
}

.submit-button {
    background: #2b5314;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    background: #1f3d0f;
}

/* Footer */
.footer {
    background: #111827;
    color: white;
    padding: 2rem 0;
}

.footer-content {
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.footer-links a {
    color: #9CA3AF;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer p {
    color: #6B7280;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-text {
        padding-right: 0;
    }
    
    .hero-text h1 {
        font-size: 2.8rem;
    }
    
    .image-grid {
        max-width: 350px;
        height: 350px;
        margin: 0 auto;
    }
    
    .opportunities-content,
    .education-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 1rem;
    }
    
    .header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .image-grid {
        max-width: 280px;
        height: 280px;
    }
    
    .about h2,
    .opportunities h2,
    .education-text h2,
    .success-stories h2 {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .about,
    .opportunities,
    .education,
    .success-stories,
    .contact {
        padding: 60px 0;
    }
}

@media (max-width: 900px) {
    .education-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .education-right {
        margin-top: 2rem;
    }
    .nav-list {
        gap: 2rem;
    }
    .logo-arabic {
        font-size: 1.5rem;
    }
    .logo-english {
        font-size: 1rem;
    }
}

@media (max-width: 600px) {
    .education {
        padding: 40px 0 0 0;
    }
    .education-title {
        font-size: 1.5rem;
    }
    .education-label {
        font-size: 0.95rem;
    }
    .education-photo {
        border-radius: 5px;
    }
}

@media (max-width: 1100px) {
    .stories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .stories-grid {
        grid-template-columns: 1fr;
    }
    .stories-title, .stories-desc {
        text-align: left;
    }
    .nav-list {
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        padding: 1.5rem 0;
        box-shadow: 0 4px 16px rgba(0,0,0,0.07);
        display: none;
    }
    .nav-list.active {
        display: flex;
    }
    .nav-toggle {
        display: flex;
    }
    .nav {
        justify-content: flex-end;
    }
    .nav-container {
        padding: 0.7rem 10px;
    }
} 