body {
    font-family: "Roboto", sans-serif;
}
.no-bg {
  background-color: transparent !important;
}
.no-shadow {
    -webkit-box-shadow: none!important;
    box-shadow: none!important;
}
.primary-text-color {
    color: var(--primary-text-color)!important;
}
.title {
    font-family: "Lora", Sans-serif;
    font-size: 34px;
    line-height: 1;
    font-weight: 600;
    color: var(--primary-text-color);
}
.sub-title {
    font-family: "Lora", Sans-serif;
    font-size: 22px;
    line-height: 1;
    color: #1A1A1A;
}
@media (min-width: 1425px) {
    .title {
        font-size: 58px;
        line-height: 1;
        font-weight: 600;
        margin-bottom: 20px;
    }
    .sub-title {
        font-size: 28px;
        line-height: 1;
    }
}
nav ul a {
    font-family: Roboto, sans-serif;
    font-size: 16;
    font-weight: 500;
}
.border {
    border: 1px solid #a7a6a6;
}
.custom-btn {
  position: relative;
  overflow: hidden;
  font-family: "Roboto", Sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--primary-text-color);
  background-color: #FFFFFF;
  display: inline-block;
  padding: 6px 25px;
  border: 1px solid var(--primary-fill-color);
  border-radius: 7px;
  margin-top: 10px!important;
  cursor: pointer;
  transition: background-color 0.3s;
}
/* Wave effect */
.custom-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(128, 0, 128, 0.15);
  transform: skewX(-20deg);
  z-index: 1;
  transition: none;
}
/* Trigger animation on click */
.custom-btn:active::after {
  animation: wave-sweep 0.6s ease-out forwards;
}
/* Animation */
@keyframes wave-sweep {
  from {
    left: -100%;
  }
  to {
    left: 100%;
  }
}
/* Optional: Keep text above wave */
.custom-btn > * {
  position: relative;
  z-index: 2;
}
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background-color: #ffffff;
  border-top: 1px solid #ddd;
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 999;
  box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.05);
  font-family: "Roboto", Sans-serif;
}
.bottom-nav .nav-item {
  flex: 1;
  text-align: center;
  color: #666;
  font-size: 12px;
  text-decoration: none;
  padding: 6px 0;
  transition: color 0.3s;
}
.bottom-nav .nav-item i {
  display: block;
  font-size: 22px;
  margin-bottom: 2px;
}
.bottom-nav .nav-item.active,
.bottom-nav .nav-item:hover {
    color: var(--primary-darken-fill-color);
}

.spaced-top {
    margin-top: 30px;
}
@media (min-width: 768px) {
    .spaced-top {
        margin-top: 70px!important;
    }
    .bottom-nav {
        display: none!important;
    }
}
.clearfix {
    clear: both!important;
}
.inline-field {
    padding: 0 8px;
}
.no-margin {
    margin-bottom: 0;
}
.full-width {
    width: 100%;
}
.select-wrapper input.select-dropdown {
    border-bottom: none!important;
    padding: 1px 6px;
}
input {
    border: none!important;
    border-radius: 6px!important;
    padding: 0px 6px!important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1)!important;
}
select {
    color: #555;
    font-weight: 500;
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    padding: 8px;
    border: none;
    appearance: none;
}
select option {
    color: #333;
}
.close-btn {
    font-size: 28px;
    cursor: pointer;
    color: #999;
}
