:root {
  --primary: #fccf42;
  --primary-2: #035523;
  --light-primary: rgb(238, 174, 175);
  --primary-shadow: 0 6px 12px rgba(163, 0, 3, .20),
    0 12px 25px rgba(163, 0, 3, .10);
  --secondary: #fff3e0;
  --light: #f5f5f5;
  --white: #fff;
  --grey: #777;

}

* {
  font-family: "Amarna", sans-serif;
}

html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none !important;
}





/* =========================================== */
/* =========================================== */

/* marque top bar  */
.nav-top-section {
  background: var(--primary);
  overflow: hidden;
}

.nav-top {
  border-top: 1px solid #d8d8d8;
  border-bottom: 1px solid #d8d8d8;
  padding: 5px 0;
}

.marquee {
  display: inline-flex;
  gap: 80px;
  /* <-- yaha distance control */
  white-space: nowrap;
  animation: marquee 25s linear infinite;
  padding-left: 100%;
}

.marquee span {
  font-weight: 600;
  font-size: 14px;
  color: var(--light);
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* ==================================================== */
/* ==================================================== */

/* navbar css  */
/* =========================
   TOPBAR
========================= */

.topbar {
  background: #ffd400;
  padding: 8px 0;
  font-size: 14px;
}

.social i {
  margin-left: 15px;
  cursor: pointer;
}


/* =========================
   NAVBAR
========================= */

.custom-navbar {
  background: #000;
  padding: 12px 0;
}

.logo img {
  margin-right: 8px;
}

.navbar-brand {
  font-size: 22px;
  font-weight: 700;
}

/* menu links */

.navbar-nav .nav-link {
  color: white !important;
  margin: 0 15px;
  font-weight: 500;
  font-size: 14px;
  transition: 0.3s;
}

.navbar-nav .nav-link:hover {
  color: #ffd400 !important;
}

/* active */

.navbar-nav .active {
  color: #ffd400 !important;
}

/* book button */

.book-btn {
  background: #ffd400;
  padding: 12px 28px;
  font-weight: 600;
  color: black;
  text-decoration: none;
  clip-path: polygon(0 0, 85% 0, 100% 100%, 0% 100%);
}

/* button 2 */
.call-btn {
  background: #000;
  color: var(--white);
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
}

.call-btn:hover {
  background: #222;
}


/* =========================
   STICKY NAVBAR
========================= */

.navbar {
  position: sticky;
  top: 0;
  z-index: 9999;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  padding-top: 5px !important;
  padding-bottom: 5px !important;
}


/* =========================
   DROPDOWN MENU
========================= */

.dropdown-menu {
  border: none;
  border-radius: 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* dropdown items */

.dropdown-menu .dropdown-item {
  padding: 10px 15px;
  transition: all 0.3s ease;
}

/* hover */

.dropdown-menu .dropdown-item:hover {
  background-color: #ffd400;
  color: #000;
}

/* active */

.dropdown-menu .dropdown-item:focus,
.dropdown-menu .dropdown-item.active {
  background-color: #ffd400;
  color: #000;
}


/* =========================
   HOVER DROPDOWN DESKTOP
========================= */

@media (min-width:992px) {

  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }

}


/* =========================
   DROPDOWN FADE ANIMATION
========================= */

.fade-menu {
  animation: fadeIn 0.25s ease-in-out;
}

@keyframes fadeIn {

  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }

}


/* =========================
   NAVBAR TOGGLER
========================= */

.navbar-toggler {
  border: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}


/* =========================
   RESPONSIVE DESIGN
========================= */

@media (max-width:992px) {

  .navbar-nav {
    background: #000;
    padding: 20px;
    text-align: center;
  }

  .navbar-nav .nav-link {
    margin: 10px 0;
  }

  .book-btn {
    display: inline-block;
    margin-top: 15px;
  }

  .social i {
    margin-left: 10px;
  }

}

