* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Cairo", sans-serif;
  background: #f4f4f4;
  direction: rtl;
  overflow-x: hidden;
}

.section {
  width: 100vw;
  min-height: 100vh;
  background-image: url("./imges/Desktop - 6.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 40px;
}

header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}

header .logo  {
  background-color: white;
  border-radius: 20px;
 
  display: block;
  padding:5px 30px ;
  img{

  }
}

header h1 {
  font-size: 36px;
  font-weight: bold;
  color: white;
  text-align: center;
}

header p {
  font-size: 20px;
  font-weight: bold;
  color: white;
  text-align: center;
  margin-bottom: 0px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.cards a {
  text-decoration: none;
}

.card {
  width: 100%;
  max-width: 500px;
  background: linear-gradient(#ffffff, #eeeded80);
  border-radius: 20px;
  padding: 20px;
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(42px);
  -webkit-backdrop-filter: blur(42px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
}

.card img {
  width: 100%;
  height: auto;
  display: block;
}

.card:hover {
  transform: translateY(-5px);
}

.card-body h2 {
  font-size: 32px;
  font-weight: bold;
  color: white;
  text-align: center;
}

.card-body p {
  font-size: 18px;
  font-weight: bold;
  color: white;
  text-align: center;
}

/* ✅ Responsive Styles */
@media (max-width: 768px) {
  header h1 {
    font-size: 28px;
  }

  header p {
    font-size: 16px;
  }

  .card-body h2 {
    font-size: 24px;
  }

  .card-body p {
    font-size: 16px;
  }

  .section {
    padding: 20px;
  }

  .cards {
    flex-direction: column;
    gap: 20px;
  }

  .card {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  header .logo svg {
    width: 220px;
    height: auto;
  }

  header h1 {
    font-size: 24px;
  }

  header .logo svg {
    background-color: white;
    border-radius: 20px;
    width: 320px;
    height: 70px;
    display: block;
    margin-bottom:10px;
  }

  .card-body h2 {
    font-size: 20px;
  }

  .card-body p {
    font-size: 14px;
  }
}
