
    /* قسم الأهداف */
.objectives {
  background-color: #fffafc;
  padding: 80px 0;
  text-align: center;
  direction: rtl;
}

.section-title {
  font-size: 2.2em;
  margin-bottom: 50px;
  color: #7b1fa2; /* بنفسجي من الشعار */
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background-color: #f57c00; /* برتقالي من الشعار */
  margin: 10px auto;
  border-radius: 5px;
}

.objectives-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.objective-box {
  background: #fff;
  border-radius: 15px;
  padding: 30px 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.objective-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.objective-box i {
  font-size: 2.5em;
  color: #f57c00;
  margin-bottom: 15px;
}

.objective-box h3 {
  color: #7b1fa2;
  font-size: 1.3em;
  margin-bottom: 10px;
}

.objective-box p {
  color: #555;
  font-size: 1em;
  line-height: 1.6;
}

        /* Footer */
        footer {
            background: #222;
            color: #ddd;
            padding: 60px 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column h3 {
            color: white;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: var(--gradient);
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--primary-orange);
            padding-left: 5px;
        }

        .footer-social {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .footer-social a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #333;
            color: white;
            transition: var(--transition);
        }

        .footer-social a:hover {
            background: var(--gradient);
            transform: translateY(-3px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
        }

        /* WhatsApp Button */
        .whatsapp-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: #25D366;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
            z-index: 100;
            transition: var(--transition);
        }

        .whatsapp-btn:hover {
            transform: scale(1.1);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* RTL Support */
        html[dir="rtl"] {
            text-align: right;
        }

        html[dir="rtl"] .header-container {
            flex-direction: row-reverse;
        }

        html[dir="rtl"] nav ul li {
            margin-left: 0;
            margin-right: 30px;
        }

        html[dir="rtl"] .language-switcher {
            margin-left: 0;
            margin-right: 20px;
        }

        html[dir="rtl"] .hero-btns {
            flex-direction: row-reverse;
        }

        html[dir="rtl"] .about-text h2 {
            text-align: right;
        }

        html[dir="rtl"] .footer-column h3::after {
            left: auto;
            right: 0;
        }

        html[dir="rtl"] .footer-links a:hover {
            padding-left: 0;
            padding-right: 5px;
        }

        html[dir="rtl"] .whatsapp-btn {
            right: auto;
            left: 30px;
        }

        /* ==== جعل الهيدر متجاوب مع الهاتف ==== */
/* === إعدادات عامة للقائمة === */
header nav ul {
  list-style: none;
  display: flex;
  gap: 10px;
  transition: all 0.4s ease;
}

/* 🌐 للهواتف */
@media (max-width: 768px) {
  header nav ul {
    position: fixed;
    top: 0;
    right: -100%; /* تبدأ مخفية خارج الشاشة */
    width: 70%;
    height: 100vh;
    background-color: #8902f19a;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: -5px 0 15px rgba(0,0,0,0.2);
    transition: right 0.4s ease;
    z-index: 999;
  }

  header nav ul.show {
    right: 0; /* تظهر من الجانب الأيمن */
  }

  .menu-toggle {
    display: block;
    cursor: pointer;
    z-index: 1000;
  }

  .menu-toggle i {
    font-size: 1em;
    color: #ffffff; /* لون الموقع */
  }

  header nav ul li {
    margin: 20px 0;
  }

  header nav ul li a {
    font-size: 1.3em;
    color: #333;
    text-decoration: none;
  }

  header nav ul li a:hover {
    color: #ff7a00;
  }
}
