body {
  font-family: 'Cairo', sans-serif;
  margin: 0;
  background-color: #fff;
  color: #333;
}

header {
  background-color: #00AEEF;
  color: white;
  padding: 20px;
  height: 150px;
  
}

header h1 {
  margin-right: 15px;
}
header img {
  height: 50px;
}
.logo-img {
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.container {
  max-width: 1200px;
  margin: 30px auto;
  padding: 0 20px;
}

.title {
  text-align: center;
  font-size: 28px;
  color: #00AEEF;
  margin-bottom: 10px;
}

.subtitle {
  text-align: center;
  font-size: 16px;
  margin-bottom: 40px;
}

.subtitle2 {
  color: #00AEEF;
  text-align: center;
  font-size: 20px;
  margin-bottom: 40px;
}

.services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  justify-content: center;
}

.card {
  border: 2px solid #00AEEF;
  border-radius: 12px;
  padding: 30px 25px;
  text-align: center;
  background-color: white;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.card img {
  width: 160px;
  height: 160px;
  margin-bottom: 15px;
   filter: hue-rotate(180deg) saturate(0.6);
}

.card h3 {
  font-size: 22px;
  color: #222;
  margin-bottom: 10px;
}

.card p {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.8;
}

.card a {
  display: inline-block;
  background-color: #00AEEF;
  color: white;
  padding: 12px 30px;
  font-size: 15px;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.card:active {
  transform: translateY(4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.simple-footer {
  background-color: #000; 
  color: #fff; 
  text-align: center;
  padding: 15px 0;
  font-size: 16px;
  margin-top: 40px;
  direction: rtl; 
}


@media (max-width: 768px) {
  header {
    padding: 15px;
    text-align: center;
  }
  .logo-img {
    height: 50px;
  }

  header h1 {
    font-size: 24px;
    margin-right: 0;
  }
 header div {
    flex-direction: column;
    gap: 10px;
  }

  header img {
    height: 40px;
  }
  .container {
    padding: 0 10px;
  }

  .title {
    font-size: 22px;
  }

  .subtitle, .subtitle2 {
    font-size: 14px;
    margin-bottom: 25px;
  }

  .services {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .card {
    padding: 25px 20px;
    height: auto;
  }

  .card img {
    width: 130px;
    height: 130px;
  }

  .card h3 {
    font-size: 20px;
  }

  .card p {
    font-size: 14px;
    line-height: 1.6;
  }

  .card a {
    padding: 10px 20px;
    font-size: 14px;
  }
}
