.elementor-125 .elementor-element.elementor-element-9bc4cbc{--display:flex;--margin-top:0px;--margin-bottom:-200px;--margin-left:0px;--margin-right:0px;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-4ad23f9 *//* Container styling */
.floating-header {
  position: relative;
  width: 100%;
  max-width: 1200px; /* Adjust based on your site width */
  margin: 20px auto;
  padding: 0 20px;
  z-index: 999;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  border-radius: 50px; /* Gives the pill shape */
  padding: 10px 20px 10px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Logo */
.header-logo img {
  max-height: 40px; /* Adjust based on your logo size */
  width: auto;
  display: block;
}

/* Navigation Links */
.header-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 25px;
}

.header-nav a {
  text-decoration: none;
  color: #666666; /* Grey text */
  font-weight: 500;
  font-family: sans-serif; /* Change to your Elementor global font */
  font-size: 15px;
  transition: color 0.3s ease;
  position: relative;
}

.header-nav a:hover {
  color: #21a248;
}

/* Active Menu Item (Green underline effect) */
.header-nav .active a {
  color: #21a248;
}
.header-nav .active a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #21a248;
  border-radius: 2px;
}

/* Button */
.btn-contact {
  background-color: #21a248; /* Saudi Sensors Green */
  color: #ffffff;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-family: sans-serif;
  font-size: 15px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  display: inline-block;
}

.btn-contact:hover {
  background-color: #1a8239; /* Darker green on hover */
  color: #ffffff;
  transform: translateY(-2px);
}

/* Mobile Toggle Hidden on Desktop */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

/* Responsive Tablet & Mobile */
@media (max-width: 992px) {
  .header-nav {
    display: none; /* Hides desktop menu */
  }
  .mobile-toggle {
    display: block;
  }
  .header-cta {
    display: none; /* Optional: hide button on mobile to save space */
  }
  .header-inner {
    padding: 15px 20px;
  }
}/* End custom CSS */