body {
  font-family: Arial, sans-serif;
}

.navbar {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero {
  background-image: url("artifacts/images/background/b.jpeg");
  background-size: cover;
  background-position: center;
  height: 70vh;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
}

.hero .container {
  position: relative;
  z-index: 1;
}

.card {
  transition: transform 0.3s ease-in-out;
}

.card:hover {
  transform: translateY(-5px);
}

.social-icons a {
  font-size: 1.5rem;
  transition: color 0.3s ease-in-out;
}

.social-icons a:hover {
  color: #007bff !important;
}

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

/* Add this to your styles.css file */
.carousel-inner {
  position: relative;
  width: 100%;
  height: 120px;
  overflow: hidden;
}

.slide-track {
  display: flex;
  width: calc(180px * 14); /* Adjust based on image width and count (including duplicates) */
  animation: scroll 30s linear infinite;
}

.slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-180px * 7)); /* Half the width to create seamless loop */
  }
}

/* For pausing on hover (optional) */
.carousel-inner:hover .slide-track {
  animation-play-state: paused;
}


.marquee-wrapper {
  overflow: hidden;
  position: relative;
  height: 150px;
}

.marquee {
  position: absolute;
  display: flex;
  width: 100%;
  height: 100%;
}

.marquee-content {
  display: flex;
  animation: scrolling 20s linear infinite;
}

.marquee-item {
  flex: 0 0 auto;
  margin: 0 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.marquee-item img {
  max-height: 80px;
  width: auto;
  object-fit: contain;
}

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

/* Optional: pause animation on hover */
.marquee-wrapper:hover .marquee-content {
  animation-play-state: paused;
}