* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', sans-serif;
    margin: 0;
    padding: 0;
    background: #f4f4f4;
    direction: rtl;
    overflow-x: hidden;
}

.section {
    width: 100vw;
    height: 100vh;
    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 svg {
    background-color: white;
    border-radius: 20px;
    width: 320px;
    height: 105px;
    display: block;
    padding: 10px;
    margin-bottom:10px;
}

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;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
}

.cards a {
    text-decoration: none;
}

.card {
    width: 500px;
    height: 400px;
    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: 36px;
    font-weight: bold;
    color: white;
    text-align: center;
}

.card-body p {
    font-size: 20px;
    font-weight: bold;
    color: white;
    text-align: center;
}

@media (max-width: 768px) {
  .cards {
    flex-direction: column;
    align-items: center;
  }
  .section{
    height: 100%;
  }

  .cards a {
    max-width: 100%;
  }

  .card {
    height: auto;
    padding: 15px;
  }

  .card-body h2 {
    font-size: 22px;
  }

  .card-body p {
    font-size: 16px;
  }
}