@import url("https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/* Default body font */
body {
  font-family: "Poppins", sans-serif;
}

/* Headings (h1–h6) use Noto Serif */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Noto Serif", serif;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.8s ease-out forwards;
}

.animate-slide-in-up {
  animation: slideInUp 0.6s ease-out;
}

.animate-slide-in-down {
  animation: slideInDown 0.6s ease-out;
}

/* Mobile menu toggle */
#mobile-menu-checkbox:checked ~ #mobile-menu {
  display: flex;
}

.group:hover .group-hover\:w-full {
  width: 100%;
}


/* --- Hero Slider Styles --- */
.hero-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-slider .swiper-pagination-bullet-active {
  background-color: #E5AB57 !important;
}
.hero-slider .swiper-pagination-bullet {
  background-color: #ffffff;
  opacity: 0.7;
}
.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
  color: #E5AB57;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}
.hero-slider .swiper-button-next:hover,
.hero-slider .swiper-button-prev:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}
.hero-slider .swiper-button-next::after,
.hero-slider .swiper-button-prev::after {
  font-size: 1.25rem;
  font-weight: bold;
}

/* --- Testimonial Slider Styles --- */
.testimonial-slider .swiper-slide {
  height: auto; /* স্লাইডগুলোকে অটো উচ্চতা দেয় */
}

.testimonial-pagination {
  position: static;
  width: auto;
}

.testimonial-pagination .swiper-pagination-bullet {
  background-color: #d1d5db; /* gray-300 */
  opacity: 1;
  transition: all 0.3s ease;
}

.testimonial-pagination .swiper-pagination-bullet-active {
  background-color: #E5AB57;
  transform: scale(1.2);
}

.testimonial-nav-btn {
  width: 2.5rem; /* w-10 */
  height: 2.5rem; /* h-10 */
  border-radius: 9999px; /* rounded-full */
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  border: 1px solid #e5e7eb; /* border-gray-200 */
  color: #4b5563; /* text-gray-600 */
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.testimonial-nav-btn:hover {
  background-color: #E5AB57;
  color: white;
  border-color: #E5AB57;
  transform: translateY(-2px);
}

/* Custom Scrollbar for testimonial description */
.custom-scrollbar::-webkit-scrollbar {
  width: 6px;
}
.custom-scrollbar::-webkit-scrollbar-track {
  background: transparent; /* ট্র্যাকটি অদৃশ্য রাখে */
}
.custom-scrollbar::-webkit-scrollbar-thumb {
  background-color: #E5AB57; /* স্ক্রলবারের রঙ */
  border-radius: 20px;
  border: 3px solid transparent;
}