/* ====== Project Card ====== */
.project-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
  padding: 1.8rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.project-card h3 {
  font-weight: 600;
  color: #1e1e1e;
  margin-bottom: 1rem;
  font-size: 1.6rem;
  line-height: 1.3;
}
.project-card p {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: #555;
}
.project-card ul {
  padding-left: 1.2rem;
  margin-bottom: 1.5rem;
  color: #444;
}
.project-card ul li {
  margin-bottom: 0.6rem;
}

.product-title h3 {
  text-decoration: none;
  color: #222;
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
  transition: color 0.3s ease, transform 0.3s ease;
}

.product-title h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #007bff, #00c6ff);
  transition: width 0.3s ease-in-out;
}

.product-title h3:hover {
  color: #007bff;
  transform: translateY(-2px);
}

.product-title h3:hover::after {
  width: 100%;
}

.list-unstyled {
  text-align: left;
}

/* ====== Carousel Images ====== */
.carousel img {
  border-radius: 10px;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.carousel img:hover {
  transform: scale(1.02);
}

/* ====== Buttons (Glowing Modern Style) ====== */
.btn-custom {
  margin-right: 10px;
  margin-bottom: 10px;
  font-weight: 500;
  padding: 6px 18px;
  border-radius: 8px;
  border: 2px solid rgb(0, 120, 255);
  background-color: #ffffff;
  color: rgb(0, 120, 255);
  box-shadow: 0 0 8px rgba(0, 120, 255, 0.4);
  transition: all 0.4s ease;
}

.btn-custom:hover {
  background-color: rgb(0, 120, 255);
  color: #ffffff;
  box-shadow: 0 0 16px rgba(0, 120, 255, 0.6);
  transform: translateY(-2px);
}

/* Optional - small button variant tweak */
.btn-custom.btn-sm {
  padding: 4px 14px;
  font-size: 0.9rem;
}

.carousel-control-prev,
.carousel-control-next {
  background-color: rgba(0, 0, 0, 0.5); /* semi-transparent black */
  border-radius: 50%; /* make it circular */
  width: 40px;
  height: 40px;
  top: 50%;
  transform: translateY(-50%);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background-color: rgba(0, 0, 0, 0.8); /* darker on hover */
}
