.imageGallery {
    display: flex;
    gap: 20px;                     /* space between cards */
    overflow-x: auto;
    overflow-y: hidden;
    padding: 20px;
    background: linear-gradient(135deg, #92eb78, #eefa7f, #92eb78);
    scroll-snap-type: x mandatory;
}

/* hide ugly scrollbar (optional) */
.imageGallery::-webkit-scrollbar {
    height: 8px;
}
.imageGallery::-webkit-scrollbar-thumb {
    background: #c9b14a;
    border-radius: 10px;
}

/* each image card */
.gallery-card {
    flex: 0 0 300px;               /* FIXED WIDTH → enables horizontal scroll */
    border: 4px double #a38d34;
    padding: 6px;
    background: #fff;
    scroll-snap-align: start;
    transition: transform 0.3s ease;
}

/* hover effect */
.gallery-card:hover {
    transform: scale(1.05);
}

.gallery-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .gallery-card {
        flex: 0 0 240px;
    }
}

@media (max-width: 480px) {
    .gallery-card {
        flex: 0 0 200px;
    }
}
/******  NAV in mobile mode  ******/
@media (max-width: 991.98px) {

  /* Make nav links horizontal instead of vertical */
  .menu-main-link {
    flex-direction: row !important;
    align-items: center !important;
    padding: 10px 12px !important;
  }

  /* Shrink icon */
  .menu-main-link .icon-circle {
    width: 34px;
    height: 34px;
    font-size: 14px;
    margin-right: 10px;
    margin-bottom: 0 !important;
  }

  /* Text styling */
  .menu-main-link span {
    font-size: 0.95rem;
    text-transform: none;
    letter-spacing: normal;
  }
}


/************ lang select ***********/
/* Wrapper */
.language-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}


/* Select styling */
.lang-select {
    border: none;
    background: transparent;
    font-weight: 600;
    font-size: 0.75rem;
    text-align: center;
    cursor: pointer;
    color: #000;   
    outline: none;
}

/* Remove default arrow (modern browsers) */
.lang-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}


/************ lang select ***********/