body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
  }
  .bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 20, 66, 0.7), rgba(0, 20, 66, 0.7)), url(../IMAGE/back-1.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 120px 0 60px 0;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
    background: transparent !important;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}

@media (max-width: 992px) {
    .bg-breadcrumb {
        padding: 60px 0 60px 0;
    }
}
  
  .gallery {
    /* padding: 20px; */
    /* text-align: center; */
  }
  
  h1 {
    font-size: 32px;
    color: #333;
    margin-bottom: 20px;
  }
  
  .image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
    padding: 10px;
  }
  
  .image-item {
    position: relative;
    width: 400px !important;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
  }
  
  .image-item img {
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    height: 100%;
    /* background-color: hsl(0, 0%, 100%); */
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
  }

  .image-grid h3 {
    padding: 10px;
    color: white;
    border-radius: 0px 10px;
    width: 400px;
    background-color: rgb(60, 60, 107);
  }
  
  
  .image-item:hover {
  }
  
  .image-item:hover img {
    transform: scale(1.1);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);

  }
  
  /* Lightbox Styles */
  .lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    text-align: center;
  }
  
  .lightbox-content {
    max-width: 90%;
    max-height: 90%;
    margin-top: 3%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  .close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
  }
  
  .close:hover {
    color: #ccc;
  }




  .slider-container {
    width: 300px; 
    overflow: hidden;
    position: relative;
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slider img {
    width: 300px;
    height: 200px;
    object-fit: cover;
}

.slider-buttons {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.slider-buttons button {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 18px;
}

.slider-buttons button:hover {
    background: rgba(0, 0, 0, 0.8);
}


/*** Footer Start ***/
.footer {
  
  background-color: rgba(101, 88, 88, 0.199);    /* background-color: rgba(5, 25, 69, 0.784); */
  }
  .footer-item img{
      height: 65px;
      width: 200px;
      
  }
  .qr img{
      height: 100px;
      width: 100px;
  }
  .footer-item a{
    text-decoration: none !important;
  }
  
  .footer-item img {
      /* filter: invert(1); */
  }
  
  .footer .footer-item a {
      line-height: 35px;
      /* color: var(--bs-body); */
      color: rgb(49, 44, 98);
      transition: 0.5s;
  }
  
  .footer .footer-item p {
      /* line-height: 35px; */
      
  }
  
  .footer .footer-item a:hover {
      letter-spacing: 1px;
      color: var(--bs-primary);
  }
  
  .footer .footer-item .footer-btn a,
  .footer .footer-item .footer-btn a i {
      transition: 0.5s;
  }
  
  .footer .footer-item .footer-btn a:hover {
      background: var(--bs-dark);
  }
  
  .footer .footer-item .footer-btn a:hover i {
      color: var(--bs-primary) !important;
  }
  
  /* .social {
     
      height: 20px !important;
      width: 50px !important;
      border-radius: 50% !important;
  } */

  .btn-circle {
    width: 45px !important; 
    height: 45px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 18px !important; 
    background-color: rgb(48, 78, 134) !important;
}
  
  /*** Footer End ***/
  
  /*** copyright Start ***/
  .copyright {
      border-top: 1px solid rgba(56, 41, 169, 0.08);
      /* background: var(--bs-dark); */
  }
  /*** copyright end ***/
  