/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
  }
  
  
  
  /* Hero Section */
  .hero-section {
    background-color: f4f6ff;
    mix-blend-mode: multiply;
    background-image: url("banner.jpg");
    padding: 30px 0;
    text-align: center;
    height:auto;
  }
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  .container h{
    color: palevioletred;
    font-size: 50px;
    font:500;
    padding: 10px;
  }
  .container p{
    color: #4CAF50;
    padding: 10px;
  }
  
  .breadcrumb {
    display: flex;
    justify-content: center;
    list-style: none;
    
    padding: 10px;
    
  }
  .breadcrumb li a {
    font-size: 20px;
    color: grey;
    font-weight: bold;
  }
  
  
  .breadcrumb li {
    margin-right: 10px;
  }
  
  .breadcrumb-item.active {
    color: #ddd;
    font-size: 1rem;
  }
  
  /* Gallery Section */
  .gap {
    padding: 50px 0;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
  }
  
  .gallery-wrapper {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  /* Columns */
  .gallery-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .first-column,
  .end-column {
    flex: 1;
  }
  
  .center-column {
    flex: 1;
    justify-content: center;
  }
  
  /* Alignments */
  .center-column .featured-imagebox {
    align-self: center;
  }
  
  .end-column {
    
    justify-content: flex-end;
  }
  
  /* Image Boxes */
  .featured-imagebox {
    position: relative;
    border-radius: 18px;
  }
  
  .gallery-img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .gallery-img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  }
  
  /* Footer */
  footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
  }
  
  /* Responsive Styles */
  @media (max-width: 992px) {
    .gallery-wrapper {
      flex-direction: column;
      align-items: center;
    }
  
    .gallery-column {
      width: 100%;
      max-width: 600px;
    }
  
    .center-column .featured-imagebox,
    .end-column .featured-imagebox {
      align-self: center;
    }
  }
  
  @media (max-width: 600px) {
    .nav-list {
      flex-direction: column;
    }
  
    .nav-list li {
      margin: 10px 0;
    }
  }
  