/* Global */
body {
  font-family: "Noto Sans Bengali", sans-serif;
  line-height: 1.6;
}

/* Header Title */
.had-p {
  font-size: 1.6rem;
}

/* Banner Images */
.banner-img {
  height: 400px;
  object-fit: cover;
}

/* About Section */
.about-text {
  font-size: 18px;
  line-height: 1.6;
}

/* Info Cards */
.info-card {
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  border-radius: 10px;
  padding: 15px;
  background: #fff;
  transition: 0.3s;
}
.info-card:hover {
  transform: translateY(-5px);
}

/* Gallery */
.gallery-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.gallery-caption {
  margin-top: 8px;
  font-weight: 500;
}

/* Animate Cards */
.animate-card {
  transition: transform 0.3s ease;
}
.animate-card:hover {
  transform: scale(1.05);
}

   /* Info Card Styles */
.info-card {
  background: linear-gradient(135deg, #f9f9f9, #ffffff);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  transition: 0.3s;
  display: flex;
  align-items: center;
}
.info-card img {
  max-width: 120px;
}
.info-card h4 {
  font-weight: bold;
  margin-bottom: 15px;
}
.info-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.info-card ul li::before {
  content: "▶ ";
  color: green;
  font-weight: bold;
}
.info-card ul li a {
  text-decoration: none;
  color: #333;
  transition: 0.3s;
  position: relative;
}
.info-card ul li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #007bff;
  left: 0;
  bottom: -2px;
  transition: 0.3s;
}
.info-card ul li a:hover {
  color: #007bff;
  margin-left: 5px;
}
.info-card ul li a:hover::after {
  width: 100%;
}
.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}
@media (max-width: 576px) {
  .info-card {
    flex-direction: column;
    text-align: center;
  }
  .info-card img {
    margin-bottom: 15px;
  }
}


  .card-img-top {
    height: 280px;
    object-fit: cover;
    transition: transform 0.4s ease-in-out;
  }

  .animate-card {
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 12px;
    overflow: hidden;
  }

  /* Hover effect */
  .animate-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.2);
  }
  .animate-card:hover .card-img-top {
    transform: scale(1.05);
  }

  /* Fade up animation */
  .animate-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
  }
  .animate-card:nth-child(1) { animation-delay: 0.2s; }
  .animate-card:nth-child(2) { animation-delay: 0.4s; }
  .animate-card:nth-child(3) { animation-delay: 0.6s; }
  .animate-card:nth-child(4) { animation-delay: 0.8s; }
  .animate-card:nth-child(5) { animation-delay: 1s; }

  @keyframes fadeUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

   .gallery-img {
    width: 100%;
    height: 200px;      /* সব ছবির উচ্চতা সমান হবে */
    object-fit: cover;  /* ছবি কাটবে কিন্তু বিকৃত হবে না */
  }

    .gallery-img {
    width: 100%;
    height: 250px;   /* এখানে ফিক্সড height */
    object-fit: cover;  /* ছবিকে কাটাছেঁড়া করে বক্সে ফিট করবে */
  }
  .gallery-caption {
    margin-top: 8px;
    font-weight: 500;
  }

  /* login */
