.header-section {
  position: relative;
  height: calc(100vh - 70px);
  width: 100vw;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;

}


/* .header-section {
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 90vh;
  margin: 0;
  background-color: #f0f0f0;
} */

.gallery {
  position: relative;
  height:400px;
  width:33vw;        /* Make gallery width 90% of viewport */
  max-width: 800px;   /* Set a maximum width */
  aspect-ratio: 3 / 2; /* Maintain a 3:2 aspect ratio */
  overflow: hidden;
}

.gallery-image {
  position: absolute;
  width:33vw;
  height: 400px;
  margin-right: 50px;
  /* height:100%; */
  opacity: 0;
  transition: opacity 1s ease-in-out;
  object-fit: contain; /* Ensures image covers the container while maintaining aspect ratio */
}

.gallery-image.active {
  opacity: 1;
}

@media (max-width: 750px) {
  .header-section {
    display: flex;
    height: 350px;
    justify-content: center;
  }

  .follow-us {
    margin-top: 20px !important;
  }
  p
  .header-social-media {
    margin-bottom: 15px !important;
  }

  .header-section div {
    margin-top: 0;
  }
  .header-section div img, .gallery {
    display: none;
  }

}