.elementor-645 .elementor-element.elementor-element-5a498c9{--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;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}@media(max-width:767px){.elementor-645 .elementor-element.elementor-element-5a498c9{--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}}/* Start custom CSS for html, class: .elementor-element-c5965ab *//* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* Navbar Container */
.navbar {
  width: 70%;
  margin: 20px auto;
  background: #fff;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  padding: 5px 35px 5px 21px;
  position: fixed;           /* ✅ Makes it floating */
  top: 50px;                 /* Distance from top */
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;             /* Keeps it above everything */
  transition: background 0.3s, box-shadow 0.3s;
}

/* Optional: Add slight effect on scroll */
body {
  padding-top: 100px; /* Prevent content from hiding behind header */
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 55px;
}

/* Nav Links */
.nav-links {
  display: flex;
  gap: 55px;
}

.nav-links a {
  color: #013220;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #00704A;
}

/* Toggle Icon (Hidden by default) */
.menu-icon {
  display: none;
  flex-direction: column;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 25px;
}

.menu-icon span {
  background-color: #013220;
  height: 3px;
  width: 25px;
  margin: 3px 0;
  border-radius: 10px;
  transition: all 0.3s ease;
}

/* Hide Checkbox */
.menu-toggle {
  display: none;
}

/* Responsive Design */
@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transition: 0.4s ease;
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
    z-index: 999;
  }

  .menu-icon {
    display: flex;
    z-index: 1001;
  }

  .menu-toggle:checked ~ .nav-links {
    right: 0;
  }

  .menu-toggle:checked ~ .menu-icon span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
  }

  .menu-toggle:checked ~ .menu-icon span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle:checked ~ .menu-icon span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
  }

  .navbar {
    border-radius: 25px;
  }
}/* End custom CSS */