.language-dropdown {
  position: relative;
  display: inline-block;
  margin-left: 20px;
}

.language-dropdown .lang-btn {
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
}

.language-dropdown .lang-btn i {
  font-size: 14px;
}

.language-dropdown .lang-menu {
  position: absolute;
  right: 0;
  top: 12px;
  background: #ffffff;
  border-radius: 6px;
  min-width: 64px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.15);
  padding: 6px 0;
  list-style: none;
  display: none;
  z-index: 1000;
}

.language-dropdown .lang-menu li a {
  display: block;
  padding: 8px 14px;
  color: #222;
  font-size: 14px;
  text-decoration: none;
}

.language-dropdown .lang-menu li a:hover {
  background: #f3f3f3;
}

.language-dropdown.open .lang-menu {
  display: block;
}

.page-head__subtitle {
  margin: 45px 0 35px;
  color: #ffffff;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.09;
  text-align: center;
  text-align: center;
}

.page-head__description {
  margin: 20px 0 10px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  text-align: center;
}

.mt-0 {
  margin-top: 0px;
}

.mt-1 {
  margin-top: 4x;
}

.mt-10 {
  margin-top: 40px;
}

.mb-10 {
  margin-bottom: 40px;
}

.mb-20 {
  margin-bottom: 80px;
}

.ml-0 {
  margin-left: 0 !important;
}

.ml-5 {
  margin-left: 20px;
}

.gap-1 {
  gap: 4px;
}

.mt-20 {
  margin-top: 80px;
}

.mb-7 {
  margin-bottom: 28px;
}

.p-7 {
  padding: 28px;
}

.pb-7 {
  padding-bottom: 28px;
}

.icon-5 {
  width: 20px;
  height: 20x;
  font-size: 20px;
}

.z-10 {
  z-index: 10;
}

.max-w-full {
  max-width: 100%;
}
.w-full {
  width: 100%;
}

.custom-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #eeb50b;
  color: white;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-close:hover {
  color: white;
}

.project-tag {
  background-color: #eeb50b;
  color: white;
  padding: 2px 4px;
  border-radius: 2px;
}

.py-5 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.m-0 {
  margin: 0;
}

.max-w-40 {
  max-width: 160px;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-1 {
  display: flex;
  flex: 1 1 auto;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.h-full {
  height: 100%;
}

.gallery-item {
  position: relative;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  color: #fff;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* Text styles */
.gallery-cat {
  font-size: 12px;
  text-transform: uppercase;
  opacity: 0.85;
  letter-spacing: 0.5px;
}

.gallery-title {
  margin: 8px 0 4px;
  font-size: 18px;
  font-weight: 600;
  color: white;
}

.gallery-desc {
  font-size: 13px;
  opacity: 0.9;
  margin: 0;
}

.video-item {
  position: relative;
  display: block;
  overflow: hidden;
}

.video-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.35s ease;
}

.video-item:hover .video-overlay {
  opacity: 1;
}

.video-play-icon {
  color: #fff;
}

.video-title {
  margin-top: 10px;
  font-size: 20px;
  font-weight: 700;
}

.border-l {
  border-left: 1px solid #dddddd;
}

.border-r {
  border-right: 1px solid #dddddd;
}

.max-w-fit {
  max-width: fit-content;
}

.text-center {
  text-align: center;
}
