.elementor-1255 .elementor-element.elementor-element-fc98821{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-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-0786711 */@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css");

body {
  margin: 0px;
  background: #fff;
  font-family: "Inter", sans-serif;
  
}

/* Header Layout */
.site-header {
  display: flex !important;
  justify-content: space-between;
  align-items: center;

  background: transparent !important;
  color: #1f1814 !important;
  border: none !important;
  visibility: visible !important;
  opacity: 1 !important;


  margin: 10px
}

/* Logo (Left) */
.header-left img {
  height: 28px;
  width: auto;
  border-radius: 10px;
  display: block !important;
}

/* Right Section */
.header-right {
  display: flex !important;
  align-items: center;
  gap: 10px;
}

/* Navigation Buttons */
.nav-item {
  text-decoration: none !important;
  color: #1f1814 !important;
  font-weight: 600;
  font-size: 16px;
  border: 1px solid #1f1814 !important;
  border-radius: 20px;
  padding: 6px 14px;
  transition: all 0.3s ease;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
}

/* Home icon (no border) */
.nav-item.home {
  border: none !important;
  font-size: 18px;
}

.nav-item:hover {
  background: #1f1814 !important;
  color: #fff !important;
}

/* Search box */
.search-box {
  position: relative;
  display: flex !important;
  align-items: center;

}

#search-input {
  width: 0;
  opacity: 0;
  border: 1px solid #1f1814;
  border-radius: 10px;
  padding: 0px 0px;
  font-size: 14px;
  color: #1f1814;
  outline: none;
  transition: all 0.4s ease;
  background: #fff;
  margin-left: 10px;
}

#search-input.active {
  width: 160px;
  opacity: 1;
}

.search-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  color: #1f1814;
  font-size: 18px;
  border-radius: 10px;
}

/* Force icons visible even if theme hides */
.fa-home,
.fa-search {
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Responsive */
@media (max-width: 700px) {
  .site-header {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .header-right {
    flex-wrap: wrap;
    justify-content: center;
  }

  #search-input.active {
    width: 100px;
  }
}/* End custom CSS */