:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway", sans-serif;
  --nav-font: "Poppins", sans-serif;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--bs-white);
  font-family: var(--default-font);
  /* font-family: 'Tajawal', sans-serif; */
}

/* input[type='date'] , input[type='datetime-local'], input[type='time'] {
  text-align: center !important;
} */

.ltr-popover, input[type='email'], input[name='phone'], input[name='mobile'] {
  direction: ltr !important;
}


.overlay {
  position: absolute;
  background-color: rgba(var(--bs-dark-rgb), 0.3);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.img-fit {
  width: 100% !important;
  height: 100% !important;
  max-height: 500px !important;
  /* object-fit: cover; */
}

.zoom img {
  transition: transform .2s;
  /* Animation */
  width: 100%;
  max-width: 120%;
  height: 100%;


}

.zoom img:hover {
  transform: scale(0.75);
  /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  /* inset: 0; */
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--bs-primary) transparent var(--bs-primary) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}



@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

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

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

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





.section-title {
  color: var(--bs-primary);
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 30px;
}

.section-title:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 3px;
  background: var(--bs-secondary);
}


.service-card {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  background-color: white;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
  font-size: 2.5rem;
  color: var(--bs-secondary);
  margin-bottom: 20px;
}



.product-card {
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s;
  background-color: white;
}

.product-card:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.product-img {
  height: 200px;
  object-fit: cover;
  filter: brightness(0.95) contrast(1.05) saturate(1.1);
}


footer {
  background-color: var(--bs-dark);
  color: white;
  padding: 50px 0 20px;
}

.footer-links a {
  color: var(--bs-light);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--bs-secondary);
}

.social-icon {
  color: white;
  font-size: 1.5rem;
  margin-left: 15px;
  transition: color 0.3s;
}

.social-icon:hover {
  color: var(--bs-secondary);
}

.img-filter {
  filter: brightness(0.95) saturate(1.1) contrast(1.05);
  border-radius: 8px;
}

.bg-light-custom {
  background-color: var(--light-bg);
}

.contact-info i {
  color: var(--bs-secondary);
  font-size: 1.5rem;
  margin-right: 10px;
}

.btn-sty {
  text-transform: capitalize;
  letter-spacing: 1px;
  /* font-size: 0.85rem; */
  transition: all 0.3s;
  border-radius: 10px;
  /* padding: 0.5rem 0.5rem; */
  font-weight: 700;
}

.scroll-top {
  position: fixed;
  bottom: 25px;
  right: 20px;
  width:50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--bs-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.scroll-top.active {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background-color: var(--bs-link-hover-color);
  transform: translateY(-3px);
}