.section {
    padding: 50px 20px;
    text-align: center;
}

.gallery {
    position: relative;
    z-index: 500;
}

/* Gallery Section */
.gallery-section {
    width: 100%;
    margin: 0 auto;
    padding: 50px 0;
  }

  .owl-carousel2 {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    height:400px;
}

  .owl-carousel2 .item {
    padding: 10px;
    width:100%;
    object-fit: cover;
    object-position: center;
    
  }




  .owl-carousel2 img {
    width: 100%; /* Ensure the image takes the full width of the container */
    max-width:300px;
    height: 300px; /* Set a fixed height for all images */
    object-fit: cover; /* Ensures images cover the space without distorting aspect ratio */
    object-position: center; /* Centers the image within the container */
    transition: transform 0.3s ease; /* Smooth zoom effect */
    border-radius:10px;
  }
  
 