/** hero section **/
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
}

.hero #hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensure the video covers the entire area */
  transform: translate(-50%, -50%); /* Center the video */
  z-index: 1; /* Make sure video is behind the content */
}

.hero .hero-content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  padding-bottom: 10px;
  width: 100%;
}

.hero .hero-content .background {
  position: absolute;
  bottom: 0;
  right: o;
  width: 100%;
  z-index: -1;
}
.hero .hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.hero .hero-content p {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
.hero .hero-content .btn {
  padding: 1rem 2rem;
  background-color: #F27F2F;
  border: none;
  border-radius: 4px;
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
}
.hero .hero-content .video-controls {
  bottom: 20px;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.hero .hero-content .video-controls button {
  padding: 10px 15px;
  border: none;
  color: white;
  background-color: transparent;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 4px;
}
.hero .hero-content .video-controls button:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/**industries section **/
.industrie {
  box-sizing: border-box;
  width: 100%;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 60px;
}
.industrie .head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.industrie .head p {
  text-align: center;
}
.industrie .container-1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}
.industrie .container-1 .categories {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 0px;
  padding: 0px;
  justify-content: center;
}
.industrie .container-1 .categories .categorie {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.industrie .container-1 .categories .categorie .card {
  position: absolute;
  bottom: -100%;
  left: 0;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  border-radius: 0;
  border: none;
  background-color: #F27F2F;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0px;
  transition: bottom 0.5s ease;
}
.industrie .container-1 .categories .categorie img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.industrie .container-1 .categories .categorie .icon {
  width: 50px;
  height: auto;
  padding: 10px;
}
.industrie .container-1 .categories .categorie:hover .card {
  bottom: 0;
}
.industrie .container-1 .categories .categorie p {
  text-align: center;
  padding: 10px;
  max-width: 200px;
  display: block;
}

#service{
  padding-top: 5em ;
}

/** Works section**/
.works {
  width: 100%;
  overflow: hidden;
  padding: 100px 0;
  background-color: aliceblue;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}
.works .head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.works .head p {
  text-align: center;
}
.works .carousel-container {
  width: 100%; /* Match container width */
  overflow: hidden; 
  position: relative;
}

.works .carousel-container .carousel-track {
  display: flex;
  animation: scroll 20s linear infinite; /* Adjust duration as needed */
}

.works .carousel-container .item {
  min-width: 300px; /* Consistent item width */
  flex: 0 0 auto; /* Prevent resizing */
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); } /* Moves one full width */
}

.works .carousel-container .carousel-track .item .project-card {
  width: 100%; /* Adjust as needed */
  border-radius: 10px; /* Rounded corners */
  overflow: hidden; /* Prevent images from overflowing */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  transition: transform 0.3s ease-in-out; /* Smooth hover effect */
}

.works .carousel-container .carousel-track .item .project-card:hover {
  transform: scale(1.05); /* Slightly enlarge on hover */
}

.works .carousel-container .carousel-track .item .project-card .card-top img {
  width: 100%;
  height: auto;
  display: block;
}

.works .carousel-container .carousel-track .item .project-card .card-bottom {
  background-color: #fff; /* White bar for the logo */
  padding: 15px; /* Padding around the logo */
  display: flex;
  justify-content: center; /* Center the logo horizontally */
  align-items: center; /* Center the logo vertically */
  height: 100px; /* Fixed height for the white bar */
}

.works .carousel-container .carousel-track .item .project-card .card-bottom img {
  height: 60%; /* Make the logo fit the height of the bar */
  object-fit: contain; /* Keep the aspect ratio of the logo */
}

/* show case section */
/** Showcase Section **/
.showcase {
  overflow: hidden;
  width: 100%;
  padding: 80px 20px;
  background-color: #f0f4fa;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

.showcase .intro {
  max-width: 900px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.showcase .intro h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #333;
}

.showcase .intro p {
  font-size: 1.1rem;
  color: #555;
}

.showcase .showcase-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 0 10px;
}

.showcase .showcase-slider .slider-track {
  padding: 30px 0;
  display: flex;
  gap: 30px;
  width: max-content;
  animation: smooth-scroll 20s linear infinite;
}

.showcase .showcase-slider .slider-track .card {
  
  min-width: 350px;
  /* flex: 1 1 0; */
  border-radius: 15px;
  background-color: #fff;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
}

.showcase .showcase-slider .slider-track .card:hover {
  transform: scale(1.1);
}

.showcase .showcase-slider .slider-track .card .card-header {
  padding: 0;
  height: 180px;
  overflow: hidden;
}

.showcase .showcase-slider .slider-track .card .card-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.showcase .showcase-slider .slider-track .card .card-header:hover img {
  transform: scale(1.1);
}

.showcase .showcase-slider .slider-track .card .card-content {
  padding: 20px;
  text-align: center;
}

.showcase .showcase-slider .slider-track .card .card-content h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 10px;
}

