.language-switcher {
  position: fixed;
  top: 30%;
  right: -100px; /* hide it partially */
  z-index: 1000;
  background: rgba(12, 45, 98, 0.5);
  border: 1px solid #ddd;
  border-radius: 5px 0 0 5px;
  padding: 8px 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease, background 0.3s ease;
  cursor: pointer;
}

/* Only 10px is visible when not hovered */
.language-switcher::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -10px;
  width: 10px;
  height: 40px;
  background: #b7db149d;
  border-radius: 20px 0 0 50px;
  transform: translateY(-50%);
}

/* On hover: show fully */
.language-switcher:hover {
  right: 0;
  background: rgba(255, 255, 255, 0.95);
}


.lang-btn {
  background-color: #f0f0f0;
  color: #333;
  border: 2px solid #c9d7e6;
  border-radius: 25px;
  padding: 6px 16px;
  margin-left: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lang-btn:hover {
  background-color: #007bff;
  color: white;
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.2);
  transform: translateY(-2px);
}


.brand-logo {
  height: 24px;
  vertical-align: middle;
  margin-right: 6px;
  border-radius: 5px;
}
.brand-name {
  color: #ff5722;         /* Bright orange */
  font-weight: 700;
  font-style: italic;
  font-size: 1.3em;
  letter-spacing: 1px;
}


.carousel-item button {
    padding: 17px 30px;
    background-color: #fecd1a;
    border: 0px;
    margin-left: -5rem;
    font-weight: 100;
    font-size: 15px;
    position: absolute;
    color: black;
    border-radius: 3px;
    transition: 0.3s;  
}

.carousel-item button:hover {
    background-color: #000000;
    color: rgb(255, 255, 255);
    border-radius: 3px 15px;
    transition: 0.3s;
}

.btn {
    background-color: #fecd1a;
}
.btn:hover {
    background-color: #000000;
    color: rgb(255, 255, 255);
    border-radius: 3px 15px;
    transition: 0.3s;
}

.contact-grid1 {
    text-align: left;
}
footer {
    background-color: #174c97;
    color: white;
}
@media (min-width: 320px) and (max-width: 767px){
    iframe {
    margin-left: 55px;
    margin-top: 55px;
    }
    .contact-grid1 {
        text-align: center;
    }
}

.custom-search-box{
  padding: 5px 5px;
}
.search-row {
    display: flex;
    align-items: center;
    max-width: 450px;
    gap: 8px;
  }

  /* Column 1: Icon */
  .col-icon {
    flex: 0 0 auto;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .col-icon svg {
    width: 24px;
    height: 24px;
    fill: #555;
  }

  /* Column 2: Input */
  .col-input {
    flex: 1 1 auto;
  }

  #locationInput {    
    /*padding-left: 30px;  leave space for icon */
    background: url('https://cdn-icons-png.flaticon.com/512/684/684908.png') no-repeat 0px center;
    background-size: 14px 14px;
    padding: 8px 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-right: 80px;
    color: white;
  }


  #searchbutton {
    padding: 9px 16px;
    font-size: 16px;
    background-color: #35ac55;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    white-space: nowrap;
  }

  #searchbutton:hover {
    background-color: #0056b3;
  }

