#topbar {
  background: #243e6b;
  height: 40px;
  font-size: 14px;
  color: #fff;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1001;
  display: flex;
  align-items: center;
}

#topbar .contact-info {
  margin-left: 15px;
  display: flex;
  align-items: center;
}

#topbar .contact-info i {
  font-style: normal;
  color: #fff;
}

#topbar .contact-info i a,
#topbar .contact-info i span {
  padding-left: 5px;
  color: #fff;
  text-decoration: none;
}

#topbar .contact-info i a:hover {
  color: #cccccc;
}

#topbar .social-links {
  display: flex;
  align-items: center;
}

#topbar .social-links a {
  color: #fff;
  padding: 4px 6px;
  margin-right: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: 0.3s;
  text-decoration: none;
}

#topbar .social-links a:hover {
  color: #a3a3a5;
}

.header {
  margin-top: 40px !important;
}

/* Language Selector Styles */
.language-selector {
  position: relative;
  display: inline-block;
  margin-left: 20px;
}

.language-trigger {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.language-options {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  width: 120px;
  height: 60px;
  z-index: 1002;
  background: transparent;
  padding-top: 5px;
}

.language-option {
  position: absolute;
  background: #ffffff;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
  transform: scale(0);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.language-option img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.language-selector.active .language-options {
  display: block;
}

.language-selector.active .language-option {
  opacity: 1;
  transform: scale(1);
}

/* Triangle pattern positioning */
.language-selector.active .language-option:nth-child(1) {
  /* TR */
  left: 0;
  top: 0;
}

.language-selector.active .language-option:nth-child(2) {
  /* EN */
  left: 50%;
  transform: translateX(-50%) scale(1);
  top: 25px;
}

.language-selector.active .language-option:nth-child(3) {
  /* RO */
  right: 0;
  top: 0;
}

.language-option:hover {
  transform: scale(1.2) !important;
  z-index: 1000;
}

.language-selector.active .language-trigger {
  transform: rotate(180deg);
}
