/* ----- NAVBAR BASE STYLE ----- */

.navbar {
  background: rgb(225, 218, 218) !important;
  border-bottom: 1px solid #ddd;
  height: 100px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1050;
  display: flex;
}
.navbar > .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.navbar-nav {

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

.navbar-nav .nav-link {
  color: #333;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease;
}


/* This rule applies the same styles to BOTH the hover state AND the active link */
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #640b27 !important;
  transform: scale(1.1);
}

nav.navbar .navbar-nav .nav-link {
  font-size: 15px;
}

/* This rule applies ONLY to the active link */
.navbar-nav .nav-link.active {
  font-weight: bold;
}
/* ----- LOGO STYLE ----- */
.navbar .navbar-brand {
  flex-shrink: 0;
  padding-top: 0;
  padding-bottom: 0;
}
@media (min-width: 992px) {
    .navbar-brand.desktop-left-logo img,
    .navbar-brand.desktop-right-logo img {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: auto;
        height: auto;
        z-index: 1051;
    }
}
.navbar-brand + .navbar-brand {
  margin-left: 15px;
}

/* ----- RESPONSIVE ----- */
@media (max-width: 991.98px) {
    .navbar .navbar-brand img {
    height: 70px !important; /* Added !important as a final check */
  }

  .navbar-collapse {
    background-color: rgb(132, 127, 127);
    padding: 1rem;
    margin-top: 1rem;
    border-radius: .375rem;
    width: 100%;
    text-align: center;
  }

  .navbar-collapse .nav-link {
    color: white !important;
    display: inline-block;
    padding: 10px 0;
    font-size: 15px;
  }

  .navbar-collapse .nav-link:hover,
  .navbar-collapse .nav-link.active {
    color: #ccc !important;
    transform: none;
  }
}

/* ----- DESKTOP NAVBAR CONTAINER SPACING ----- */
@media (min-width: 992px) {
  /* Keep this rule for overall container spacing if you like */


  /* --- NEW RULES FOR INDIVIDUAL LOGOS --- */

  /* Move the left logo TO THE RIGHT */
  .navbar-brand.desktop-left-logo {
    margin-left: 8rem; /* Adjust this value as needed */
  }

  /* Move the right logo TO THE LEFT */
  .navbar-brand.desktop-right-logo {
    margin-right: 7rem; /* Adjust this value as needed */
  }
}




/* 
.goog-te-banner-frame,
body > .skiptranslate {
  display: none !important;
}

body {
  top: 0 !important;
} */



/* Language Switcher Dropdown - Simple & Clean */
.mybiz-lang-dropdown {
  position: relative;
  display: inline-block;
}

.lang-dropdown-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #2a2a3e;
  border: 1px solid #4a4a6a;
  border-radius: 30px;
  padding: 8px 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lang-dropdown-btn:hover {
  background: #3a3a52;
  border-color: #6a6a8a;
}

.dropdown-arrow {
  transition: transform 0.2s ease;
  font-size: 10px;
  margin-left: 4px;
}

.lang-dropdown-btn.open .dropdown-arrow {
  transform: rotate(180deg);
}

.lang-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #2a2a3e;
  border-radius: 16px;
  padding: 8px;
  min-width: 140px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #4a4a6a;
  z-index: 1000;
  color:#ccc
}

.lang-dropdown-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 14px;
  background: transparent;
  border: none;
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #e0e0e0;
  cursor: pointer;
  transition: all 0.15s ease;
  text-align: left;
}

.lang-option:hover {
  background: #4a4a6a;
  color: #ffffff;
}

.lang-option.active {
  background: #ae0930;
  color: #ffffff;
}

.lang-flag {
  font-size: 18px;
}

.lang-name {
  font-size: 13px;
}

/* Mobile responsive */
@media (max-width: 991px) {
  .mybiz-lang-dropdown {
    margin-top: 12px;
    width: 100%;
  }
  
  .lang-dropdown-btn {
    justify-content: center;
    width: 100%;
  }
  
  .lang-dropdown-menu {
    position: static;
    margin-top: 8px;
    opacity: 0;
    visibility: hidden;
    display: none;
    width: 100%;
  }
  
  .lang-dropdown-menu.open {
    display: block;
    opacity: 1;
    visibility: visible;
  }
}