@import url("https://fonts.googleapis.com/css2?family=Luckiest+Guy&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Syne:wght@400..800&display=swap");

/* hero banner sts */
.font-luckiest {
  font-family: "Luckiest Guy", cursive;
}

.font-dancing {
  font-family: "Dancing Script", cursive;
}

.heading-sync {
  font-family: "Syne", serif;
}

/* Dropdown Smooth Animation */
.dropdown-enter {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.group:hover .dropdown-enter {
  opacity: 1;
  transform: translateY(0);
}

/* Hide scrollbar for mobile menu */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Hero Slider Height Adjustments */
.myHeroSwiper {
  width: 100%;
  height: 100vh; /* Full height on desktop */
}

@media (max-width: 768px) {
  .myHeroSwiper {
    height: 60vh; /* Shorter on mobile */
  }
}

/* Sticky Navbar Slide Animation */
#mainNavbar.fixed {
  animation: slideDown 0.4s ease forwards;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Float fix */
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

.faq-content {
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.testimonialSwiper .swiper-slide {
  transition: transform 0.4s ease;
}
.testimonialSwiper .swiper-slide-active {
  transform: scale(1.05);
}

/* Scrollbar Styling */
.scrollbar-thin::-webkit-scrollbar {
  width: 6px;
}
.scrollbar-thin::-webkit-scrollbar-thumb {
  background-color: #0e5b52; /* Tailwind blue-600 */
  border-radius: 8px;
}
.scrollbar-thin::-webkit-scrollbar-track {
  background: transparent;
}


/* Breadcrumb hover underline grow + arrow animation */
.breadcrumb-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  transition: all 0.3s ease;
}

.breadcrumb-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #fff;
  transition: width 0.3s ease;
}

.breadcrumb-link:hover::after {
  width: 100%;
}

.breadcrumb-link:hover {
  color: #d1d5db; /* light gray on hover */
  transform: translateX(2px);
}


.heading-h1 {
  font-size: 2.25rem; /* 36px */
  font-weight: 700;
  line-height: 1.2;
  color: #0E2B5C;
}

.heading-h2 {
  font-size: 1.875rem; /* 30px */
  font-weight: 700;
  line-height: 1.3;
  color: #0E2B5C;
}

.heading-h3 {
  font-size: 1.5rem; /* 24px */
  font-weight: 600;
  line-height: 1.4;
  color: #0E2B5C;
}

.heading-h4 {
  font-size: 1.25rem; /* 20px */
  font-weight: 600;
  line-height: 1.4;
  color: #0E2B5C;
}

.heading-h5 {
  font-size: 1.125rem; /* 18px */
  font-weight: 500;
  line-height: 1.5;
  color: #0E2B5C;
}

.heading-h6 {
  font-size: 1rem; /* 16px */
  font-weight: 500;
  line-height: 1.5;
  color: #0E2B5C;
}

.custom-ul {
  list-style-type: disc;      /* Bullet points */
  padding-left: 1.5rem;       /* Indent */
  margin-bottom: 1rem;
  color: #0E2B5C;
  font-size: 1rem;            /* 16px */
  line-height: 1.6;
}

.custom-ul li {
  margin-bottom: 0.5rem;
}
