* {
  font-family: 'Poppins', sans-serif;
}

body {
  background: linear-gradient(120deg, #0f2027, #203a43, #2c5364);
  color: white;
}

/* NAVBAR */
.custom-nav {
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(10px);
}

.navbar-brand {
  font-weight: 700;
  color: #00f2fe !important;
}

.nav-link {
  color: white !important;
  margin: 0 10px;
}

.btn-nav {
  background: #00f2fe;
  color: black !important;
  border-radius: 20px;
  padding: 6px 16px;
}

.close-icon{
    display: none;
}


/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero span {
  color: #00f2fe;
}

.profile-img {
  width: 280px;
  border-radius: 50%;
  box-shadow: 0 0 30px #00f2fe;
}

/* SECTIONS */
.section {
  padding: 80px 0;
}

.glass {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
}

.title {
  text-align: center;
  margin-bottom: 40px;
}

/* SKILLS */
.skill {
  margin-bottom: 20px;
}

.progress {
  height: 20px;
}

.progress-bar {
  background: #00f2fe;
  color: black;
  font-weight: bold;
}

/* PROJECTS */
.project-card {
  background: rgba(0,0,0,0.4);
  border-radius: 15px;
  overflow: hidden;
  text-align: center;
  transition: 0.4s;
}

.project-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.project-card:hover {
  transform: translateY(-10px);
}

/* CONTACT */
.contact {
  background: black;
  text-align: center;
}

