* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  color: rgba(255, 255, 255, 0.925);
  overflow-x: hidden;
}


.bg {
  position: fixed;
  width: 100%;
  height: 100%;
  background: linear-gradient(-45deg, #0f0c29, #302b63, #24243e);
  background-size: 400% 400%;
  animation: gradient 10s ease infinite;
  z-index: -1;
}

@keyframes gradient {
  0% {background-position: 0% 50%;}
  50% {background-position: 100% 50%;}
  100% {background-position: 0% 50%;}
}

header {
  display: flex;
  justify-content: space-between;
  padding: 20px 50px;
}

nav a {
  margin-left: 20px;
  color: rgb(255, 255, 255);
  text-decoration: none;
  font-weight: bold;
  
}


.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero span {
  color: #00fff0;
}

.hero button {
  margin-top: 20px;
  padding: 12px 30px;
  border: none;
  background: #00fff0;
  cursor: pointer;
  font-size: 16px;
}

.glass {
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.1);
  margin: 60px auto;
  padding: 40px;
  width: 80%;
  border-radius: 15px;
  text-align: center;
}

.logo{
  position: absolute;
  left: 165px;
    top: 38px;
  font-size: 40px;
}

.cards {
  display: flex;
  justify-content: center;
  align-items: center;
  color: bisque;
  gap: 20px;
  margin: 40px;

}

.card {
  width: 200px;
  padding: 30px;
  background: rgba(255,255,255,0.15);
  border-radius: 15px;
  transition: 0.4s;
  color: white;
  text-decoration: none;
}
.text{
  text-decoration: none;
}
.heading{
  text-align: center;
}

.card:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px #00fff0;
  text-decoration: none;
}

/* Contact */
input, textarea {
  width: 80%;
  padding: 10px;
  margin: 10px;
  border-radius: 10px;
  border: none;
}

.footer {
  text-align: center;
  padding: 20px;
  opacity: 0.7;
}
.img{
  width: 100px;
  height: 100px;
  border-radius: 100%;
}