*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.banner-section img{
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100vh;
  position: absolute;
}
.banner-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 200px; 
  width: 100%;
  text-align: center;
}

.banner-btn button {
  width: 100%; 
  padding: 10px; 
  font-size: 16px; 
  max-width: 200px; 
}
.banner-btn button:hover{
    border: 1px solid white;
}

/* galary */
.col-lg-4 {
    position: relative;
    overflow: hidden;
}

.col-lg-4 img {
    transition: transform 0.3s ease;
    width: 100%;
    display: block;
}

/* Image hover effect */
.col-lg-4 img:hover {
    transform: scale(1.05); 
    border-radius: 10px;
}

.icon-arrow {
    width: 20px; 
    height: 15px; 
}

/* vedio */
.col-lg-4 img, .col-lg-4 video {
    transition: transform 0.3s ease;
}

.col-lg-4 img:hover, .col-lg-4 video:hover {
    transform: scale(1.1); 
}

/* Optional: style the video */
video {
    border-radius: 10px;
    object-fit: cover;
    width: 100%;
}

.video-scroll-container {
    overflow-x: scroll; 
    overflow-y: hidden; 
    white-space: nowrap; 
    padding: 10px 0;
  }
  
  .video-scroll-container::-webkit-scrollbar {
    display: none;
  }
  
  .video-scroll-container {
    -ms-overflow-style: none;
    scrollbar-width: none; 
  }
  
  .video-wrapper {
    display: flex;
  }
  
  .video-item {
    flex: 0 0 auto;
    margin-right: 10px; 
    border-radius: 2px;
  }
  
  .video-class {
    border-radius: 2px;
  }
 
  .img-fluid{
    transform: scale(1);
    transition: all 0.3s ease-in-out;
    &:hover {
        transform: scale(1.05);
      }
  }
  @media (max-width: 768px) {
    h4 {
      font-size: 1rem; 
    }

    img {
      height: auto; 
    }

    .col-sm-6 {
      flex: 0 0 100%;
      max-width: 100%; 
    }
  }

  .grab-img{
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    max-width: 100%;
  }

  .insta-img{
    max-width: 100%;
  }
  /* General Styles */
.footer-links ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
  
  .footer-links li {
    margin-bottom: 10px;
  }
  
  .email {
    width: 100%;
    max-width: 400px;
  }
  
  /* Media Queries */
  @media (max-width: 992px) {
    .footer-links ul {
      flex-direction: column;
      gap: 15px;
    }
  
    .email {
      width: 80%;
    }
  }
  
  @media (max-width: 768px) {
    .footer-links ul {
      flex-direction: column;
      gap: 10px;
    }
  
    .email {
      width: 70%;
    }
  
    .footer-bottom {
      flex-direction: column;
      text-align: center;
    }
  
    .footer-bottom img {
      margin-top: 10px;
    }
  }
  
  @media (max-width: 576px) {
    .email {
      width: 90%;
    }
  
    .footer-links ul {
      gap: 5px;
    }
  }
  

  
