




/* إضافة CSS الأصلي هنا مع تحسينات React */
.hero_area {
  position: relative;
}

/* تحسينات للاستجابة */
@media (max-width: 768px) {
  .navbar-collapse {
    background: white;
    padding: 15px;
    border-radius: 5px;
    margin-top: 10px;
  }
}

/* تحسينات للأزرار العائمة */
.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.floating-buttons a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.floating-buttons a:hover {
  transform: scale(1.1);
}

.call-button {
  background: #28a745;
}

.whatsapp-button {
  background: #25D366;
}

/* تحسينات للشهادات */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* تنسيقات الصفحات */
.about-page,
.services-page,
.contact-page,
.login-page {
  padding: 80px 0;
}

/* صفحة من نحن */
.stat-box {
  text-align: center;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
  margin: 10px 0;
}

.stat-box h4 {
  font-size: 2rem;
  color: #007bff;
  margin-bottom: 10px;
}

/* صفحة الخدمات */
.service-card {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  height: 100%;
  transition: transform 0.3s ease;
}

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

.service-icon {
  text-align: center;
  margin-bottom: 20px;
}

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

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

/* صفحة اتصل بنا */
.contact-form {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-info {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.contact-item i {
  font-size: 24px;
  color: #007bff;
  margin-left: 15px;
  margin-top: 5px;
}

.contact-item h4 {
  margin-bottom: 5px;
  color: #333;
}

/* صفحة تسجيل الدخول */
.auth-container {
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.auth-header {
  text-align: center;
  margin-bottom: 30px;
}

.auth-header h2 {
  color: #333;
  margin-bottom: 10px;
}

.btn-block {
  width: 100%;
  padding: 12px;
}

.btn-link {
  background: none;
  border: none;
  color: #007bff;
  text-decoration: underline;
  cursor: pointer;
}

.auth-footer {
  text-align: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

/* تحسينات للاستجابة */
@media (max-width: 768px) {
  .about-page,
  .services-page,
  .contact-page,
  .login-page {
    padding: 40px 0;
  }
  
  .service-card,
  .contact-form,
  .contact-info,
  .auth-container {
    padding: 20px;
  }
  
  .contact-item {
    flex-direction: column;
    text-align: center;
  }
  
  .contact-item i {
    margin: 0 0 10px 0;
  }
}