body, html {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.hero-container {
  background: linear-gradient(to bottom right,  rgb(255, 255, 255),rgb(154, 254, 154));
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 100vh;
  color: white;
}



.navbar {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
}

.logo img {
  height: 120px;
}

.hero-text {
  position: relative;
  z-index: 2;
  text-align: center;
  top: 25%;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.cards-container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 250px;
  padding-bottom: 50px;
}

.card {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 15px;
  width: 250px;
  text-align: center;
  backdrop-filter: blur(5px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

 h3 {
  margin-bottom: 10px;
  color: blue;
}

.Contact {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 20px;
  padding-top: 8px;
  border-radius: 15px;
  width: 100px;
  height: 10px;
  text-align: center;
  backdrop-filter: blur(5px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.Contact:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.Contact h3 {
  margin-bottom: 10px;
}