input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}

a,
a * {
  user-select: text !important;
}

.accordion-button .faq-title {
  flex: 1; /* Ensures the text uses available space */
}

.font-primary {
  font-family: "Poppins";
}
input::placeholder {
  color: #979797;
  font-family: "Poppins";
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0px;
}

.container {
  max-width: 1440px;
  /* margin: 0 auto; */
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}

/* On very large screens, shrink max-width */

/* min-width: 1024px → padding 50px */
@media (min-width: 1024px) {
  .container {
    padding-left: 50px;
    padding-right: 50px;
  }
}

/* min-width: 1200px → padding 100px */
@media (min-width: 1200px) {
  .container {
    padding-left: 50px;
    padding-right: 50px;
    max-width: 100% !important;
  }
}
@media (min-width: 1440px) {
  .container {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 0 110px;
  }
.youtube-slider-section .video-track{
padding: 10px 0 20px 110px !important
}
}
@media (min-width: 1600px) {
  .container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 15px;
  }
}
.package-title {
  margin-bottom: -2rem !important;
}
/* Mobile tweaks */
@media (max-width: 768px) {
  .container {
    margin-top: -1rem;
    /* margin-bottom: 1.5rem; */
  }
}

.swiper-container {
  overflow: hidden;
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
}

@media (min-width: 1024px) {
  .swiper-container {
    padding-left: 50px;
  }
}

/* min-width: 1200px → padding 100px (overrides 50px) */
@media (min-width: 1200px) {
  .swiper-container {
    padding-left: 50px;
  }
}

@media (min-width: 1440px) {
  .swiper-container {
    padding-left: 110px;
  }
}

@media (min-width: 1600px) {
  .swiper-container {
    max-width: 100%;
    padding-left: calc((100vw - 1250px) / 2 + 15px);
  }
}
@media (max-width: 768px) {
  .swiper-container {
    padding-left: 15px;
  }
  .package-title {
    margin-bottom: -2.5rem;
  }
}
.swiper-container-fade {
  position: relative;
  overflow: hidden; /* prevents slides from spilling past the fade */
}

/* Fade effect on both sides using pseudo-elements */
.swiper-container-fade::before,
.swiper-container-fade::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px; /* wider fade */
  height: 100%;
  z-index: 10;
  pointer-events: none;
}

.swiper-container-fade::before {
  left: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0.6),
    rgba(255, 255, 255, 0.4),
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0)
  );
}

.swiper-container-fade::after {
  right: 0;
  background: linear-gradient(
    to left,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0.6),
    rgba(255, 255, 255, 0.4),
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0)
  );
}

.error-message {
  color: red;
  font-size: 14px;
  margin-top: 4px;
  display: none;
}
.fullscreen-controls-always-on .fullscreen-action-menu {
  display: none !important;
}
.fullscreen-action-menu {
  display: none !important;
}
.ytwPlayerFullscreenTopControlsHost {
  display: none !important;
}

label {
  margin-bottom: 4px;
}

.modal-body {
  padding: 1rem 1.5rem 0 1.5rem;
}

.form-control {
  height: 47px;
  border-radius: 6px;
  border: 1px solid #8b95a0;
}
.modal-dialog {
  max-width: 100%;
}
@media (min-width: 768px) {
  .modal-dialog {
    width: 612px;
  }
}
:root {
  --primary-color: #034da1;
  --secondary-color: #6c757d;
  --light-blue: #0c4da2;
  --bg-light: #f8f9fa;
  --text-dark: #343a40;
  --black: #000000;
  --white: #ffffff;
  --lightText: #888888;
  --lightBlack: #4d4200;
}
a {
  text-decoration: none !important;
}

