.root {
  --blue-primary: #1f4e79;
  --teal-dark: #0b5c6b;
  --green-primary: #6fbf4a;
  --green-light: #a6d96a;
  --black: #000000;
  --white: #ffffff;
}

.blue-primary {
  color: var(--blue-primary);
}

.green-primary {
  color: var(--green-primary);
}

.container-footer {
  max-width: 1400px !important;
  margin: 0 auto;
  padding: 0 15px;
}

.footer-widget__companies {
  display: grid;
  grid-template-columns: 1fr; /* single column */
  width: 100%;
  gap: 15px;
}

.footer-widget__companies__item {
  width: 100%; /* force same width */
}

.footer-widget__companies__item img {
  width: 100%; /* all logos same width */
  height: 60px; /* same height */
  object-fit: contain; /* no distortion */
  background: #ffffff;
  padding: 10px;
  border-radius: 6px;
}

/* Certification carousel - same image size */
.client-carousel__one__item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px; /* same height for all items */
}

.client-carousel__one__item img {
  max-width: 140px; /* same width */
  max-height: 180px; /* same height */
  object-fit: contain;
}

@media (max-width: 768px) {
  .client-carousel__one__item img {
    max-width: 100px; /* smaller width for mobile */
    max-height: 120px; /* balanced height */
  }
  .team-card__content__hover__icon {
    display: none;
  }
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 18px;
  right: 18px;
  width: 50px;
  height: 50px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 32px;
  line-height: 50px;
  z-index: 9999;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
  transition: all 0.3s ease;
  animation: pulseGlow 2s infinite;
}

/* Hover */
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.8);
  color: #fff;
}

/* Pulse Animation */
@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Mobile adjustment */
@media (max-width: 767px) {
  .whatsapp-float {
    width: 54px;
    height: 54px;
    font-size: 28px;
    line-height: 54px;
    bottom: 20px;
    right: 16px;
  }
}

/* ===== Mobile black overlay for home slider ===== */
@media (max-width: 768px) {
  .main-slider-one__item {
    position: relative;
  }

  .main-slider-one__item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55); /* black overlay */
    z-index: 1;
  }

  /* Bring content above overlay */
  .main-slider-one__content,
  .main-slider-one__shape {
    position: relative;
    z-index: 2;
  }
  .logo-laboix img {
    width: 220px !important;
  }
}

.about-two__box__subtitle {
  color: #6fbf4a;
}
