/* Top Bar Styling */
.top-bar {
  background-color: #ff6600;
  font-size: 14px;
  color: white;
    padding: 5px 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    position: fixed;
    z-index: 1050;
}

/* 🌐 Google Translate style fixes */
.goog-te-banner-frame.skiptranslate {
  display: none !important;
}

body {
  top: 0px !important;
}

.goog-te-gadget {
  font-family: inherit !important;
  font-size: 0.9rem !important;
}

.top-bar .social-icons a {
  color: white;
  margin-left: 12px;
  font-size: 16px;
  transition: color 0.3s ease;
}

.top-bar .social-icons a:hover {
  color: #222; /* Hover effect */
}


/* Navbar Styling */
.navbar {
  position: fixed;
  top: 40px; /* adjust if needed */
  left: 0;
  width: 100%;
  z-index: 1040;
  background-color: white;
  transition: background-color 0.3s;
}

/* Orange Text */
.text-orange {
  color: #ff6600 !important;
}

/* Nav Links */
.navbar-nav .nav-link {
  font-weight: 500;
  margin: 0 10px;
  position: relative;
}

.navbar-nav .nav-link::after {
  content: '';
  display: block;
  height: 2px;
  background: #ff6600;
  width: 0;
  transition: width 0.3s;
  margin-top: 2px;
}

/* Hover aur active underline */
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
}

/* Active link color */
.navbar-nav .nav-link.active {
  color: orange;
  font-weight: bold;
}



/* Donate Button */
.btn-donate {
  background-color: #ff6600;
  color: white;
  padding: 8px 20px;
  font-weight: bold;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-donate:hover {
  background-color: #e65c00;
  box-shadow: 0px 4px 8px rgba(255, 102, 0, 0.3);
}

/* Outline Button */
.btn-outline-orange {
  border: 2px solid #ff6600;
  color: #ff6600;
  padding: 6px 15px;
  font-weight: 500;
  border-radius: 4px;
  transition: all 0.3s ease;
  background-color: white;
}

.btn-outline-orange:hover {
  background-color: #ff6600;
  color: white;
}
.language-switcher select {
  background-color: white;
  border-radius: 5px;
  border: none;
  font-size: 0.85rem;
  padding: 2px 8px;
  color: #333;
}

.language-switcher select:focus {
  outline: none;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
}
.language-dropdown {
  background: transparent;
  border: 1px solid white;
  border-radius: 4px;
  color: white;
  font-size: 0.85rem;
  padding: 2px 6px;
  cursor: pointer;
}

.language-dropdown option {
  color: #333; /* dropdown list text black */
}

.language-dropdown:focus {
  outline: none;
  border-color: #ffd700; /* golden focus effect */
}

