*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Inter',sans-serif;
  background:#0b0f19;
  color:white;
}

/* NAVBAR */

.navbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 8%;
  position:fixed;
  width:100%;
  background:#0b0f19;
  z-index:1000;
}

.logo{
  font-size:24px;
  font-weight:700;
  color:#00ff9d;
}

.nav-links{
  display:flex;
  list-style:none;
  gap:30px;
}

.nav-links a{
  color:white;
  text-decoration:none;
}

/* HERO */

.hero{
  min-height:100vh;
  display:flex;
  align-items:center;
  padding:0 8%;
  background:
  radial-gradient(circle at top right,
  rgba(0,255,157,0.15),
  transparent 40%);
}

.hero-content h1{
  font-size:72px;
  margin:10px 0;
}

.subtitle{
  color:#00ff9d;
  letter-spacing:3px;
  text-transform:uppercase;
}

.description{
  color:#a0aec0;
  max-width:600px;
  line-height:1.7;
}

.hero-buttons{
  margin-top:30px;
  display:flex;
  gap:20px;
}

.btn-primary,
.btn-secondary{
  padding:14px 28px;
  border-radius:8px;
  text-decoration:none;
  transition:0.3s;
}

.btn-primary{
  background:#00ff9d;
  color:black;
}

.btn-secondary{
  border:1px solid #00ff9d;
  color:#00ff9d;
}
/* thumbsup */
.thumbsup-img {
    width: 200px;
    height: 200px;
    object-fit: cover; /* Crops the image to fit a 150x150 square perfectly */
    border-radius: 50%; /* Optional: makes the profile picture a circle */
}


/* SKILLS */

.skills-section{
  padding:100px 8%;
}

.skill{
  margin-top:30px;
}

.skill-top{
  display:flex;
  justify-content:space-between;
  margin-bottom:10px;
}

.skill-bar{
  background:#1e293b;
  height:10px;
  border-radius:20px;
}

.skill-progress{
  background:#00ff9d;
  height:100%;
  border-radius:20px;
}

/* SERVICES */

.services{
  padding:100px 8%;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:24px;
  margin-top:40px;
}

.service-card{
  background:#121826;
  padding:30px;
  border-radius:20px;
  border:1px solid rgba(255,255,255,0.08);
  transition:0.3s;
}

.service-card:hover{
  transform:translateY(-8px);
  border-color:#00ff9d;
}

/* CONTACT */

.contact{
  padding:100px 8%;
}

.contact-form{
  display:flex;
  flex-direction:column;
  gap:20px;
  max-width:600px;
}

.contact-form input,
.contact-form textarea{
  padding:16px;
  background:#121826;
  border:none;
  border-radius:10px;
  color:white;
}

.contact-form button{
  padding:16px;
  border:none;
  background:#00ff9d;
  color:black;
  border-radius:10px;
  cursor:pointer;
}