@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;700;800;900&display=swap');

:root {
    --primary-color: #0B2545;
    --accent-color: #C79A40;
    --secondary-bg: #f7f7f7;
    --text-dark: #2c2c2c;
    --text-light: #ffffff;
    --shadow-light: 0 4px 15px rgba(0, 0, 0, 0.12);
    --shadow-dark: 0 6px 20px rgba(0, 0, 0, 0.4);
}

body {
    font-family: 'Tajawal', sans-serif; 
    margin: 0; padding: 0; direction: rtl; 
    background-color: #ffffff; color: var(--text-dark); line-height: 1.7;
}

.section { padding: 80px 5%; text-align: center; }
.section h2 { color: var(--primary-color); font-size: 2.5em; margin-bottom: 40px; font-weight: 900; position: relative; padding-bottom: 15px; }
.section h2::after { content: ''; position: absolute; bottom: 0; right: 50%; transform: translateX(50%); width: 80px; height: 4px; background-color: var(--accent-color); border-radius: 2px; }

.primary-btn-cta, .secondary-btn-cta { text-decoration: none; padding: 15px 35px; border-radius: 8px; font-weight: 700; font-size: 1.1em; display: inline-block; transition: all 0.3s ease; margin: 10px; border: 2px solid transparent; }
.primary-btn-cta { background-color: var(--accent-color); color: var(--primary-color); box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); }
.secondary-btn-cta { background-color: transparent; border-color: var(--accent-color); color: var(--accent-color); }
.cta-whatsapp-header { background-color: #25D366; color: white; border-color: #25D366; padding: 10px 20px; font-size: 1em; }

.main-header { background-color: rgba(199, 154, 64, 0.15); position: sticky; top: 0; z-index: 1000; display: flex; justify-content: space-between; align-items: center; padding: 20px 5%; transition: background-color 0.4s; }
.header-logo-img { max-height: 60px; }
.main-nav ul { list-style: none; margin: 0; padding: 0; display: flex; }
.main-nav ul li a { color: var(--primary-color); text-decoration: none; padding: 0 15px; font-weight: 700; }

.hero-section { background: var(--primary-color); color: var(--text-light); padding: 160px 5% 120px; text-align: center; }
.hero-section h1 { font-size: 3.5em; margin-bottom: 25px; color: var(--accent-color); font-weight: 900; }
.hero-section p { font-size: 1.5em; margin-bottom: 50px; color: var(--text-light); }

.about-section { text-align: right; background-color: #ffffff; }
.about-content { max-width: 1000px; margin: 0 auto; display: flex; align-items: center; gap: 40px; }
.about-image img { max-width: 300px; height: auto; border-radius: 50%; border: 5px solid var(--accent-color); box-shadow: var(--shadow-dark); }

.experience-section { background-color: var(--secondary-bg); text-align: center; }
.licensing-header { font-size: 1.8em; font-weight: 700; color: var(--primary-color); margin-bottom: 30px; position: relative; padding-bottom: 10px; }
.licensing-header::after { content: ''; position: absolute; bottom: 0; right: 50%; transform: translateX(50%); width: 60px; height: 3px; background-color: var(--accent-color); }
.licensing-logos-container { max-width: 1000px; margin: 0 auto; }
.logos-row { display: flex; justify-content: center; gap: 40px; margin-bottom: 20px; flex-wrap: wrap; align-items: center; }
.logo-item { display: flex; flex-direction: column; align-items: center; max-width: 350px; }
.individual-logo { max-width: 350px; height: auto; }

.specialties-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; max-width: 1200px; margin: 0 auto; }
.spec-card { background-color: var(--secondary-bg); padding: 30px; border-radius: 8px; box-shadow: var(--shadow-light); text-align: center; border-bottom: 5px solid var(--accent-color); }
.detail-item { max-width: 900px; margin: 50px auto; padding: 30px; text-align: right; border-radius: 8px; border-right: 6px solid var(--accent-color); background-color: #ffffff; }
.detail-item.dark-bg-item { background-color: var(--primary-color); color: var(--text-light); }
.detail-item ul { list-style: none; padding: 0; }
.detail-item ul li { padding: 10px 0; border-bottom: 1px dashed #ccc; padding-right: 30px; position: relative; }
.detail-item ul li::before { content: "\2713"; color: var(--accent-color); position: absolute; right: 0; }

.contact-form { max-width: 600px; margin: 40px auto 0; padding: 40px; border-radius: 8px; background-color: var(--secondary-bg); text-align: right; }
.form-group { margin-bottom: 15px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 10px; border: 1px solid #ddd; border-radius: 8px; box-sizing: border-box; }

.fixed-whatsapp-cta { position: fixed; bottom: 30px; left: 30px; z-index: 10000; background-color: #25D366; color: white; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8em; box-shadow: 0 4px 15px rgba(0,0,0,0.3); text-decoration: none; }
.main-footer { background-color: var(--primary-color); color: #ccc; text-align: center; padding: 25px 5%; }

@media (max-width: 768px) {
    .about-content { flex-direction: column; text-align: center; }
    .hero-section h1 { font-size: 2.2em; }
    .logos-row { flex-direction: column; gap: 30px; }
    .individual-logo { max-width: 180px; }
}