.navbar {
  background: rgba(255, 255, 255, 0.3) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar .nav-link,
.navbar .navbar-brand {
  color: #3b3b3b !important;
  /* light text for contrast */
  font-weight: 500;
}

.navbar .nav-link:hover {
  color: #000000 !important;
  /* black on hover */
  font-weight: 750;


}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}

#projects img {
  border-radius: 5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s;
}

#projects img:hover {
  transform: scale(1.05);
}

.glass-navbar,
.glass-footer {
  background: rgba(50, 50, 50, 0.3);
  /* Transparent white */
  backdrop-filter: blur(10px);
  /* Glass blur effect */
  -webkit-backdrop-filter: blur(10px);
  /* Safari support */
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  /* Subtle border for clarity */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  /* Shadow to stand out on white */
}

.glass-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: none;
  text-align: center;
  padding: 20px;

}

.navbar-brand img {
  border-radius: 50%;
  /* makes logo circular if it's square */
  object-fit: cover;
}

.navbar-brand span {
  font-size: 1.2rem;
  color: #333;
  /* match with your glass navbar text */
}

.heroCarousel,
.heroCarousel .carousel-item {
  height: 100vh;
  border-radius: 0%;
  /* full viewport height */
}

.heroCarousel .carousel-item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

/* Dark overlay for readability */
.heroCarousel .carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 20, 0.45);
  backdrop-filter: blur(2px);
  z-index: 1;
}


#hero {
  height: 100vh;
  position: relative;
}

#hero .carousel-item {
  height: 100vh;
  position: relative;
}

#hero .hero-img {
  height: 100vh;
  object-fit: cover;
}

#hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  /* Dark semi-transparent layer */
  z-index: 1;
}

#hero .carousel-caption {
  height: 100%;
  z-index: 2;
  /* Keeps text above overlay */
}

.skill-progress {
  width: 100%;
  background: #e9ecef;
  height: 12px;
  border-radius: 999px;
  overflow: hidden;
}

.skill-fill {
  height: 100%;
  width: 0%;
  /* keep 0% on load */
  transition: width 1.8s ease-in-out;
  background: linear-gradient(90deg, #00a862 0%, #005230 100%);
  border-radius: 999px;
}

/* Glassy Box Style */
.glass-box {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Individual Certificate Cards */
.glass-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}