.header-section {
  width: 100%;
  height: auto;
  position: fixed;
  top: 80px;
  z-index: 999;
}

/* Smooth transition when header becomes sticky */
.header-section {
  transition: top 300ms ease;
}

.header-logo {
  width: 225px;
  height: 54px;
}
.header-contact-button {
  margin-top: 0 !important;
}

.container.header-holder {
  max-width: 1690px;
  display: flex;
  justify-content: space-between;
  background: white;
  border-radius: 50px;
  padding: 16px 20px 16px 30px;
  height: auto;
}

/* Reduced radius and subtle shadow when sticky */
.header-section.sticky .container.header-holder {
  /* border-radius: 12px; */
  transition: border-radius 300ms ease, padding 300ms ease;
}

.header-section.sticky {
  top: 0;
  /* box-shadow: 0 6px 18px rgba(0,0,0,0.12); */
}
ul.header-ul {
  display: flex;
  gap: 60px;
  justify-content: center;
  align-items: center;
}
li.header-li {
  list-style: none;
}
.social-icon-holder {
  width: 20px;
  height: 20px;
}
.header-last-holder {
    display: flex;
    gap: 5px;
    justify-content: center;
    align-items: center;
}
.social-icon-holder {
    width: 40px;
    height: 40px;
    background: #9d7458;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    padding: 10px;
}
