 .gallery-section {
      font-family: 'Poppins', sans-serif;
      text-align: center;
      margin: 0;
      padding: 50px 50px;
      min-height: 100vh;
    }
    
  .h1 {
      font-size: 32px;
      font-weight: bold;
      margin-bottom: 5px;
      transition: color 0.3s ease; /* smooth effect */
    }
    
    .gallery-section h2 {
      text-align: center;
      font-size: 18px;
      margin-bottom: 50px;
      color: #333;
    }

    .gallery {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      justify-items: center;
      max-width: 1100px;
      margin: auto;
      padding:50px;
    }

    .gallery-box {
      position: relative;
      width: 250px;
      height: 250px;
      border-radius: 15px;
      overflow: hidden;
      background: #dce6f2;
      box-shadow: 0 5px 15px rgba(0,0,0,0.2);
      opacity: 0;
      transform: translateY(30px);
      animation: fadeInUp 1s forwards;
    }

    .gallery-box:nth-child(1){animation-delay:0.2s;}
    .gallery-box:nth-child(2){animation-delay:0.4s;}
    .gallery-box:nth-child(3){animation-delay:0.6s;}
    .gallery-box:nth-child(4){animation-delay:0.8s;}
    .gallery-box:nth-child(5){animation-delay:1s;}
    .gallery-box:nth-child(6){animation-delay:1.2s;}

    @keyframes fadeInUp {
      to { opacity: 1; transform: translateY(0); }
    }

    .gallery-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: absolute;
      top: 0;
      left: 0;
      opacity: 0;
      transition: opacity 1s ease-in-out;
    }

    .gallery-box img.active {
      opacity: 1;
    }

    /* Overlay */

   .overlay {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(1,1,1,0.07);
      opacity: 0;
      transition: opacity 0.4s ease-in-out;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 15px;
	 }

    .gallery-box:hover .overlay {
      opacity: 1;
	 
    }
	
	 .gallery-box:hover {
	 border:1px solid #2171b5;
	 }
	 

	/* Eye icon at top-right */
	.eye-btn {
	position: fixed;
	top: 32px;
	right: 42px;
	background: none;
	font-size: 22px;
	color: #000;
	cursor: pointer;
	}

.inquiry-btn {
  position: fixed;
  bottom: 30px;
  left: 15%;
  background: #18447e;
  color: #fff;
  font-weight: bold;
  padding: 12px 25px;
  border-radius: 30px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: none; /* no hover/animation movement */
}
    .inquiry-btn:hover {
      transform: scale(1.05);
    }

/* Laptop */
@media (max-width: 1200px) {
  .gallery-box {
    max-width: 260px;
  }
}

/* Tablet */
@media (max-width: 992px) {
  .gallery-box {
    max-width: 220px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 10px;
  }

  .gallery-box {
    width: 100%;
    max-width: 340px; /* bigger in mobile */
    margin: 0 auto;
  }
}