body {
  background-color: #f8f9fa;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.hero-text h1 {
  font-size: 2.5rem;
}

.btn-custom {
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  border-radius: 50px;
}

.project-card {
  transition: all 0.3s ease-in-out;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.filter-btn.active {
  background-color: #0d6efd;
  color: #fff;
}
.project-card img {
  /* height: 400px; */
  object-fit: cover;
}
.card-body {
  padding: 1rem;
}
.card-title {
  font-size: 1.1rem;
}
.card {
  /*max-height: 380px;*/
}
.dark-mode {
  background-color: #121212 !important;
  color: #f1f1f1;
}

.card.bg-dark {
  background-color: #1e1e1e !important;
}
.skills-section {
  background: #f8f9fa;
}

.skill {
  margin-bottom: 15px;
}

.skill-label {
  font-weight: 600;
  margin-bottom: 5px;
}

.skill-bar {
  width: 3cm; /* as requested */
  height: 10px;
  background: #e0e0e0;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.skill-bar::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: linear-gradient(to right, #007bff, #00c3ff);
  width: 0%;
  border-radius: 5px;
  transition: width 2s ease-in-out;
}