/* =============================================== */
/* =============================================== */

/* main-heading css  */

.taxi-gif {
  width: 75px;
  height: auto;
}

/* text area */

.welcome-text {
  display: flex;
  flex-direction: column;
}

/* text */

.sub {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 6px;
  color: var(--primary-2);
}

/* road */

.road {
  width: 220px;
  height: 6px;
  background: #333;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

/* dashed line */

.road::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: repeating-linear-gradient(to right,
      #fff 0px,
      #fff 20px,
      transparent 20px,
      transparent 40px);
  transform: translateY(-50%);
}

.main-heading .main-title {
  font-size: 35px;
}

.main-heading p {
  font-size: 12px;
  color: var(--grey);

}

/* mobile */

@media(max-width:768px) {

  .main-heading .main-title {
    font-size: 28px;
  }

}

/* ====================================== */
/* ====================================== */

/* Footer CSS */



/* ====================================================== */
/* ====================================================== */

/* Attention line css  */
.attention-line {
  background: linear-gradient(90deg, #ffd400, #ffb700);
  color: #000;
  padding: 12px 20px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

/* shine effect */

.attention-line::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, 0.7),
      transparent);
  animation: shine 3s infinite;
}

@keyframes shine {
  100% {
    left: 100%;
  }
}

/* ========================================== */
/* ============================================ */

/* back to top css  */
.back-to-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  color: #000;
  border: none;
  font-size: 22px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.back-to-top:hover {
  background: #12766b;
  transform: translateY(-4px);
}

/* ================================================ */
/* ============================================= */

/* faq css  */

/* REMOVE BOOTSTRAP DEFAULTS */
.custom-faq .accordion-item {
  border: 1px solid #ddd;
  /* margin-bottom: 18px; */
}

.custom-faq .accordion-button {
  background: #fff !important;
  box-shadow: none !important;
  font-weight: 600;
  font-size: 16px;
  padding: 35px 24px;
  color: #000;
}

/* REMOVE BLUE ON CLICK */
.custom-faq .accordion-button:focus {
  box-shadow: none;
  border-color: #ddd;
}

/* REMOVE DEFAULT ICON */
.custom-faq .accordion-button::after {
  display: none;
}

/* CUSTOM ICON */
.custom-faq .accordion-button .icon {
  margin-left: auto;
  font-size: 22px;
  font-weight: 400;
  color: #000;
  position: relative;
}

/* ARROW (DEFAULT) */
.custom-faq .accordion-button.collapsed .icon::before {
  content: "▾";
}

/* MINUS WHEN OPEN */
.custom-faq .accordion-button:not(.collapsed) .icon::before {
  content: "–";
  font-size: 26px;
}

/* BODY */
.custom-faq .accordion-body {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  padding: 0 24px 22px;
  background: #fff;
}

/* MOBILE */
@media (max-width: 768px) {
  .custom-faq .accordion-button {
    font-size: 15px;
    padding: 18px;
  }
}

/* ============================================ */
/* ============================================ */

/* breadcrumb css  */

.breadcrum-hero {
  background: #eef7f4;
  padding: 80px 0;
  position: relative;
}

/* gradient overlay */
.breadcrum-hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(163, 0, 3, .12), transparent);
  z-index: 0;
}

.title-heading {
  font-size: 44px;
  font-weight: 700;
  color: #a30003;
  margin-bottom: 10px;
}

.breadcrumb-text {
  font-size: 16px;
  color: #555;
}

.breadcrumb-text a {
  color: #777;
}

/* floating leaves */

.leaf {
  position: absolute;
  width: 120px;
  opacity: .4;
  animation: floatLeaf 6s ease-in-out infinite;
}

.leaf-1 {
  top: 20%;
  left: 5%;
}

.leaf-2 {
  bottom: 15%;
  right: 6%;
  animation-delay: 2s;
}

