/* navbar.css */


.navbar {
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: linear-gradient(to right, #d36b6b, #e50809);
}

.navbar.scrolled .nav-link {
  color: white !important;
}

.dropdown-menu {
  background-color: white;
  border: none;
  /* box-shadow: 0 5px 15px rgba(0,0,0,0.1); */
}

.dropdown-item {
  padding: 0.5rem 1.5rem;
  display: flex;
  align-items: center;
  transition: all 0.2s;
}

.dropdown-item:hover {
  background-color: #f8f9fa;
}

.dropdown-item a {
  color: #333;
  text-decoration: none;
  width: 100%;
}

.dropdown-item:hover a {
  color: #e50809;
}

.tab-icon {
  margin-right: 10px;
  color: #e50809;
  width: 20px;
  text-align: center;
}

.font_size {
  font-size: 0.9rem;
}

/* Call button styles */
.custom-call-btn {
  visibility: hidden !important;
  position: relative;
 
  left: 70px;
  color: #fff !important;
  background-color: #e50809;
  animation: pulse 1.5s infinite;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 6px;
  box-shadow: 0 0 10px rgb(255 255 255) !important;
  transition: all 0.3s ease-in-out;
  min-width: 120px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-shadow: none !important;
  border: 1px solid #FFF !important;

}


.navbar.scrolled .custom-call-btn,
.custom-call-btn.visible {
  visibility: visible !important;
}
.navbar-toggler{
  color:black !important;
}

@media (max-width: 768px) {
  .custom-call-btn {
    margin-left: -140px;
    min-width: 0px;
    max-width: 40px;
  }
  .call-text {
    display: none;
  }
}
.inner-call-btn {
  background-color: white;
  color: #e50809;
  padding: 2px 8px;
  margin-left: 10px;
  border-radius: 4px;
  font-weight: bold;
  font-size: 12px;
}
.custom-call-btn svg {
  margin-right: 2px; /* Adjust the spacing as needed */
  vertical-align: middle; /* Aligns icon with text baseline */
  color:white !important;
 
  width: 16px !important;
  height: 16px !important;
}

.call-text {
  line-height: 2; /* Ensures text aligns properly with icon */
  display: inline-block; /* Helps with vertical alignment */
  vertical-align: middle; /* Additional alignment */
}

@media (max-width: 576px) {
  .footer-brand-link {
    display: block;   /* forces onto new line */
    margin-top: 4px;  /* small spacing */
  }
}
