/*
	Theme Name: Hello Elementor Child
	Version: 3.1.1
	Description: A custom child theme for Hello Elementor, created to enhance and extend styling and functionality for this website.
	Author: Rowell
	Template: hello-elementor
*/

/* Enable smooth scrolling for the entire page */
html {
    scroll-behavior: smooth;
}

body.dark-mode {
		background-color: #121212; /* Dark background color */
		color: #ffffff; /* Light text color */
}
.dark-mode .elementor-widget, 
.dark-mode .elementor-section {
		background-color: #1e1e1e;
}

.animation-slowdownup{
		 animation: slowUpDown 2s ease-in-out infinite;
}

@keyframes slowUpDown {
	0% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(2px);
	}
	100% {
		transform: translateY(0);
	}
}

/*Product Button Carousel*/
.carousel-container {
  position: relative;
  overflow: hidden;
  width: 100%; /* Set the desired width */
  height: 60px; /* Set the desired height */
}

.product-carousel {
  display: flex;
  gap: 10px;
  animation: scroll 20s linear infinite;
  will-change: transform;
	 scroll-behavior: smooth; /* Smooth scrolling for better experience */
    -webkit-overflow-scrolling: touch; /* Enables momentum scrolling on iOS devices */
}
 /* Hide scrollbar for a cleaner look */
  .product-carousel::-webkit-scrollbar {
    display: none;
  }

  .product-carousel {
    -ms-overflow-style: none; /* IE 10+ */
    scrollbar-width: none; /* Firefox */
  }

.product-item {
    flex: 0 0 auto;
    padding: 10px 20px;
    border: 1px solid #ccc;
    border-radius: 50px;
    background-color: #ffffff;
    color: #0c2356;
    white-space: nowrap;
    cursor: pointer;
    transistion: all 0.3s ease-in; 
}

.product-item:hover {
  background-color: #0c2356;
  color: #ffffff;
}

.carousel-container::before,
.carousel-container::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50px; /* Width of the fade effect */
  pointer-events: none;
  z-index: 1;
}

.carousel-container::before {
  left: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.carousel-container::after {
  right: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/*Gravity Form*/
#input_3_23{
	padding-left: 5px !important;
}

/*Extra*/
.rjks-shadow{
	box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}

#pricing_product_name{
	color: var(--e-global-color-4dd7667);
    font-family: "Inter", Sans-serif;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2em;
}
