<style>
/* Card hover effect */
.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* Rounded images */
.card-img-top {
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  object-fit: cover;
}

/* Card title style */
.card-title {
  margin-top: 0.75rem;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

/* Small text style */
.card-text.small {
  color: #555;
}

/* About Me button */
.btn-outline-primary {
  border-radius: 50px;
  padding: 0.375rem 1.25rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: #0d6efd;
  color: #fff;
}

/* Modal content styling */
.modal-content {
  border-radius: 1rem;
}

.modal-header {
  border-bottom: none;
}

.modal-title {
  font-weight: 600;
}

.modal-body {
  line-height: 1.6;
}

.modal-body a {
  color: #0d6efd;
}

.modal-body i {
  transition: transform 0.3s ease;
}

.modal-body i:hover {
  transform: scale(1.2);
  color: #0a58ca;
}

/* Responsive image in modal (if you add one later) */
.modal-body img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
}
</style>
