body {
  margin: 0;
  background: #0f172a;
  color: white;
  font-family: Arial;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: #020617;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 15px;
}
button {
  padding: 6px 12px;
  cursor: pointer;
}
.profile {
  width: 400px;
  height: 400px;
  border-radius: 50%;
}
.hero {
  text-align: center;
  padding: 100px 20px;
  min-height: 10vh;
}
#typing {
  display: inline-block;
  min-width: 260px;
  min-height: 32px;
  line-height: 32px;
}
.card {
  margin: 40px;
  padding: 20px;
  background: #1e293b;
  border-radius: 10px;
  opacity: 0;
  transform: translateY(40px);
  transition: 0.5s;
}
.card.show {
  opacity: 1;
  transform: translateY(0);
}

.contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #38bdf8;
  text-decoration: none;
  margin: 10px 0;
}

.contact img {
  width: 24px;
}
.logo{
  text-shadow: #38bdf8;
  color:aliceblue 
}
#langToggle{
  color:aliceblue;
  background-color: #006e00;
}
/* SLIDER */
.slider {
  width: 100%;
  max-width: 900px;
  margin: 40px auto;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.slides {
  position: relative;
  height: 400px;
}

.slides img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: 0.8s;
}

.slides img.active {
  opacity: 1;
}
.dots {
  text-align: center;
  margin-top: 10px;
}

.dots span {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #555;
  margin: 5px;
  border-radius: 50%;
  cursor: pointer;
}

.dots span.active {
  background: #38bdf8;
}