.blogs-section {
  padding: 60px 0;
  background: #f5f7fa;
}

.blogs-section h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #0a2a66;
}

.blogs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.blog-box {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.blog-box h3 {
  color: #0a2a66;
  margin-bottom: 10px;
  font-size: 18px;
}

.blog-box p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.read-more {
  display: inline-block;
  background: #0a2a66;
  color: #fff;
  padding: 10px 15px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
}

.read-more:hover {
  background: #1140a0;
}




body{
    margin: 0 0;
    background-color: #ffff;
    font-family: 'Cairo', sans-serif;
}


/*navbar*/

/* Navbar */
    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 20px;
      background-color: #FFFFFF; /* أزرق فاتح */
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .logo {
      font-weight: bold;
      font-size: 24px;
      width: 200px;
      height: 100px;
      border-radius: 50%;
      color: #1B1B1B; /* أسود داكن */
    }

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

    .nav-links li a {
      text-decoration: none;
      color: #1B1B1B;
      font-weight: 500;
      transition: color 0.3s;
    }

    .nav-links li a:hover {
      color: #FFF3B0; /* أصفر فاتح */
    }

    .lang-btn {
      padding: 5px 10px;
      background-color: #FFF3B0; /* أصفر فاتح */
      border: none;
      border-radius: 5px;
      cursor: pointer;
      font-weight: bold;
    }

    /* Mobile */
    .menu-icon {
      display: none;
      font-size: 28px;
      cursor: pointer;
    }

    @media (max-width: 992px) {
      .nav-links {
        position: fixed;
        top: 60px;
        right: -100%;
        height: 100vh;
        width: 250px;
        background-color: #ffff;
        flex-direction: column;
        gap: 20px;
        padding: 30px;
        transition: right 0.3s;
      }

      .nav-links.show {
        right: 0;
      }

      .menu-icon {
        display: block;
      }

      .navbar {
        justify-content: space-between;
      }
    }








    

/*contact*/
.contact-section {
  padding: 40px 20px;
  background: #fff;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.contact-title {
  flex: 1 1 40%;
}

.contact-title h2 {
  font-size: 32px;
  color: #d32f2f;
  margin-bottom: 15px;
}

.contact-title p {
  font-size: 18px;
  color: #555;
}

.contact-form {
  flex: 1 1 55%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form label {
  font-size: 16px;
  color: #333;
  margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  width: 90%;
}

.contact-form button {
  padding: 14px;
  background: #d32f2f;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #b71c1c;
}

/* 📱 للموبايل */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-title {
    text-align: center;
  }

  .contact-title h2 {
    font-size: 28px;
  }
}







/*footer*/
.footer {
  background-color: #1B1B1B;
  color: #fff;
  padding: 40px 20px;
}

.footer a{
  color: #fff;
}

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

.footer-logo img {
  width: 300px;
}

/* قسم التواصل */
.footer-contact h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.footer-contact p {
  margin: 5px 0;
  font-size: 16px;
}


.social-icons {
  margin-top: 15px;
  display: flex;
  gap: 15px;
}

.social-icons a {
  font-size: 20px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  transition: transform 0.3s;
}

.social-icons a:hover {
  transform: scale(1.2);
}

/* ألوان الأيقونات حسب المنصة */
.social-icons .facebook { background-color: #3b5998; color: #fff; }
.social-icons .instagram { background-color: #E1306C; color: #fff; }
.social-icons .tiktok { background-color: #000000; color: #fff; }

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-logo img {
    margin-bottom: 20px;
  }

  .social-icons {
    justify-content: center;
  }
}


.footer-bottom {
  background-color: #151515; /* لون أغمق من Footer الأساسي */
  color: #fff;
  text-align: center;
  padding: 15px 20px;
  font-size: 14px;
}

.footer-bottom a {
  color: #FFA500; /* لون مميز للرابط */
  text-decoration: none;
  font-weight: bold;
}

.footer-bottom a:hover {
  text-decoration: underline;
}
