/*
Template Name: Tour Booking
File: Layout CSS
Author: TemplatesOnWeb
Author URI: https://www.templateonweb.com/
Licence: <a href="https://www.templateonweb.com/license">Website Template Licence</a>
*/

/*********************gallery****************/
.center_gal {
background-image: url(../img/3.jpg);
background-position: center center;
background-size: cover;
}
#gallery .modal-dialog {
max-width: 750px;
}
.homei1i2{
padding-top:65%;
display:none;
transition: 0.3s; 
 }
.gallery_1l:hover .homei1i2{
display:block; 
transition: 0.3s;
 }
.homei1i2o{
padding-top:30%; 
 }
.homei1i1 img{
min-height:392px; 
 }
/*********************gallery_end****************/



@media screen and (max-width : 767px){
.homei1i1 img{
min-height:auto; 
 }
.gallery_1l{
margin-top:8px;
margin-bottom:8px; 
 }
 }


@media (min-width:576px) and (max-width:767px) {

 }
 
@media (min-width:768px) and (max-width:991px) {

 }

@media (min-width:992px) and (max-width:1200px) {

 }
@media (min-width:1201px) and (max-width:1320px) {

 }



 .gallery-section {
    padding: 60px 20px;
    background-color: #f8f9fa;
  }
  
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: zoom-in;
  }
  
  .gallery-grid img:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  }
  