body {
  font-family: "poppins" !important;
  font-size: 16px;
  line-height: 1.5;
}

.checked {
  color: #ed2024;
}

.txt-white p {
  color: white;
}

.exhibit-hero {
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0;
}

.exhibit-swiper {
  width: 100%;
  height: 100vh;
}

.exhibit-hero .swiper-slide {
  width: 100%;
  height: 100%;
  position: relative;
}

.exhibit-hero .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.faq-part-one {
  padding: 10% 5% 10% 1.5%;
}

#productInfoSection {
  background-color: #fbae00;
  padding: 100px 0;
}

@media (min-width: 992px) {
  .vertical-center {
    display: table;
    width: 100%;
  }

  .vertical-center > .col-md-6 {
    display: table-cell;
    vertical-align: middle;
    float: none;
  }
}

@media (max-width: 991.96px) {
  .faq-part-one {
    padding: 10% 0.8%;
  }

  #productInfoSection {
    background-color: #fbae00;
    padding: 100px 10px;
  }
}

body p {
  font-family: "poppins";
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.5;
  letter-spacing: -0.4px;
  text-align: center;
  color: #000000;
}

@media (max-width: 797.98px) {
  .navbar-brand img {
    margin-left: 30px;
  }
}

#address-bar-footer a.text-secondary.text-decoration-none:hover {
  text-decoration: none;
}

h5 {
  max-width: 100%;
}

.logo_img {
  height: auto;
  max-width: 200px;
}

#client-logo-carousel .horizontal-logo-carousel {
  width: 100%;
  max-width: 1320px;
  height: 180px;
  overflow: hidden;
  margin: 40px auto;
  padding: 20px;
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#client-logo-carousel .logo-list {
  display: flex;
  gap: 30px;
  will-change: transform;
  transition: transform 0.6s ease-in-out;
}

#client-logo-carousel .logo-card {
  width: 180px;
  height: 100px;
  padding: 15px;
  border-radius: 14px;
  /* background: linear-gradient(135deg, #f0f4f7, #ffffff); */
  /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08); */
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.9) rotateY(20deg);
  /* opacity: 0.5; */
  transition: all 0.5s ease-in-out;
  flex-shrink: 0;
  /* border: 1px solid #e0e0e0; */
}

#client-logo-carousel .logo-card.active {
  transform: scale(1.1) rotateY(0deg);
  opacity: 1;
  z-index: 2;
  /* border-color: #ccc; */
}

#client-logo-carousel .logo-card img {
  max-height: 60px;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(0.2);
}

#scrollToTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: none;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  font-size: 20px;
  font-weight: bold;
  border: 2px solid rgb(255, 255, 255);
  background-color: rgba(51, 49, 49, 0.2);
  color: white;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(97, 97, 97, 0.5);
  transition: background-color 0.3s, color 0.3s, transform 0.2s;
  display: flex;
}

#scrollToTopBtn:hover {
  background-color: rgba(246, 246, 246, 0.2);
  color: rgb(255, 255, 255);
  transform: scale(1.1);
}

#galleryModal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(20, 20, 20, 0.95);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

#galleryModal img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 8px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.7);
  transition: all 0.3s ease-in-out;
  object-fit: contain;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 48px;
  padding: 10px 20px;
  border-radius: 50%;
  cursor: pointer;
  user-select: none;
  z-index: 10000;
  transition: background 0.3s;
}

.gallery-nav.left {
  left: 40px;
}

.gallery-nav.right {
  right: 40px;
}

.close-gallery {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  z-index: 10001;
  border-radius: 50%;
  padding: 10px;
  transition: background 0.3s;
}

@media (max-width: 768px) {
  .gallery-nav {
    font-size: 36px;
    padding: 8px 16px;
  }

  .gallery-nav.left {
    left: 20px;
  }

  .gallery-nav.right {
    right: 20px;
  }
}

@keyframes scrollLeftLogo {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.client-logo-carousel {
  overflow: hidden;
  background: white;
  padding: 60px 0;
  position: relative;
}

.carousel-track-wrapper {
  display: flex;
  width: 200%;
  /* For smooth scrolling with duplicate logos */
  animation: scrollLeftLogo 40s linear infinite;
  will-change: transform;
}

.client-logo-carousel:hover .carousel-track-wrapper {
  animation-play-state: paused;
}

.carousel-track {
  display: flex;
  flex-wrap: nowrap;
}

.logo-card {
  background: #fff;
  padding: 15px 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin: 0 20px;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-card img {
  height: 50px;
  max-width: 120px;
  object-fit: contain;
}

.logo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
#aboutSection .info2 {
  background-color: #f3653e;
}
#aboutSection .info2 p {
  color: #ffffff;
}
#aboutSection .info3 {
  background-color: #62a25d;
}
#aboutSection .info1 {
  background: #fffaf0;
}
.contactFormindex {
  background-color: #fffaf0;
}
.fix-half-width {
  max-width: 660px;
}
.main-navigation a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-family: "poppins" !important;
  font-size: 18px;
}