@keyframes floatLeaf {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* responsive */

@media(max-width:768px) {
  .breadcrum-hero {
    padding: 30px 0 !important;
  }

  .title-heading {
    font-size: 30px;
  }

  .breadcrumb-text {
    font-size: 13px;
  }

  .leaf {
    width: 70px;
  }

}

/* ======================
                               SNOW PARTICLES
                            ====================== */

.snow-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(2px 2px at 20px 30px, #3b1818, transparent),
    radial-gradient(2px 2px at 40px 70px, #fb6363, transparent),
    radial-gradient(2px 2px at 90px 40px, #cc0606, transparent),
    radial-gradient(2px 2px at 130px 80px, #fb6363, transparent),
    radial-gradient(2px 2px at 160px 20px, #95c11d, transparent);
  background-size: 200px 200px;
  animation: snowFall 8s linear infinite;
  opacity: .6;
  z-index: 1;
}

@keyframes snowFall {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 0 400px;
  }
}

/* ================================================= */
/* ================================================= */


/* products cards css  */

.product-grid {
  display: flex;
  align-items: stretch;
  height: 100% !important;
}

.product-card {
  border: 1.5px solid #de5e5e;
  border-radius: 28px;
  padding: 16px;
  background: #fff;
  position: relative;
  box-shadow: var(--primary-shadow);
}

.product-card a {
  text-decoration: none;
  color: #000;
}

.product-img {
  background: #f2f2f2;
  border-radius: 10px;
  padding: 12px 25px;
  position: relative;
  overflow: hidden;
}

.product-img img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  object-position: center;
  transition: .35s;
}

.product-card:hover img {
  transform: scale(1.05);
}

/* badge */

.product-badge {
  position: absolute;
  top: 22px;
  left: 22px;
  padding: 1px 10px;
  border-radius: 20px;
  font-size: 10px;
  color: #fff;
  z-index: 10;
}

.hot {
  background: #ff6b90;
}

.new {
  background: #88b3a4;
}

.best {
  background: #ffa45c;
}

.sale {
  background: #9ec9ea;
}

/* hover icons */

.pp-hover {
  display: flex;
  gap: 12px;
  transition: .25s;
}

.pp-hover-btn {
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background: var(--light-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  border: none;
  text-decoration: none;
  cursor: pointer;
}

.pp-hover-btn i {
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pp-hover-btn:hover {
  background: var(--primary);
  color: white;
}

.product-card:hover .pp-hover {
  opacity: 1;
}

/* body */
.product-body {
  padding: 18px 6px 6px;
  position: relative;
}

.product-body small {
  color: #8b8b8b;
}

.product-body h6 {
  font-weight: 700;
  font-size: 15px;
  margin: 6px 0;
}

.pp-price strong {
  color: var(--primary);
  font-size: 15px;
}

.pp-price del {
  color: #aaa;
  font-size: 13px;
  margin-left: 6px;
}

/* sizes */

.pp-size {
  border-radius: 6px;
  font-size: 10px;
  cursor: pointer;
}

.pp-size.active {
  color: #000;
  border-color: var(--primary);
}

/* arrows */

.pp-prev,
.pp-next {
  position: absolute;
  top: 45%;
  width: 35px;
  height: 35px;
  background: #a30003;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 99
}

.pp-prev {
  left: 15px;
}

.pp-next {
  right: 15px;
}

/* responsive */

@media(max-width:768px) {
  section .container {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
}

.productSwiper {
  height: auto !important;
  width: 100%;
  overflow: hidden;
}

.swiper-wrapper {
  align-items: flex-start !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.swiper-slide {
  height: auto !important;
  display: flex;
}

.productSwiper .swiper-slide {
  display: flex;
  justify-content: center;
  box-sizing: border-box;
}

.product-card {
  height: auto !important;
  width: 100%;
  max-width: 100%;
}

.slider-section .slider-container {
  padding-left: 15px !important;
  padding-right: 15px !important;
}