a:hover {
  text-decoration: none !important;
}
.text-lightText {
  color: var(--lightText);
}
.text-dark {
  color: var(--text-dark);
}
.text-black {
  color: var(--black);
}
.text-white {
  color: var(--white);
}
.text-primary {
  color: var(--primary-color) !important;
}
.text-secondary {
  color: var(--secondary-color);
}
.text-light-blue {
  color: var(--light-blue);
}
.bg-light {
  background-color: var(--bg-light);
}
.bg-primary {
  background-color: var(--primary-color);
}
.bg-secondary {
  background-color: var(--secondary-color);
}
.bg-light-blue {
  background-color: var(--light-blue);
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.text-left {
  text-align: left;
}
.text-uppercase {
  text-transform: uppercase;
}
.text-lowercase {
  text-transform: lowercase;
}
.text-capitalize {
  text-transform: capitalize;
}
.text-decoration-none {
  text-decoration: none;
}
.text-decoration-underline {
  text-decoration: underline;
}
.text-decoration-line-through {
  text-decoration: line-through;
}
.text-decoration-overline {
  text-decoration: overline;
}
.text-decoration-none:hover {
  text-decoration: none;
}

.vertical-divider {
  width: 1px;
  align-self: stretch;
  background-color: var(--lightText);
  margin: 0 8px;
}
iframe {
  border-radius: 8px;
}
.fullscreen-action-menu {
  display: none !important;
}
hr {
  margin: 3px 0;
}
.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.img-full {
  max-width: 100%;
  height: 100%;
}

.text-xs {
  font-size: 12px; /* 12px */
}

.text-sm {
  font-size: 14px; /* 14px */
}

.text-base {
  font-size: 16px; /* 16px */
}
.text-lg {
  font-size: 1.125rem; /* 18px */
}

.text-xl {
  font-size: 1.25rem; /* 20px */
}
.text-xl-extra {
  font-size: 22px;
}
.text-2xl {
  font-size: 1.5rem; /* 24px */
}
.text-2xl-extra {
  font-size: 28px; /* 28px */
}

.text-3xl {
  font-size: 1.875rem; /* 30px */
}

.text-4xl {
  font-size: 2.25rem; /* 36px */
}

.text-5xl {
  font-size: 3rem; /* 48px */
}

.text-6xl {
  font-size: 3.75rem; /* 60px */
}

.text-7xl {
  font-size: 4.5rem; /* 72px */
}

.text-8xl {
  font-size: 6rem; /* 96px */
}

.text-9xl {
  font-size: 8rem; /* 128px */
}
.font-thin {
  font-weight: 100;
}

.font-extralight {
  font-weight: 200;
}

.font-light {
  font-weight: 300;
}

.font-normal {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.font-extrabold {
  font-weight: 800;
}

.font-black {
  font-weight: 900;
}

.review-submit-btn {
  max-width: 100% !important;
}
.form-group {
  margin-bottom: 0.75rem;
}
.close {
  opacity: 1;
}
.card-btn {
  width: 100%;
  max-width: 355px;
  height: 49px;
  display: flex;
  justify-content: center;
  align-items: center;
  /* display: block; */
  background-color: var(--primary-color);
  color: white;
  border-radius: 8px;
  font-size: 14px;
  padding: 10px 0;
  text-align: center;
  text-decoration: none;
  border: none;
  font-weight: 300;
}
.card-btn:hover {
  color: white;
  text-decoration: none;
  opacity: 0.9;
}

.accordion-item-faq.with-border {
  border-radius: 8px;
  box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.accordion-item.with-border {
  border-bottom: 1px solid #c5c9da;
}
.accordion-header {
  padding: 1.5rem 10px 1.5rem 10px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  color: #000000;
}

.accordion-body {
  padding: 0px 1.5rem 1rem 1rem;
}

.accordion-item .collapsed {
  font-weight: 500;
}

.arrow {
  transition: transform 0.3s ease;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.arrow.rotate {
  transform: rotate(180deg);
}

.icon-popup {
  position: absolute;
  z-index: 9999;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 10px 14px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  max-width: 240px;
  transition: all 0.2s ease;
}

@media (max-width: 575.98px) {
  .accordion-header {
    padding: 1rem 1rem 1rem 0.5rem;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    color: #000000;
  }
  .accordion-header > button > span {
    justify-content: flex-start !important;
  }
  .accordion-button .arrow {
    margin-left: 8px;
  }
  .accordion-body {
    padding: 0.5rem 1rem;
  }
}

.line-clamp-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: auto !important;
}
.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.line-clamp-4 {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.line-clamp-5 {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.disabled-link {
  pointer-events: none;
  opacity: 0.5;
}
.cursor-default {
  cursor: default;
}
.cursor-pointer {
  cursor: pointer; /* Or leave it alone—Bootstrap uses pointer for links */
}

.bg-open {
  color: white;
  border-radius: 12px;
  background: linear-gradient(225deg, #2e90fa 0%, #175cd3 100%);
  border: none;
}
.bg-open .faq-title {
  color: white;
}

.bg-open .faq-description {
  color: white;
}
<!-- ========== CSS ========== -->
  .youtube-slider-section {
    margin-top: 40px;
  }

  .youtube-slider-section .hide-scrollbar {
    overflow-x: auto;
    display: block;
    scroll-snap-type: x mandatory;
    overscroll-behavior-x: contain;
    scroll-padding-left: 100px;
    scrollbar-width: none;
  }

  .youtube-slider-section .hide-scrollbar::-webkit-scrollbar {
    display: none;
  }

  .youtube-slider-section .video-track {
    display: flex;
    gap: 16px;
    will-change: transform;
    padding: 10px 0 20px 50px;
  }

  .youtube-slider-section .video-card {
    width: 300px;
    flex: 0 0 auto;
    scroll-snap-align: start;
    cursor: pointer;
  }

  .youtube-slider-section .video-card iframe {
    border-radius: 10px;
  }

  .youtube-slider-section .text-base {
    font-weight: 600;
    color: #000;
    margin-top: 8px;
  }

  .youtube-slider-section .video-card p {
    font-size: 14px;
    color: #777;
    margin: 4px 0 0;
  }

  .youtube-slider-section .section-title {
    font-weight: 700;
    font-size: 24px;
  }

ul.sub_menu_li {
    padding-left: 0;
}
/* ✅ Hide swiper arrows on mobile devices */
@media (max-width: 768px) {
  .swiper-button-next,
  .swiper-button-prev {
    display: none !important;
  }
.youtube-slider-section .video-track {
    padding: 10px 0 20px 15px;
}
}
h3.text-base.text-left.font-primary.font-normal.faq-title.mb-0 {
    font-size: 16px;
}