.elementor-4707 .elementor-element.elementor-element-def88f3{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--background-transition:0.3s;--padding-top:10px;--padding-bottom:0px;--padding-left:20px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-5cfe893 *//* Navbar container */
.navbar {
  display: flex;
  justify-content: space-between; /* Ensures space between logo, nav, and 'Call Now' */
  align-items: center;
  padding: 0 20px;
  position: relative;
}

/* Logo - positioned at the leftmost */
.navbar .logo img {
  max-height: 60px; /* Adjust logo size */
}

/* Navbar links container - centered */
.navbar .nav-links {
  display: flex;
  gap: 20px;
  flex-grow: 1; /* Allows links to take up available space */
  justify-content: center; /* Centers the navigation links */
}

/* Navbar links */
.navbar .nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

/* Call to Action Button (Call Now) - positioned at the rightmost */
.navbar .cta-btn {
  padding: 10px 20px;
  background-color: #ff9900;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  white-space: nowrap; /* Prevents button text from wrapping */
  position: absolute;
  right: 20px; /* Positions the button at the far right */
}

/* Mobile view */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    text-align: center;
  }

  .navbar .nav-links {
    flex-direction: column;
    gap: 10px;
  }

  .navbar .cta-btn {
    margin-top: 10px;
  }
}/* End custom CSS */