.modal-overlay {
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  color: var(--bs-modal-color);
  pointer-events: auto;
  background-color: var(--bs-modal-bg);
  background-clip: padding-box;
  border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
  border-radius: var(--bs-modal-border-radius);
  outline: 0px;
  max-width: 700px;
  background: rgb(255, 255, 255);
  padding: 30px;
  border-radius: 8px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 10px 30px;
  z-index: 10000;
}

/* navbar-styles.css */
/* Add these styles to your layout.css file */

/* Navbar default state - always white background */
#navbar {
  transition: all 0.4s ease-in-out;
  background-color: #ffffff;
}

/* Navbar scrolled state - white background */
#navbar.navbar-scrolled {
  background-color: #ffffff;
}

/* Navbar shadow when scrolled */
#navbar.navbar-shadow {
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

/* Navigation text colors - always dark since background is white */
#navbar .navbar-nav .nav-link {
  color: #333; /* Dark text for white navbar background */
  transition: color 0.3s ease-in-out;
}

#navbar.navbar-scrolled .navbar-nav .nav-link {
  color: #333; /* Dark text when navbar has white background */
}

/* Optional: Adjust logo/brand visibility */
#navbar .navbar-brand {
  transition: all 0.3s ease-in-out;
}

/* Optional: Style for the default-btn in navbar when scrolled */
#navbar.navbar-scrolled .default-btn {
  background-color: #007bff; /* Change to match your site's primary color */
  color: white;
}

#navbar.navbar-transparent {
  background-color: transparent;
  box-shadow: none;
}

/* Specific styling for h3 elements in tab inner content */
.tab-inner-content h3 {
  margin-bottom: 29px !important;
  display: inline !important;
}

/* Hover effects */
.tabs li:hover span {
  color: #04cfc4; /* Primary color - adjust to match your brand */
}

.tabs li:hover span i {
  transform: translateY(-3px);
  color: #04cfc4; /* Primary color - adjust to match your brand */
}

/* Animation keyframes */
@keyframes slideIn {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}

.sidebar-modal {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: #ffffff;
  box-shadow: -4px 0 15px rgba(0, 0, 0, 0.1);
  z-index: 1050;
  overflow-y: auto;
  transition: right 0.3s ease;
  padding: 30px 20px;
}

.sidebar-modal.active {
  right: 0;
}

.sidebar-modal-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.sidebar-contact-feed h2 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #04cfc4;
  border-bottom: 2px solid #eee;
  padding-bottom: 5px;
}

.sidebar-nav {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
}

.sidebar-nav li {
  margin-bottom: 12px;
}

.sidebar-nav a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.sidebar-nav a:hover {
  color: #04cfc4;
}

.sidebar-search-form {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.sidebar-search-form input {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.sidebar-search-form .search-button {
  background-color: #04cfc4;
  border: none;
  padding: 0 14px;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
}

.sidebar-search-form .search-button i {
  font-size: 16px;
}

.language-toggle {
  display: flex;
  gap: 10px;
  margin: 10px 0 30px;
}

.lang-btn {
  flex: 1;
  padding: 8px 10px;
  background: transparent;
  border: 1px solid #04cfc4;
  color: #04cfc4;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
}

.lang-btn:hover,
.lang-btn.active {
  background-color: #04cfc4;
  color: white;
}

.close-btn.sidebar-modal-close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 22px;
  color: #999;
  cursor: pointer;
  transition: color 0.2s;
}

.close-btn.sidebar-modal-close-btn:hover {
  color: #04cfc4;
}

@media (max-width: 400px) {
  .sidebar-modal {
    width: 100%;
  }
}

.others-options {
  display: none;
}

@media (min-width: 762px) {
  .others-options {
    display: block;
  }
}
