*{
    font-family: 'Montserrat', sans-serif;
    padding: 0;
    margin: 0;
    outline: none;

}

.c-item {
    height: 400px;
}

.c-img {
    
    height: auto;
    object-fit: cover;
}

.nav-link {
  position: relative;

}

.nav-link::after {

  content: '';
  opacity: 0;
  transition: all 0.3s ease;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: rgb(28, 207, 12);
  bottom: 5px;
  left: 0;
}

.nav-link:hover::after {
 opacity: 1;

}

.nav-link.active::after {
  opacity: 1;
  width: 100%;
  height: 2px;
  background-color: rgb(28, 207, 12);
  bottom: 5px;
  left: 0;
}

/*** main page items **/
.main-wrapper {
  /***background: linear-gradient(180deg, rgb(218, 223, 220) 0%, rgb(160, 190, 178) 50%, rgb(113, 141, 129) 100%);**/
 background: linear-gradient(90deg, rgb(79, 173, 126) 0%, rgb(115, 211, 162) 50%, rgb(98, 170, 139) 100%);
  overflow: hidden;
  box-shadow: 0 5px 30px rgba(59, 61, 59, 0.1);
}


.img-shadow {
  overflow: hidden;
  -webkit-box-shadow: 5px 5px 9px 0px rgba(35, 43, 35, 0.45); 
  box-shadow: 5px 5px 9px 0px rgba(35, 43, 35, 0.45);
}

.bg-footer {
  background: rgb(111, 136, 124);
  background: linear-gradient(90deg, rgb(111, 136, 124) 0%, rgb(72, 180, 124) 50%, rgb(22, 99, 65) 100%);
  color: rgb(134, 150, 142);
  text-align: center;
  box-shadow: 0px -5px 30px rgba(108, 117, 111, 0.1);
}

.iconcolor {
  color: rgba(65, 90, 78, 0.404);
}

/*** contact page items **/
.contact-wrapper {
    background: rgb(104, 160, 133);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(108, 117, 111, 0.1);
  }

  .contact-info {
    background: linear-gradient(90deg, rgb(104, 160, 133), #a5b8ab);
    padding: 40px;
    color: rgb(255, 255, 255);
  }

  .map-info {
    background: linear-gradient(90deg, rgb(104, 160, 133), #a5b8ab);
    border-radius: 10px;
    padding: 10px;
    color: rgb(255, 255, 255);
  }

  .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
  }

  .contact-item:hover {
    transform: translateX(10px);
  }

  .contact-icon {
    width: 40px;
    height: 40px;
   /** background: rgba(255,255,255,0.2); **/
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
  }

  /** Galery page items **/
  .gallery-wrapper {
    background: rgb(78, 71, 3);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(108, 117, 111, 0.1);
    padding: 20px;
  }

  .gallery-bg {
    background: rgba(64, 82, 58, 0.459);
  }

  .gallery-popup-bg {
    background: rgba(22, 36, 18, 0.459);
  }

  .img-thumbnail {
    padding: .1rem;
    background-color: #cfd8d1;
    border: 1px solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    cursor: pointer;
}

.img-thumbnail:hover {
    transform: scale(1.05);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important; /* Ensure hover shadow is prominent */
}

/* Ensure Bootstrap's shadow class works well with hover */
.shadow {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.modal-body img {
    max-height: 80vh; /* Limit image height in modal to prevent excessive scrolling */
    object-fit: contain;
}

/* Optional: Style for next/prev buttons */
.modal-footer {
    justify-content: space-between;
}

  