/* Disable global focus outlines (optional - safe for this project) */
:focus {
  outline: none;
}

/* Disable selection only on non-input elements */
body, .swiper-slide, .some-non-editable-class {
  user-select: none;
  caret-color: transparent;
}

/* Allow caret and selection inside inputs & textareas */
input, textarea {
  user-select: text !important;
  caret-color: auto !important;
}


/* Swiper Dots - Bigger & Styled */
.swiper-pagination-bullet {
  caret-color: transparent;
  user-select: none;
}

.swiper-slide {
  width: auto; /* let swiper handle width */
}
@media (min-width: 1024px) {
  .swiper-slide {
    width: 300px; /* optional fixed width for desktop */
  }
}
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
/* pop up */

.box {
  width: 40%;
  margin: 0 auto;
  background: rgba(255,255,255,0.2);
  padding: 35px;
  border: 2px solid #fff;
  border-radius: 20px/50px;
  background-clip: padding-box;
  text-align: center;
}

.button {
  font-size: 1em;
  padding: 10px;
  color: #fff;
  border: 2px solid #06D85F;
  border-radius: 20px/50px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease-out;
}
.button:hover {
  background: #06D85F;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.popup {
  background: white;
  padding: 20px;
  border-radius: 8px;
  width: 90%;
  max-width: 400px;
  position: relative;
}
.popup h2 {
  margin-top: 0;
  color: #333;
  font-family: Tahoma, Arial, sans-serif;
}
.popup .close {
  position: absolute;
  top: 20px;
  right: 30px;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
}
.popup .close:hover {
  color: #06D85F;
}
.popup .content {
  max-height: 30%;
  overflow: auto;
}

@media screen and (max-width: 700px){
  .box{
    width: 70%;
  }
  .popup{
    width: 70%;
  }
}

.cursor-button-pointer{
  cursor: pointer;
}
/* Smooth hover transition */
.group:hover .dropdown-menu {
  display: block;
  transition: opacity 0.2s ease-in-out;
  opacity: 1;
}
.dropdown-menu {
  opacity: 0;
  pointer-events: none;
}
.group:hover .dropdown-menu {
  pointer-events: auto;
}

.navbar {
  padding:0rem;
  margin-bottom:2rem;
}

.dropdown .dropdown-menu {
  border-radius:0;
 }


/* Medium devices (tablets, 768px and up) 
The navbar toggle appears at this breakpoint */
@media (min-width: 768px) {  
.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  border-radius:0;
 }
}