/* @keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.portfolio-heading {
  margin-top: 200px !important;
  background: linear-gradient(
    135deg,
    #fefefe,
    #e6e6e6
  ); 
  padding: 20px 30px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  max-width: 1000px;
  height: 300px;
  margin: 40px auto;
  animation: fadeInUp 1s ease-out forwards;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-heading:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.portfolio-heading h1 {
  font-size: 2.5rem;
  color: #f05020;
  margin: 0;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-align: center;
  line-height: 280px; 
} */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.portfolio-section {
  padding: 40px 20px;
  text-align: center;
  /* background-color: #fafafa; */
  margin-top: 150px;
}

.portfolio-title {
  font-size: 2.2rem;
  color: #333;
  margin-bottom: 30px;
  font-weight: bold;
  letter-spacing: 1px;
}

.portfolio-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.portfolio-card {
  /* background-color: #ffffff; */
  border-radius: 12px;
  /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); */
  width: 300px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInUp 0.8s ease both;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-card img {
  width: auto !important;
  /* height: 500px; */
  object-fit: contain;
  /* border-top-right-radius: 11rem;
  border-bottom-left-radius: 11rem;
  border-bottom-right-radius: 11rem;
  border-top-left-radius: 11rem; */
  border-radius: 6px;
}
.portfolio-card:hover {
  transform: translateY(-5px);
  scale: 1.04;
  transition: 200ms;
  /* box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2); */
}

.portfolio-card h3 {
  font-size: 1.2rem;
  color: #f05020;
  font-weight: 700;
  margin: 0;
  text-align: center;
}

/* Responsive Layout */
@media (max-width: 992px) {
  .portfolio-card {
    width: 45%;
  }
}

@media (max-width: 600px) {
  .portfolio-card {
    width: 100%;
  }
}
