body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f9f9f9;
  scroll-behavior: smooth;
}
section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#blogs{
  background-color: #0f172a !important;
} 

.navbar .nav-link {
  color: #fff !important;
  margin: 0 10px;
  font-weight: 500;
  position: relative;
}
.navbar .nav-link::after {
  content: "";
  width: 0%;
  height: 2px;
  background: #0dcaf0;
  position: absolute;
  left: 0;
  bottom: -4px;
  transition: 0.3s;
}
.navbar .nav-link:hover::after {
  width: 100%;
}

.frontpage {
  position: relative;
  color: white;
  text-align: center;
}
.home-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: blur(6px) brightness(0.6);
  z-index: 0;
}
.frontpage .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(12, 31, 58, 0.5);
  z-index: 1;
}
.frontpage .content {
  position: relative;
  z-index: 2;
}

.home-img {
  width: 100%;
  height: 100vh;       
  object-fit: cover;     
  filter: blur(6px) brightness(0.6); 
  position: absolute;    
  top: 0;
  left: 0;
  z-index: 1;
}
 
#head {
  color: #fff;
}

.git-card {
  border-radius: 12px;
  border: 2px solid #0a192f;
  transition: 0.3s;
}
.git-card:hover {
  transform: translateY(-10px);
  box-shadow: 0px 6px 16px rgba(0,0,0,0.2);
}

.profile-card {
  border-radius: 12px;
  overflow: hidden;
}
.profile-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #64ffda;
}

/* 🔹 All buttons styled to GitNexus brand color */
.btn {
  background-color: #0dcaf0 !important;
  border: none !important;
  color: #fff !important;
}
.btn:hover {
  background-color: #0bb8dc !important;
  color: #fff !important;
}
