/* 🔹 Default style (used everywhere) */
.service-item .service-icon svg {
  width: 48px;
  height: 48px;
  fill: var(--tj-color-theme-primary); /* inherit primary color */
  transition: all 0.4s ease-in-out;
}

/* 🔸 Default hover effect — turns white */
.service-item:hover .service-icon svg {
  fill: #ffffff;
}

/* 🟣 Override: Disable hover color change on service page only */
.service-page .service-item:hover .service-icon svg {
  fill: var(--tj-color-theme-primary) !important;
}
/* Default state for dropdown icons */
.mega-menu-service-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--tj-color-theme-primary);
  transition: all 0.4s ease-in-out;
  vertical-align: middle;
}

/* On hover — when parent link is hovered */
.mega-menu-service-single:hover .mega-menu-service-icon svg {
  fill: #ffffff !important;
}


.page-header-overlay-service {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.35;
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.choose-box .choose-icon svg {
  stroke: #1e8a8a; /* main icon color */
  transition: all 0.4s ease-in-out;
}

/* 🔸 On hover — change icon color to white */
.choose-box:hover .choose-icon svg {
  stroke: #ffffff;
}

/* 💬 Base style for all floating buttons */
.float-btn {
  position: fixed;
  right: 2.2%;
  z-index: 99999;
  /* background-color: #ffffff; */
  /* border-radius: 50%; */
  padding: 10px;
  /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25); */
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  animation: float-bounce 2s ease-in-out infinite;
}

@keyframes float-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.float-btn img {
  display: block;
  width: 40px;
  height: 40px;
}

.float-btn.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Hover */
.float-btn:hover {
  transform: scale(1.1);
}

/* Individual button colors */
.whatsapp-float {
  bottom: 110px;
  /* background-color: white; */
}


.facebook-float {
  bottom: 180px;
  /* background-color: white; */
}

.instagram-float {
  bottom: 320px;
  /* background: white;*/
} 

.linkedin-float {
  bottom: 250px; /* Adjusted above Instagram */
}
.instagram-float:hover {
  filter: brightness(1.1);
}

/* 💻 Laptop screens (max-width: 1440px) */
@media (max-width: 1440px) {
  .float-btn {
    right: 3%;
  }
}

/* 📱 Mobile devices (max-width: 768px) */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 77px;
  }
  .facebook-float {
    bottom: 145px;
  }
  .instagram-float {
    bottom: 275px;
  }
  .linkedin-float {
    bottom: 210px;
  }
}

.text-primary{
  color: #1e8a8a !important;
  font-weight: 800;
}


  .form-input input:not(:placeholder-shown) + .cf-label,
.form-input textarea:not(:placeholder-shown) + .cf-label,
.form-input select:valid + .cf-label {
    transform: translateY(-20px);
    font-size: 12px;
    opacity: 1;
}
/* Default icon color */
.tj-careers .tj-careers-icon svg {
  width: 48px;
  height: 48px;
  fill: var(--tj-color-theme-primary);
  transition: all 0.4s ease-in-out;
}

/* Hover: turn white */
.tj-careers:hover .tj-careers-icon svg {
  fill: #ffffff;
}



