a {
  text-decoration: none;
}
.btn-xs {
    padding: 0.25rem 0.5rem; /* Adjust padding as needed */
    font-size: 0.75rem;     /* Adjust font size as needed */
    line-height: 1.5;
    border-radius: 0.2rem;
}
.section-content {
    background-color: #fff;
    padding: 8rem 0;
}
.section-content .subtitle {
    background-color: rgba(var(--bs-secondary-rgb), 0.2);
    color: var(--bs-primary);
    display: inline-block;
    padding: 5px 12px;
    border-radius: 7px;
    font-weight: 600;
    font-size: 0.75rem;
    margin-bottom: 10px;
}


.custom-accordion {
  --bs-accordion-bg: var(--bs-body-bg);
  --bs-accordion-btn-icon: url("");
  --bs-accordion-btn-active-icon: url("");
}

.custom-accordion .accordion-button {
  position: relative;
  padding-right: 50px;
}
.custom-accordion .accordion-button::after {
  content: "\f4fe";
  font-family: "bootstrap-icons" !important;
  font-style: normal;
  font-weight: 400 !important;
  font-variant: normal;
  text-transform: none;
  right: 20px;
  top: 15px;
  width: 18px;
  height: 14px;
  font-size: 30px;
  color: var(--inverse-color);
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  line-height: 1;
  position: absolute;
  -webkit-font-smoothing: antialiased;
}

.custom-accordion .accordion-button:not(.collapsed)::after {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  content: "\f2ea";
}
.custom-accordion .accordion-item {
  border: none;
  margin-bottom: 10px;
  border-radius: 10px;
  overflow: hidden;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}
.custom-accordion .accordion-item .accordion-header .accordion-button {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  font-size: 18px;
  font-weight: 500;
  color: var(--bs-heading-color);
  padding-top: 20px;
  padding-bottom: 20px;
  border: none;
}
.custom-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  background-color: transparent;
  color: var(--inverse-color);
  -webkit-box-shadow: 0 1px 1px rgba(var(--inverse-color-rgb), 0.05);
          box-shadow: 0 1px 1px rgba(var(--inverse-color-rgb), 0.05);
}
.custom-accordion .accordion-item .accordion-body {
  border-top: none;
}

.pricing .popular {
    background-color: #215c5c;
    color: #fff;
}
.pricing .price-table {
    border: 1px solid rgba(var(--inverse-color-rgb), 0.2);
}
.pricing .popular .price {
    color: #cce8c9;
}

.pricing .icon {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20px;
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    border: 1px solid rgba(var(--bs-white-rgb), 0.2);
}

.mySwiper .swiper-slide {
  text-align: center;
}
.mySwiper img {
  width: 160px;
  height: 160px;
  object-fit: cover;
}
.swiper-button-next,
.swiper-button-prev {
  color: #333; /* dark buttons */
}

.mySwiper img {
  width: 160px;
  height: 160px;
  object-fit: cover;
}
.mySwiper .swiper-pagination {
  bottom: -8px !important; /* adjust this value as needed */
}

.modal {
  z-index: 2147483647;
}

.swiper-button-next,
.swiper-button-prev {
  width: 45px;
  height: 45px;
  background: rgba(0,0,0,0.6);
  border-radius: 50%;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 18px;  /* icon size */
}

.card-img-top {
  height: 220px;        /* Set your preferred height */
  object-fit: contain;    /* Crop without distortion */
  width: 100%;          /* Ensure full width */
}


@media (max-width: 576px) {
  .card-img-top {
    height: 160px;
  }
}

/* Event Image Wrapper (Uniform Landscape) */
.event-img-wrapper {
  position: relative;
  width: 100%;
  height: 220px; /* Change height if you want a taller landscape */
  overflow: hidden;
  /* border-radius: 0.375rem;  */
  border-radius: 0; 
  
}

/* Blurred Background */
.event-img-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: var(--img-url);
  background-size: cover;
  background-position: center;
  filter: blur(20px);
  transform: scale(1.2);
  z-index: 1;
  opacity: 0.8;
}

/* Foreground Image */
.event-img-wrapper img {
  position: relative;
  z-index: 2;
  max-height: 100%;
  max-width: 100%;
  object-fit: contain; /* Keeps original image visible */
  display: block;
  margin: auto;
}

.dropdown-item {
  white-space: normal; /* Allow text to wrap */
}

/* NAVBAR */
@media (min-width: 992px) {
  .navbar .dropdown:hover > .dropdown-menu {
    display: block;
  }
  
  .mega-menu-item:hover .mega-menu-dropdown {
    display: grid;
  }
}

.mega-menu-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%); /* Centers the menu */
  width: 70vw;
  background: #fff;
  padding: 25px 30px;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  list-style: none;
  display: none;
  grid-template-columns: repeat(4, 1fr); /* 5 columns */
  gap: 12px 30px;
  z-index: 2000;
}


.mega-menu-dropdown li a {
  padding: 10px 15px;
  font-size: 15px;
  text-decoration: none;
  color: inherit;
  display: block;
}

.mega-menu-dropdown li a:hover {
  color: var(--bs-primary);
}

.mega-menu-item {
  position: relative;
}


/* ───────────────────────────────
  TABLET / MOBILE (≤991px)
──────────────────────────────── */
@media (max-width: 991px) {
  
  /* Mega menu becomes full-width inside mobile menu */
  .mega-menu-dropdown {
    position: static;
    transform: none;
    width: 100%;
    background: #fff;
    padding: 10px 15px;
    border-radius: 4px;
    box-shadow: none;
    display: none;
    grid-template-columns: 1fr; /* stack items */
  }

  .mega-menu-item > a::after {
    content: "▾";
    float: right;
    font-size: 14px;
    margin-left: 6px;
  }

  /* Click-to-open (Bootstrap handles .show) */
  .mega-menu-item.show .mega-menu-dropdown {
    display: block;
  }

  /* spacing */
  .mega-menu-dropdown li a {
    padding: 8px 5px;
    display: block;
    font-size: 16px;
  }
}

/* Submenu inside Mega Menu */
.has-sub {
  position: relative;
}

.sub-dropdown {
  list-style: disc;
  padding-left: 50px;
  max-height: 0;             /* collapsed */
  opacity: 0;                /* hidden */
  transform: translateY(-8px);
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.35s ease, transform 0.35s ease;
}

.sub-dropdown li a {
  font-size: 14px;
  padding: 6px 10px;
  display: block;
}

/* Show submenu only when .open class is present (click-to-open for ALL sizes) */
.has-sub.open > .sub-dropdown {
  max-height: 1000px; /* large enough to fit content; keeps animation smooth */
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE: Show ONLY with .open class */
@media (max-width: 991px) {
  .has-sub > a::after {
    content: "▸";
    float: right;
    margin-right: 12px;
  }

  .has-sub.open > a::after {
    content: "▾";
  }

  /* Submenu will reveal with the same transition defined above */
}