

/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* ===== NAVBAR ===== */
.navbar {
  background: #004aad;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none; /* لإزالة أي underline لو الرابط */
}

.logo {
  height: 50px;
}

.site-name {
  font-size: 1.5em;
  font-weight: bold;
  color: white; /* نفس اللون الأزرق */
  text-decoration: none; /* نشيل الخط */
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover, nav a.active {
  color: #ff8c00;
}

.menu-toggle {
  display: none;
  color: white;
  font-size: 1.8em;
  cursor: pointer;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav ul {
    display: none;
    flex-direction: column;
    background-color: #004aad;
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    text-align: center;
    padding: 20px 0;
  }

  nav ul.show {
    display: flex;
  }
}

/* ===== ABOUT SECTION ===== */
.about-section {
  background: linear-gradient(135deg, #f5f9ff, #ffffff);
  padding: 80px 20px;
  text-align: center;
}

.about-section h2 {
  font-size: 2.5em;
  color: #004aad;
  margin-bottom: 15px;
}

.about-section h2 span {
  color: #ff8c00;
}

.about-section .intro {
  max-width: 800px;
  margin: 0 auto 50px;
  font-size: 1.2em;
  color: #444;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.about-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  padding: 30px 20px;
  transition: 0.3s ease;
}

.about-card i {
  font-size: 2.5em;
  color: #ff8c00;
  margin-bottom: 15px;
}

.about-card h3 {
  color: #004aad;
  margin-bottom: 10px;
}

.about-card:hover {
  transform: translateY(-8px);
}

/* ⭐ Reviews Section */
.reviews-section {
  padding: 70px 20px;
  text-align: center;
  background: #f4f7fb;
}

.reviews-section h2 {
  font-size: 2.3rem;
  color: #004aad;
  margin-bottom: 40px;
}

.reviews-section h2 span {
  color: #ff8c00;
}

.reviews-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: auto;
}

.review-card {
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: 0.3s;
}

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

.review-icon {
  font-size: 50px;
  color: #004aad;
  margin-bottom: 15px;
}

.review-card p {
  margin: 15px 0;
  line-height: 1.6;
  color: #555;
}

.stars {
  font-size: 20px;
  color: gold;
  margin-top: 10px;
}
.review-slider {
  position: relative;
  width: 100%;
  max-width: 600px; /* تقدر تعدّلي الحجم */
  margin: 40px auto;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.slides-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  object-fit: contain;
}

.prev-btn,
.next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
}

.prev-btn { left: 10px; }
.next-btn { right: 10px; }

.prev-btn:hover,
.next-btn:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

/* ================== FOOTER ================== */
footer {
  background: linear-gradient(90deg, #0056b3, #ff6600);
  color: white;
  padding: 40px 20px;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-logo img {
  height: 50px;
  margin-bottom: 10px;
}

.footer-logo h2 {
  font-size: 24px;
}


.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* يخلي الكل يبدأ من نفس الخط */
  gap: 8px; /* مسافة متساوية بين كل لينك */
}

.footer-links a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  transition: color 0.3s;
  padding-left: 2px; /* يخليهم كلهم بنفس البداية */
}

.footer-links a i {
  margin-right: 8px;
  width: 20px; /* يضمن إن الأيقونات تاخد نفس العرض */
  text-align: center;
}


.footer-links a:hover {
  color: #ffd9b3;
}

.footer-social a {
  color: white;
  font-size: 24px;
  margin: 0 10px;
  transition: 0.3s;
}

.footer-social a:hover {
  color: #ffd9b3;
}

footer hr {
  margin: 20px 0;
  border: none;
  border-top: 1px solid #ffffff44;
}

/* ================== RESPONSIVE ================== */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav ul {
    display: none;
    flex-direction: column;
    background-color: #004aad;
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    text-align: center;
    padding: 20px 0;
    gap: 20px;
  }

  nav ul.show {
    display: flex;
  }


  .about {
    flex-direction: column;
    padding: 40px 20px;
  }

 



  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
