.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(
    0,
    0,
    0,
    0.4
  ); /* Adjust transparency by changing 0.5 */
  z-index: 1;
}

.sticky-icons {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 5;
}

.sticky-icons a {
  text-decoration: none;
  color: #333;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.sticky-icons a:hover {
  background-color: #0454a9;
  color: white;
}

.sticky-icons i {
  font-size: 18px;
}

.nav-tabs .nav-link {
  border: 1px solid #ddd;
  color: #333;
  font-weight: 500;
  padding: 10px 20px;
  margin-right: 5px;
  border-radius: 5px 5px 0 0;
  background-color: #f9f9f9;
  transition: all 0.3s ease;
}

.nav-tabs .nav-link.active {
  background: linear-gradient(to right, #38499e, #1dae50);

  /* your brand color */
  color: #fff;
  border-color: none;
}
.nav-tabs .nav-link.active:hover {
  color: #fff;
}
.nav-tabs .nav-link:hover {
  background-color: #e9ecef;
  color: #333;
}

.contact-us-form {
  border: 1px solid #ddd;
  border-radius: 0 0 8px 8px;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.submitbtn {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  background: linear-gradient(to right, #38499e, #1dae50);

  color: #fff;
  border: none;
  transition: all 0.3s ease;
}

.submitbtn:hover {
  background-color: transparent;
  color: #fff;
  border: none;
  border: solid 1px black;
}

.read-more-btn {
  background: linear-gradient(to right, #38499e, #1dae50);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.read-more-btn:hover {
  text-decoration: underline;
  margin-left: 5px;
}

.gradient-text {
  background: linear-gradient(to right, #38499e, #1dae50);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff;
  font-size: 28px;
  text-align: center;
  line-height: 60px;
  border-radius: 50%;
  z-index: 999;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.7);
  transition: 0.3s;
  overflow: hidden;
  animation: rippleWave 3s infinite ease-out;
}

.whatsapp-float i {
  position: relative;
  z-index: 2;
}

/* Create a ripple animation using box-shadow */
@keyframes rippleWave {
  0% {
    box-shadow: 0 0 0 5px rgba(37, 211, 102);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
}

.form-select {
  font-size: 16px;
  font-weight: 400;
  background-color: var(--white-color);
  color: var(--text-color);
  border: 1px solid var(--divider-color);
  border-radius: 10px;
  outline: none;
  box-shadow: none;
  padding: 17px 15px;
}

.text-anime-style-2,
span {
  cursor: auto !important;
}
.image-anime {
  cursor: auto !important;
}

.text-anime-style-2 {
  cursor: auto !important;
}

.border {
  border: dashed 1px #101010 !important;
  margin-bottom:45px;
}


.captcha-field {
  width:60px; display:inline; padding:5px !important; text-align: center;
}