.student-project-section {
  padding: 40px;
  background: transparent;
  width: 90%;
  margin: 0 auto;
}

.project-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 90px 70px;
  box-shadow: 0 10px 30px rgba(0, 170, 220, 0.25);
  border: 3px solid #cfefff;
}
.project-header {
  display: inline-block;
  background: linear-gradient(135deg, #5dcef8, #77ccee);
  color: #111;
  padding: 10px 24px;
  border-radius: 8px 24px 8px 8px;
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 30px;
  text-shadow:
    0 1px 0 rgba(172, 168, 168, 0.35),
    0 2px 4px rgba(187, 180, 180, 0.25);
  box-shadow:
    inset 0 4px 0 rgba(197, 193, 193, 0.35),
    0 10px 18px rgba(194, 190, 190, 0.25);
}

.project-body {
  display: grid;
  grid-template-columns: 1.2fr 80px 1fr;
  gap: 24px;
  color: #111;
}
.project-title {
  font-size: 20px !important;
  margin-bottom: 50px !important;
  margin-top: 10px;
  font-weight: bold;
  color: #111;
}

.project-meta p {
  font-size: 15px !important;
  line-height: 1.8;
  margin-top: 10px;
  color: #111;
}

.project-desc {
  margin-top: 20px;
  font-size: 14px !important;
  color: #111;
  line-height: 1.8;
}
.project-steps {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.project-steps::before {
  content: "";
  position: absolute;
  width: 1.8px;
  height: 100%;
  background: #bfbfbf;
  left: 50%;
  transform: translateX(-50%);
}

.step {
  background: #fff;
  padding: 6px 10px;
  margin: 19px 0;
  font-size: 19px;
  font-weight: 600;
  z-index: 1;
  color: rgb(176, 91, 6);
}

.project-image-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.image-box {
  width: 590px;
  height: 240px;
  overflow: hidden;

  background-color: #f2f2f2;
}

.project-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
