
  /* Styling for the gallery section */
.gallery-section {    
    text-align: center;
    background-color: #f7f7f7;
  }
  
  .section-title {
    font-size: 2rem;
    margin-bottom: 1.5em;
    color: #333;
    font-family: 'Kanit', sans-serif;
  }
  
  /* Gallery grid with uniform aspect ratio */
  .gallery-grid {
    padding-left: 15%;
    padding-right: 15%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background-color: #ddd;
    height: 250px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); 
  }
  
  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    transition: transform 0.4s ease-in-out;
  }
  
  /* Hover effect */
  .gallery-item:hover img {
    transform: scale(1.1);
  }
  
  /* Responsive layout */
  @media (max-width: 768px) {
    .gallery-grid {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  @media (max-width: 480px) {
    .gallery-grid {
      grid-template-columns: 1fr;
    }
  }
  