/* Card Styles */
.student-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.student-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.student-photo {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
}

.company-logo img {
  width: 100px;
  height: auto;
}

/* Text Formatting */
.student-name {
  font-weight: 700;
  font-size: 1.3rem;
  color: #222;
}

.student-title {
  color: #555;
  font-size: 1rem;
}

.working-at {
  font-size: 0.8rem;
  color: #1a3c7c;
  font-weight: 500;
}

.company-name {
  font-weight: 600;
  color: #1a3c7c;
  font-size: 1.1rem;
}

.footer-text {
  font-weight: 700;
  color: #111;
  letter-spacing: 0.5px;
}


.box-shadow {
    background-color: #fff;
    position: relative;
    z-index: 1;
    padding-top: 15px;
    border-radius: 15px;
    margin-bottom: 15px;
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    border-bottom: 3px solid #0071dc;
}