body {
  background: url('../images/bg-love.png') repeat;
  font-family: 'Poppins', sans-serif;
  color: #333;
  margin: 0;
  padding: 0;
}
.bg-pink {
  color: #ff69b4 !important;
}
.text-pink {
  color: #ff69b4;
}
.hero-banner {
  height: 320px;
  background-image: url('../images/eka-banner.jpg');
  background-size: cover;
  background-position: center;
}
img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}
.gallery-item {
  margin-bottom: 20px;
}
@media (max-width: 576px) {
  .hero-banner {
    height: 220px;
  }
  h1.display-4 {
    font-size: 1.75rem;
  }
  .lead {
    font-size: 1rem;
  }
}

.btn-outline-pink {
  color: #ff69b4;
  border-color: #ff69b4;
}
.btn-outline-pink:hover {
  background-color: #ff69b4;
  color: white;
}

.container-boxed {
  max-width: 1140px;
  margin: auto;
  background-color: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  border-radius: 15px;
  padding: 20px;
}
body {
  background-color: #ffe6f0;
}

.profile-banner {
  width: 100%;
  height: 260px;
  background-image: url('../images/eka-banner.jpg');
  background-size: cover;
  background-position: center;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
.profile-picture {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
}
.profile-picture img {
  width: 120px;
  height: 120px;
  border: 5px solid #fff;
  object-fit: cover;
}
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards;
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
