.camera_wrap {
  max-width: 100%;
  height: 600px;
  overflow: hidden;
  position: relative;
  margin-bottom : 0px !important;
}

.camera_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  filter: brightness(70%);
}

.camera_caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
}

.camera_wrap,
.camera_wrap > div,
.camera_wrap img {
  height: 100vh !important;
}


#dynamicText {
  filter: blur(0);
  opacity: 1;
  transition: filter 0.5s ease, opacity 0.5s ease;
}

#dynamicText.blur-out {
  filter: blur(8px);
  opacity: 0;
}

#dynamicText.blur-in {
  filter: blur(0);
  opacity: 1;
}

.marquee {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.marquee-inner {
  display: flex;
  width: max-content;
  animation: scroll-left 25s linear infinite;
  align-items: center;
}

.swiper-slide.flex.justify-center.items-center {
  display: flex
;
}

/* Logo styling */
.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 60px;
  flex-shrink: 0;
  height: 3rem;
}

.logo img {
  width: auto;
  height: 100%;
  object-fit: contain;
}

/* Scrolling keyframes */
@keyframes scroll-left {
  0% {
      transform: translateX(0);
  }
  100% {
      transform: translateX(-50%);
  }
}

/* Responsive logo sizes */
@media (max-width: 1200px) {
  .logo {
      margin-right: 20px;
      height: 4rem;
  }
}

@media (max-width: 768px) {
  .logo {
    margin-right: 40px;
    height: 3rem;
  }
}

@media (max-width: 480px) {
  .logo {
    margin-right: 25px;
    height: 3rem;
  }
}


@media only screen and (max-width: 640px) {
  .camera_wrap{
    height: 60vh !important;
  }
}

