@import url("https://fonts.googleapis.com/css2?family=Syne:wght@400..800&display=swap");

.syne-1 {
  font-family: "Syne", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.syne-2 {
  font-family: "Syne", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}
.syne-3 {
  font-family: "Syne", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
}

/* 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;
}

/* 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;
  }
}

/* navbar  */
.nav-link {
  position: relative;
  text-decoration: none;
  color: #fff;
  transition: color 0.3s ease;
}

/* Underline element */
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%; /* start at center */
  transform: translateX(-50%);
  width: 0; /* start hidden */
  height: 2px;
  background-color: #FFEA00; /* underline color */
  transition: width 0.3s ease;
}

/* Hover effects */
.nav-link:hover {
  color:  #FFEA00; /* hover text color  #c46f55*/
}

.nav-link:hover::after {
  width: 100%; /* animate outward */
}

/* why choose us Custom Animation  */

@keyframes slowMove {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-10px);
  }

  100% {
    transform: translateX(0);
  }
}

.animate-slowMove {
  animation: slowMove 4s ease-in-out infinite;
}

/* flip 180 deg */
.card {
  perspective: 1000px; /* allows 3D transforms inside */
}

.card-image {
  transform: rotateY(0deg);
  transition: transform 0.7s ease-in-out;
}

.card:hover .card-image {
  transform: rotateY(180deg);
}

/* Float fix */
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

.faq-content {
  transition: max-height 0.4s ease, padding 0.3s ease;
}

/* footer */
/* WebKit browsers (Chrome, Safari, Edge) */
.scrollbar-thin::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
.scrollbar-thin::-webkit-scrollbar-thumb {
  background-color: #974b34; /* brown */
  border-radius: 9999px;
}
.scrollbar-thin::-webkit-scrollbar-track {
  background: transparent;
}

/* Firefox */
.scrollbar-thin {
  scrollbar-width: thin;
  scrollbar-color: #974b34 transparent;
}

@keyframes expandSmooth {
  0%,
  100% {
    transform: scaleX(0);
    transform-origin: right;
  }
  50% {
    transform: scaleX(1);
    transform-origin: right;
  }
}
.animate-expand-infinite {
  animation: expandSmooth 9s ease-in-out infinite;
}

/* breadcrumb */
.breadcrumb-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  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%;
}

/* arrow slide effect on hover */
.breadcrumb-link::before {
  content: "→";
  opacity: 0;
  transform: translateX(-5px);
  margin-right: 4px;
  transition: all 0.3s ease;
}

.breadcrumb-link:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/*  */
.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;
}


.tabs__btn.active {
      color: #000;
      background-color: #ffea00;
    }

    .tabs__btn:hover {
      color: #000;
      background-color: #ffea00;
    }
    .tabs__body {
      display: none;
      font-size: 18px;
    }

    .tabs__body.active {
      display: block;
    }

.tabs__btn {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    color: #fff;
    background-color: #4e271b;
    transition: .3s;
}
.tabs__navigation{
    margin-bottom:30px;
}
.tabs__content p{
    font-size:16px;
    margin-bottom:10px;
}

.dropdown{
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #4e271b;
    min-width:250px;
    display:none;
}
.dropdown .dropdown{
    left:100%;
    top:0;
}
.dropdown a{
    font-size:15px;
}
.navbar_nav li:hover>.dropdown {
    display: block;
    transition: ease-in-out .5s;
}
.dropdown li{
    position:relative;
}
