/* ROOT */
:root {
  --primary-blue: #263489;
  --accent-red: #ec1d25;
  --text-black: #000000;
  --bg-light: #f4f6f9;
}

/* SECTION */
.about-cont-area2 {
  padding: 70px 0;
  background: linear-gradient(135deg, #f4f6f9, #ffffff);
}

/* CARD */
.student-card {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* HEADINGS */
.student-card h3 {
  color: var(--primary-blue);
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
}

.student-card h3::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-red);
  margin-top: 8px;
}

.Bed-student-stu h4 {
  margin-bottom: 10px;
  font-weight: 600;
}

.Bed-student-stu h6 {
  color: #777;
  margin-bottom: 15px;
}

/* DOCUMENT LIST */
.doc-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ITEM */
.doc-item {
  display: flex;
  align-items: center;
  gap: 12px;

  padding: 14px 16px;
  border-radius: 10px;

  background: linear-gradient(135deg, #ffffff, #f1f3f8);
  text-decoration: none;
  color: var(--text-black);

  border: 1px solid #e5e7eb;
  transition: 0.3s ease;
}

/* ICON */
.doc-item i {
  font-size: 18px;
  color: #fff;
  background: var(--accent-red);
  padding: 10px;
  border-radius: 8px;
  min-width: 38px;
  text-align: center;
}

/* TEXT */
.doc-item span {
  font-size: 14px;
  font-weight: 500;
}

/* HOVER */
.doc-item:hover {
  background: linear-gradient(135deg, var(--primary-blue), #1d2a6d);
  color: #fff;
  transform: translateX(6px);
}

.doc-item:hover span {
  color: #fff;
}

.doc-item:hover i {
  background: #fff;
  color: var(--accent-red);
}

/* IMAGE */
.student-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .student-card {
    margin-bottom: 20px;
    padding: 20px;
  }

  .doc-item span {
    font-size: 13px;
  }
}