* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f5f5f5;
 width: 100vw;
  height: 100vh;
  background-image: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.project-card {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  max-width: 80vw;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.center-proj
{
  display: flex;
  justify-content: center;
  align-items: center;
}

.project-card:hover {
  transform: translateY(-10px);
}

.project-image-slider {
  position: relative;
  flex: 1;
  overflow: hidden;
}
.navbar
{
  background-color: #e1dfe9;
  height: 8vh;
  border-bottom: 3px solid rgba(70, 70, 70, 0.295);
}

.slider-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slider-wrapper img {
  min-width: 100%;
  height: 450px;
  object-fit:scale-down;
}

.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.26);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

.project-info {
  flex: 1.5;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.project-header h2 {
  color: #333;
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.project-header h2 span {
  color: #007bff;
  font-weight: 500;
}

.project-content {
  margin-bottom: 20px;
}

.project-overview {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: 15px;
}

.project-features h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #333;
  font-weight: 500;
}

.project-features ul {
  list-style-type: disc;
  margin-left: 20px;
}

.project-features li {
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: #555;
}

.project-footer {
  display: flex;
  justify-content: space-between;
}

.btn {
  background-color: #007bff;
  color: white;
  padding: 10px 15px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #0056b3;
}

.btn-primary {
  background-color: #28a745;
}

.btn-primary:hover {
  background-color: #218838;
}

@media (max-width: 768px) {
  .project-card {
      flex-direction: column;
  }

  .project-image-slider, .project-info {
      flex: none;
      width: 100%;
  }

  .slider-wrapper img {
      height: 200px;
  }
}
