@import url(https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap);

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scrollbar-width: thin;
  scrollbar-color: #ffffff4d #ffffff0d;
}

::-webkit-scrollbar {
  width: 8px;
}

/* Scrollbar track (background) */
::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 20px;
}

/* Scrollbar thumb (the draggable part) */
::-webkit-scrollbar-thumb {
  background: #ffffff33;
  border: 1px solid #ffffff4d;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.3s ease;
}

/* On hover */
::-webkit-scrollbar-thumb:hover {
  background: #ffffff66;
}

::selection {
  background: #ffcc33c8;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  max-width: 100vw;
  overflow-x: hidden;
  font-family: 'Poppins', sans-serif !important;
}

main {
  padding-top: 75px;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* For Firefox */
input[type=number] {
  -moz-appearance: textfield;
  appearance: textfield;
}

/* ----------------------theme style-------------------------- */

:root {

  --header_primary_color: #6c5ce7;

  --header_primary_text: #ffffff;
  --header_primary_bg: #000000;

  --header_secondary_text: #D9D9D9;
  --header_secondary_bg: var(--header_primary_color);

  --header_btn_primary_text: #fff;
  --header_btn_primary_bg: var(--header_primary_color);

  --header_btn_secondary_text: #ffffff;
  --header_btn_secondary_bg: #3D3D3D;

  --footer_primary_bg: #000000;
  --footer_primary_text: #ffffff;
  --footer_secondary_bg: #D9D9D9;
  --footer_secondary_text: #D9D9D9;

  --blur_primary_bg: rgba(38, 40, 44, 0.819);
  --blur_secondary_bg: rgba(255, 255, 255, 0.05);

}

.nav_theme__book___cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.theme_toggle_btn {
  display: none;
  align-items: center;
  justify-content: center;
  margin-top: 3px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background-color: transparent;
}

.toogle_icon_svg img {
  width: 18px;
  height: 18px;
}

/* --------------------------------- Navigation Styles --------------------------------- */
.header {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

.navbar {
  background-color: var(--header_primary_bg);
  color: var(--header_primary_text);
  padding: 0 20px;
  width: 100%;
  max-width: 100%;
  height: 75px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  transition: all 0.7s ease;
}

.navbar.shrink {
  top: 0.7rem;
  max-width: 1400px;
  width: calc(100% - 40px);
  padding: 1rem;
  border-radius: 60px;
  background-color: var(--blur_primary_bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background-clip: padding-box;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.7s ease;
}

.navbar.shrink .nav_cta a {
  border-radius: 30px;
}

.navbar.hide {
  transform: translateY(-120%);
  transition: all 0.5s ease;
}

.navbar.show {
  transform: translateY(0%);
  transition: all 0.5s ease;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo a {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo img {
  height: 42px;
  width: auto;
}

.nav_links {
  display: flex;
  gap: 3rem;
  list-style: none;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.nav_links li {
  position: relative;
}

.nav_links li a {
  color: var(--header_primary_text);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.6s ease;
  cursor: pointer;
}

.nav_links li a:hover {
  color: var(--header_primary_color);
}

.notification_badge {
  background-color: var(--header_secondary_bg);
  color: var(--header_btn_primary_text);
  border-radius: 5px;
  padding: 0rem 0.3rem;
  font-size: 0.6rem;
  font-weight: 900;
  position: absolute;
  top: -10px;
  right: -10px;
  width: fit-content;
}

.nav_cta {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.nav_cta a {
  background-color: var(--header_btn_primary_bg);
  color: var(--header_btn_primary_text);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-weight: 600;
  font-size: 0.8rem;
  transition: all 0.6s ease;
  text-decoration: none;
  cursor: pointer;
}

.nav_cta a:hover {
  background-color: var(--header_btn_secondary_bg);
  color: var(--header_btn_secondary_text);
}

.nav_cta_mobile {
  display: none;
  align-items: center;
}

.nav_cta_mobile a {
  background-color: var(--header_btn_primary_bg);
  color: var(--header_btn_primary_text);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-weight: 600;
  font-size: 0.7rem;
  text-decoration: none;
  transition: all 0.6s ease;
}

.nav_cta_mobile a:hover {
  background-color: var(--header_btn_secondary_bg);
  color: var(--header_btn_secondary_text);
}

/* ------------ DropDown style ------------ */

.dropdown_menu {
  display: none;
  justify-content: start;
  gap: 3rem;
  padding: 2rem;
  width: 100%;
  height: calc(100dvh - 75px);
  background: var(--blur_primary_bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-40px);
  transition: all 0.3s ease;
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
  background-clip: padding-box;
}

.dropdown_menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  display: flex;
}

.dropdown_menu.shrink {
  margin-top: 20px;
  gap: 1.5rem;
  width: calc(100% - 40px);
  max-width: 1400px;
  height: calc(100dvh - 100px);
  border-radius: 2rem;
}

.dropdown_menu.shrink .service_category {
  width: calc(33.333% - 1rem);
}

.dropdown_menu .service_category {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: calc(33.333% - 3rem);
}

.dropdown_menu .service_category_name {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--header_secondary_text);
}

.dropdown_menu .service_list_category {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.dropdown_menu .service_list_item {
  background: var(--blur_secondary_bg);
  padding: 1rem;
  border-radius: 12px;
  transition: background 0.3s ease;
}

.dropdown_menu .service_list_item:hover {
  background: var(--blur_primary_bg);
}

.dropdown_menu .service_list_item a {
  text-decoration: none;
}

.dropdown_menu .service_icon img {
  width: 40px;
  height: 40px;
}

.dropdown_menu .service_content {
  margin-top: 0.5rem;
}

.dropdown_menu .nav_service_name {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--header_primary_text);
  margin-bottom: 0.5rem;
}

.dropdown_menu .nav_service_description {
  color: var(--header_secondary_text);
  font-size: 0.85rem;
  font-weight: 300;
}

/* --------------------- hamburger --------------------- */

.nav_toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.nav_toggle span {
  width: 25px;
  height: 3px;
  border-radius: 2px;
  transition: all 0.3s ease;
  background-color: var(--header_primary_text);
}

.nav_toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav_toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav_toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --------------------------------- bookingSlider Styles --------------------------------- */

.bookingSideNav {
  background-color: rgba(0, 0, 0, 0.413);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

.slider-panel {
  position: fixed;
  right: 0;
  transform: translateX(100%);
  width: 100%;
  max-width: 600px;
  height: 100vh;
  color: #fff;
  transition: transform 0.3s;
  z-index: 5;
  overflow: hidden;
  background-color: #fff;
  box-shadow: -8px 12px 21px -7px rgba(0, 0, 0, 0.3);
}

.slider-panel.open {
  transform: translateX(0);
}

.loader1 {
  border: 8px solid #f3f3f3;
  border-top: 8px solid #ffcc33;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
  margin-left: auto;
  margin-right: auto;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.dynamic_iframe {
  border: 0;
  width: 100%;
  height: 100dvh;
}

/* --------------------------------- callButton Styles --------------------------------- */

.global_call_button {
  height: 40px;
  width: 40px;
  display: grid;
  place-items: center;
  border: none;
  outline: none;
  color: #fff;
  background: #111;
  cursor: pointer;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
  border-radius: 100%;
  transition: all 0.3s ease;
}

.global_call_button img {
  width: 18px;
}

.global_call_button:before {
  content: '';
  background: linear-gradient(45deg, #ff0000, #ffb700, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #00ffa2);
  position: absolute;
  top: -2px;
  left: -2px;
  background-size: 400%;
  z-index: -1;
  filter: blur(5px);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  animation: glowing 20s linear infinite;
  opacity: 1;
  transition: opacity .3s ease-in-out;
  border-radius: 100%;
}

@supports (-webkit-backdrop-filter: blur(5px)) {
  .global_call_button::before {
    -webkit-mask-image: radial-gradient(circle, white 60%, transparent 100%);
    mask-image: radial-gradient(circle, white 60%, transparent 100%);
  }
}


.global_call_button:active {
  color: #000
}

.global_call_button:active:after {
  background: transparent;
}

.global_call_button:hover {
  transform: scale(1.3);
}

.global_call_button:after {
  z-index: -1;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #111;
  left: 0;
  top: 0;
  border-radius: 100%;
}

@keyframes glowing {
  0% {
    background-position: 0 0;
  }

  50% {
    background-position: 400% 0;
  }

  100% {
    background-position: 0 0;
  }
}

/* --------------------- Responsive --------------------- */

@media (max-width: 1300px) {

  .dropdown_menu .service_category {
    width: 100%;
  }

  .dropdown_menu .service_list_category {
    grid-template-columns: 1fr;
  }

}

/* Standard tablet and below */
@media (max-width: 1024px) {

  /* ------------- Navigation Styles --------------- */
  .nav_toggle {
    display: flex;
  }

  .nav_cta {
    display: none;
  }

  .nav_cta_mobile {
    display: block;
  }

  .nav_links {
    position: absolute;
    top: 75px;
    left: 0;
    flex-direction: column;
    background-color: var(--blur_primary_bg);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.3);
    gap: 1.5rem;
    max-height: 0;
    width: 100%;
    overflow: hidden;
    transition: all 0.4s ease;
    padding: 0 1.5rem;
    background-clip: padding-box;
    z-index: 999;
  }

  .nav_links.active {
    max-height: 500px;
    padding: 2rem 1.5rem;
    border-radius: 0 0 15px 15px;
  }

  .navbar.shrink {
    width: calc(100% - 20px);
  }

  .navbar.shrink_mobile {
    width: calc(100% - 20px);
    padding: 1rem;
    top: 0.7rem;
    background-color: var(--blur_primary_bg);
    backdrop-filter: unset;
    -webkit-backdrop-filter: unset;
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    border-radius: 0;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
  }

  .nav_links li {
    font-size: 1.5rem;
  }

  .notification_badge {
    top: 3px;
    left: 74px;
  }

  .dropdown_menu {
    flex-wrap: wrap;
    margin-top: 100px;
    width: calc(100% - 20px);
    height: calc(100dvh - 190px);
    gap: 2rem;
    padding: 1rem;
    justify-content: start;
    border-radius: 0 0 15px 15px;
  }

  .dropdown_menu .service_category {
    width: calc(50% - 1rem);
  }

  .dropdown_menu.shrink {
    width: calc(100% - 20px);
    margin-top: 100px;
    height: calc(100dvh - 190px);
    border-radius: 0 0 15px 15px;
  }

  #productsMenu {
    margin-top: 150px;
    height: calc(100dvh - 240px);
  }

  .dropdown_menu .nav_service_name {
    font-size: 0.9rem;
  }

  .dropdown_menu .nav_service_description {
    font-size: 0.8rem;
  }
}

/* Large phones and small tablets */
@media (max-width: 768px) {

  .logo img {
    height: 36px;
  }

  .dropdown_menu .service_category,
  .dropdown_menu.shrink .service_category {
    width: 100%;
  }

  .dropdown_menu .service_list_category {
    grid-template-columns: 1fr;
  }

}