::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #F5F5F5;
}

::-webkit-scrollbar {
  width: 12px;
  background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
  background-color: #003d2e;
}

* {
  scroll-behavior: smooth;
}

body {
  background-color: #011c1b;
  overflow-x: hidden;
  /* max-width: fit-content; */

}

@media only screen and (max-width: 500px) {
  .highlight-text {
    font-size: 1.2em !important;
    -webkit-text-stroke: 0px !important;
  }

  .outline-text {
    font-size: 3.5em !important;
    top: -25px !important;
  }
}

@media only screen and (min-width:501px) and (max-width: 900px) {
  .highlight-text {
    font-size: 2em !important;
    -webkit-text-stroke: 0px !important;
  }

  .outline-text {
    font-size: 5em !important;
    top: -30px !important;
  }
}

a {
  text-decoration: none;
}

img {
  -webkit-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  /* pointer-events: none; */
}


/* Preloader styling */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  /* Background color for the preloader */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

.preload-logo {
  width: 100px;
  /* Adjust the size of the logo */
  animation: flip 2s infinite ease-in-out;
}

/* Animation for flipping the logo */
@keyframes flip {
  0% {
    transform: rotateY(0deg);
  }

  50% {
    transform: rotateY(180deg);
  }

  100% {
    transform: rotateY(360deg);
  }
}


/* Keyframes for the fade-in and fade-out animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(50px);
  }
}

/* Animation classes */
.show-animation {
  animation: fadeInUp 0.5s ease forwards;
}

.hide-animation {
  animation: fadeOutDown 0.5s ease forwards;
}


/* Styling for the WhatsApp Popup */

/* Existing Styles */
.whatsapp-popup {
  position: fixed;
  bottom: 50px;
  right: 20px;
  z-index: 1000;
}

.whatsapp-btn {
  background-color: #25D366;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.whatsapp-btn:hover {
  transform: scale(1.05);
}

.whatsapp-widget {
  position: absolute;
  bottom: 60px;
  right: 0;
  width: 290px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 15px;
  opacity: 0; /* Initial state, hidden */
  visibility: hidden; /* Ensures no click when hidden */
}

.whatsapp-widget.show {
  opacity: 1;
  visibility: visible;
}

.whatsapp-btn img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.whatsapp-header {
  background-color: #25D366;
  color: #fff;
  padding: 8px;
  border-radius: 10px 10px 0 0;
}

.whatsapp-header h5 {
  font-size: 1rem;
}

.whatsapp-contact {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.contact-logo {
  width: 100%;
  height: auto;
}

.contact-text {
  color: #25D366;
  font-weight: bold;
}