.showcase .showcase-slider .slider-track .card .card-content p {
  font-size: 1rem;
  color: #666;
}

.card-bottom {
  background-color: #fff; /* White bar for the logo */
  padding: 15px; /* Padding around the logo */
  display: flex;
  justify-content: center; /* Center the logo horizontally */
  align-items: center; /* Center the logo vertically */
  height: 100px; /* Fixed height for the white bar */
}
.card-bottom img{
  width: 100px; /* Fixed height for the white bar */
}

.showcase .showcase-slider .slider-track .card .card-footer {
  background-color: #eceff4;
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.showcase .showcase-slider .slider-track .card .card-footer a {
  font-size: 0.95rem;
  text-decoration: none;
  color: #007bff;
  transition: color 0.3s;
}

.showcase .showcase-slider .slider-track .card .card-footer a:hover {
  color: #0056b3;
}

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


/** Clients Section**/
.clients {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px 0;
}
.clients .head h1 {
  text-align: center;
}
.clients .head p {
  text-align: center;
}
.clients .icons {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 100px;
  padding: 100px 0;
  justify-content: center;
  align-items: center;
  justify-items: center;
}
.clients .icons img {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

/* Styles for larger screens (desktops and laptops) */
/* Styles for tablets */
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .works .carousel-container {
    width: 5000px; /* Full width */
    overflow: hidden; /* Hide the overflow to prevent items from being visible outside the container */
    position: relative;
  }
  .works .carousel-container .carousel-track {
    display: flex;
    width: max-content; /* The width will be dynamically calculated based on its content */
  }
  .works .carousel-container .carousel-track .item {
    max-width: 500px; /* Each item takes 20% of the container width */
    box-sizing: border-box;
    padding: 20px;
    text-align: center;
  }
  .works .carousel-container .carousel-track .item .project-card {
    width: 100%; /* Adjust as needed */
    border-radius: 10px; /* Rounded corners */
    overflow: hidden; /* Prevent images from overflowing */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    transition: transform 0.3s ease-in-out; /* Smooth hover effect */
  }
  .works .carousel-container .carousel-track .item .project-card:hover {
    transform: scale(1.05); /* Slightly enlarge on hover */
  }
  .works .carousel-container .carousel-track .item .project-card .card-top img {
    width: 100%;
    height: auto;
    display: block;
  }
  .works .carousel-container .carousel-track .item .project-card .card-bottom {
    background-color: #fff; /* White bar for the logo */
    padding: 15px; /* Padding around the logo */
    display: flex;
    justify-content: center; /* Center the logo horizontally */
    align-items: center; /* Center the logo vertically */
    height: 100px; /* Fixed height for the white bar */
  }
  .works .carousel-container .carousel-track .item .project-card .card-bottom img {
    height: 60%; /* Make the logo fit the height of the bar */
    object-fit: contain; /* Keep the aspect ratio of the logo */
  }
}
/* Styles for mobile devices */
@media screen and (max-width: 767px) {
  .works .carousel-container {
    width: 3000px; /* Full width */
    overflow: hidden; /* Hide the overflow to prevent items from being visible outside the container */
    position: relative;
  }
  .works .carousel-container .carousel-track {
    display: flex;
    width: max-content; /* The width will be dynamically calculated based on its content */
  }
  .works .carousel-container .carousel-track .item {
    max-width: 300px; /* Each item takes 20% of the container width */
    box-sizing: border-box;
    padding: 20px;
    text-align: center;
  }
  .works .carousel-container .carousel-track .item .project-card {
    width: 100%; /* Adjust as needed */
    border-radius: 10px; /* Rounded corners */
    overflow: hidden; /* Prevent images from overflowing */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    transition: transform 0.3s ease-in-out; /* Smooth hover effect */
  }
  .works .carousel-container .carousel-track .item .project-card:hover {
    transform: scale(1.05); /* Slightly enlarge on hover */
  }
  .works .carousel-container .carousel-track .item .project-card .card-top img {
    width: 100%;
    height: auto;
    display: block;
  }
  .works .carousel-container .carousel-track .item .project-card .card-bottom {
    background-color: #fff; /* White bar for the logo */
    padding: 15px; /* Padding around the logo */
    display: flex;
    justify-content: center; /* Center the logo horizontally */
    align-items: center; /* Center the logo vertically */
    height: 100px; /* Fixed height for the white bar */
  }
  .works .carousel-container .carousel-track .item .project-card .card-bottom img {
    height: 60%; /* Make the logo fit the height of the bar */
    object-fit: contain; /* Keep the aspect ratio of the logo */
  }
}
/* Keyframes for continuous infinite scrolling */
@keyframes scroll {
  0% {
    transform: translateX(0); /* Start at the first item */
  }
  100% {
    transform: translateX(-50%); /* Scroll to the end of the items and loop */
  }
}

/*# sourceMappingURL=home.css.map */
