


.card {
  width: 100%;
  max-width: 350px; /* Slightly wider cards */
  min-height: 300px;  /* Increased height */
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: 200px; /* Larger image height */
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.card-content {
  padding: 12px 18px;
}

.card-content h4 {
  font-size: 18px; /* Slightly larger heading */
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.card-content p {
  font-size: 15px;
  color: #777;
}

.tab{
    margin-bottom:20px;
    padding:10px;
    color: #777 !important;
}

.project-banner {
  position: relative;
  width: 100%;
  height: 40vh;
  background: url('../extractimage/about.webp') no-repeat center center/cover;
  padding-top: 80px; /* offset for navbar */
  text-shadow: 0 2px 4px rgba(0,0,0,0.7);
}

.project-banner::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.4); /* black tint with 40% opacity */
  backdrop-filter: blur(3px); /* subtle blur effect */
  z-index: 1;
}

.project-banner > div {
  position: relative;
  z-index: 2; /* ensure text appears above the overlay */
}


/* Responsive text */
.project-banner h1 {
  font-size: 3rem;
}
.project-banner p {
  font-size: 1.25rem;
}

@media (max-width: 768px) {
  .project-banner h1 {
    font-size: 2rem;
  }
  .project-banner p {
    font-size: 1rem;
  }
}
.project-container {
    max-width: 1100px;
    padding-left: 40px;
    padding-right: 40px;
    margin-top: 20px;
}


