#header .head #logo-wrapper #logo {
  display: block;
  float: left;
  height: 180px; /* Increased from 140px */
  width: 260px !important; /* Increased from 200px */
  text-indent: -9999px;
  transition: all 50ms ease-in;
}

.whatsapp-floating {
  position: fixed;
  bottom: 100px; /* Adjust this to sit above "Get in touch" */
  right: 20px;
  z-index: 1005;
  border-radius: 50%;

  transition: transform 0.4s ease;
}

.whatsapp-floating:hover {
  transform: scale(1.2);
}

.whatsapp-floating img {
  display: block;
  width: 60px;
  height: 60px;
}

.brochure-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 20px;
  margin-bottom: 20px;
}

.brochure-gallery img {
  max-width: 100%;
  height: 100%;
  width: 200px;
  transition: transform 0.3s ease;
  object-fit: cover;
  margin: 5px;
  padding: 5px;
}

/* Common styles */
.brochure-gallery {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* For Firefox */
}

.brochure-gallery::-webkit-scrollbar {
  display: none; /* For WebKit browsers */
}

.brchure-imgs {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 10px;
}

.brchure-imgs img {
  flex-shrink: 0;
  object-fit: contain;
  height: auto;
  width: 90vw;
}

@media (max-width: 600px) {
  .brchure-imgs img {
    height: 60vh;
    object-fit: contain;
  }
}
