
.carousel-wrapper {
  position: static;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 2vw;
  scroll-behavior: smooth;
  padding: 1vw 4vw;
  height: auto;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.research-slide {
  flex: 0 0 30vw;
  background: white;
  border-radius: 16px;
  padding: 1vw;
  text-align: center;
  text-decoration: none;
  color: black;
  scroll-snap-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  font-size: 1.2vw;
}
.research-slide:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}
.research-slide img {
  width: 100%;
  height: 300px;
  border-radius: 12px;
  object-fit: cover;
}


/* Navigation buttons */
.carousel-btn {
  background: rgba(255, 255, 255, 0.8);
  border: none;
  position: relative;
  z-index: 5;
  font-size: 2.5vw;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #333;
  border-radius: 50%;
  width: 3vw;
  height: 3vw;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}
.carousel-btn:hover {
  background: rgba(255, 255, 255, 1);
}
.carousel-btn.left {
  left: 1vw;
}
.carousel-btn.right {
  right: 1vw;
}

/* Navigation buttons END */


/* Carousel Small*/


.small-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
      justify-content: space-evenly;

}

.small-carousel-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 2vw;
  scroll-behavior: smooth;
  padding: 1vw 4vw;


}

.small-carousel-track::-webkit-scrollbar {
  display: none;
}

.small-research-slide {
  flex: 0 0 15vw;
  background: white;
  border-radius: 16px;
  padding: 1vw;
  text-align: center;
  text-decoration: none;
  color: black;
  scroll-snap-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);

}
.small-research-slide:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
    color: rgb(43, 153, 197) !important;
  font-weight: bold;
  text-decoration: none;
}
.small-research-slide img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}