* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Tajawal', sans-serif;
}

body {
  background-color: #f5f5f5;
  line-height: 1.6;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #e90404;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 29.5px;
  height: auto;
}

header {
  background-color: #ffffff;
  padding: 20px 10%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  flex-wrap: wrap;
}

header nav a {
  margin-right: 20px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

header nav a:hover {
  color: #e90404;
}

.info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 100px 10%;
  background: linear-gradient(to top left, #ddf7ff, #ffffff);
}

.info-text {
  flex: 1;
  text-align: left;
  padding: 20px;
}

.info-text h1 {
  font-size: 48px;
  color: #222;
}

.info-text p {
  font-size: 20px;
  color: #555;
  margin-top: 10px;
}

.info-text button {
  margin-top: 20px;
  padding: 12px 30px;
  font-size: 16px;
  background-color: #e90404;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.info-text button:hover {
  background-color: #ff3333;
}

.b1 {
  font-weight: bold;
}

.info-img {
  flex: 1;
  text-align: center;
  padding: 20px;
}

.info-img img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.info-2 {
  display: flex;
  flex-wrap: wrap;
  padding: 80px 10%;
  background-color: #ffffff;
  align-items: flex-start;
}

.info-2-img {
  flex: 1;
  max-width: 50%;
  text-align: left;
}

.info-2-img img {
  max-width: 70%;
}

.info-2-content {
  flex: 1;
  padding: 20px;
  text-align: left;
}

.info-2-content h2 {
  font-size: 32px;
  color: #111;
  margin-bottom: 30px;
}

.info-2-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.feature-box {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.feature-box h3 {
  font-size: 18px;
  color: #e90404;
  margin-bottom: 8px;
}

.feature-box p {
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}

.stats-section {
  background-color: #ffffff;
  padding: 60px 10%;
  text-align: center;
  direction: ltr;
}

.stats-title {
  font-size: 32px;
  color: #e90404;
  margin-bottom: 10px;
}

.stats-subtitle {
  font-size: 16px;
  color: #444;
  margin-bottom: 40px;
}

.stats-grid,
.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.stat-item,
.result-item {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.stat-item h3,
.result-item h3 {
  font-size: 24px;
  color: #222;
  margin-bottom: 10px;
}

.stat-item p,
.result-item p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.stats-separator {
  border: none;
  height: 2px;
  background-color: #e90404;
  width: 60px;
  margin: 0 auto 30px auto;
}

.footer {
  background-color: #222;
  color: #fff;
  padding: 40px 10%;
  text-align: left;
  direction: ltr;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 20px;
}

.footer-col {
  flex: 1 1 250px;
}

.footer-col h4 {
  font-size: 18px;
  color: #e90404;
  margin-bottom: 10px;
}

.footer-col p,
.footer-col ul li {
  font-size: 14px;
  color: #ccc;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  font-size: 13px;
  color: #999;
  border-top: 1px solid #444;
  padding-top: 15px;
}

.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}

.fade-in.animate {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    padding: 15px 5%;
    text-align: center;
  }

  header nav {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .info {
    flex-direction: column;
    padding: 50px 5%;
    text-align: center;
  }

  .info-text {
    text-align: center;
  }

  .info-text h1 {
    font-size: 28px;
  }

  .info-text p {
    font-size: 16px;
  }

  .info-text button {
    width: 100%;
  }

  .info-img {
    padding: 10px;
  }

  .info-2 {
    flex-direction: column;
    padding: 40px 5%;
  }

  .info-2-img,
  .info-2-content {
    max-width: 100%;
    text-align: center;
  }

  .info-2-img img {
    max-width: 100%;
    margin: 0 auto;
  }

  .info-2-content h2 {
    font-size: 24px;
  }

  .info-2-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer {
    text-align: center;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
  }

  .footer-col {
    text-align: center;
  }

  .footer-bottom {
    font-size: 12px;
  }
}
