.mentor-header .header-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
  border-bottom: 4px solid #0a59c5;
}

@media (max-width: 768px) {
  .mentor-header .header-img {
    height: 200px;
  }
}

.mentor-title {
  color: #0a3a82;
  font-size: 34px;
  font-weight: 700;
}

.criteria-box {
  background: #e3e8ef78;
  border-left: 6px solid #0a59c5;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.criteria-list li {
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1.6;
}



/* Hover Effect */
.winner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Winner Badge (Top Right Corner) */
.winner-badge {
  background: #00a4ff;
  color: #fff;
  padding: 6px 18px;
  font-size: 14px;
  border-radius: 25px;
  font-weight: 600;
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 5;
}

.blue-badge {
  background: #0649a5;
}

/* Winner Photo */
.winner-photo {
  width: 170px;
  height: 170px;
  object-fit: cover;
  border-radius: 50%;
  border: 6px solid #e8f1ff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* Name */
.winner-title {
  font-size: 24px;
  font-weight: 700;
  color: #083d8a;
}

/* Text */
.winner-text {
  font-size: 16px;
  color: #333;
  line-height: 1.7;
}

/* Mobile Optimization */
@media (max-width: 768px) {
  .winner-photo {
    width: 140px;
    height: 140px;
    margin-bottom: 20px;
  }

  .winner-title,
  .winner-text {
    text-align: center;
  }
}

.award-section {
  background-image: url("../images/bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* Winner Card Container */
.winner-card {
  background: #e3e8ef78;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  border-left: 6px solid #0a59c5;
  transition: 0.3s ease;
  position: relative;
}

/* Hover Effect */
.winner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
/* Section Background */
.video-card {
  position: relative;
  padding: 35px 28px;
  border-radius: 22px;
  /* Gradient PACS Blue Background */
  background: linear-gradient(135deg, #ffffff 0%, #f2f6ff 40%, #e8f0ff 100%);
  /* Soft big shadow */
  box-shadow: 0px 10px 35px rgba(10, 22, 72, 0.15);
  border-left: 6px solid #0a1648;
  /* PACS Navy */
}

/* Subtle Glass Pattern */
.video-card::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 180px;
  height: 180px;
  background: radial-gradient(
    circle,
    rgba(10, 22, 72, 0.05) 10%,
    rgba(255, 255, 255, 0) 70%
  );
  border-radius: 50%;
  z-index: 0;
}

/* Right-bottom bubble */
.video-card::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  bottom: -80px;
  right: -80px;
  background: radial-gradient(
    circle at center,
    #bde7ff 20%,
    #d6ecff 70%,
    transparent 100%
  );
  border-radius: 50%;
  opacity: 0.35;
  z-index: 0;
}

/* Keep content above background patterns */
.video-card > * {
  position: relative;
  z-index: 2;
}

/* Video Frame */
.video-frame {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.12);
}

/* Titles & Text */
.video-title {
  font-weight: 700;
  color: #0a1648;
  font-size: 22px;
}

.video-desc {
  font-size: 16px;
  color: #4a5878;
}

/* Responsive */
@media (max-width: 768px) {
  .video-card {
    padding: 25px 18px;
  }

  .video-title {
    font-size: 20px;
  }
}

.ppt-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
  border-left: 5px solid #0a1648;
  transition: 0.3s;
}

.ppt-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.ppt-img-top {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.ppt-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ppt-content {
  background: #fff;
}

/* Mobile responsive */
@media (max-width: 767px) {
  .ppt-img-top {
    height: 150px;
  }
}
