.main-footer {
  background-color: #161515;
  padding: 60px 0 0px;
  position: relative;
}

.footer-heading {
  color: #40c320;
  font-weight: bold;
  margin-bottom: 15px;
}

.footer-contat-detail a{
    color: #fff !important;
}
.main-footer p, .main-footer i {
  color: #fff;
  font-size: 15px;
}

.main-footer input, .main-footer textarea {
  background: #fff;
  border: none;
  color: #000;
  border-radius: 0;
}

.footer-bottom {
  background-color: #222;
  font-size: 14px;
}

/* Fixed Social Icons */
.social-fixed {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0;
  z-index: 999;
}

.social-fixed a {
  background: #fff;
  padding: 10px;
  display: block;
  color: #000;
  font-size: 18px;
}
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 50px;
  height: 50px;
  background-color: #25D366; /* WhatsApp green */
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  z-index: 9999;
}

.whatsapp-float:hover {
  background-color: #1ebd5b;
  transform: scale(1.1);
}


/* Go to Top */
.go-top-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #fff;
  padding: 12px 14px;
  border-radius: 50%;
  z-index: 999;
  color: #111;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  font-size: 18px;
      width: 42px;
    height: 42px;
    display: flex
;
    align-items: center;
    justify-content: center;
}
/* Container fixed right center */

.social-fixed a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #333;
  background: #fff;
  text-decoration: none;
  padding-left: 10px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  overflow: visible;
  transform-origin: right center; /* Important: expand toward left */
}
.social-fixed a:first-child{
 border-top-left-radius: 4px;
}
.social-fixed a:last-child{
 border-bottom-left-radius: 4px;
}

.social-fixed a i {
  font-size: 18px;
  transition: color 0.3s ease;
}

/* Hover effect */
.social-fixed a:hover {
  background-color: black;
  color: white;
  padding-right: 10px;
  /* transform: scaleX(1.5); */
}

.social-fixed a:hover i {
  color: white;
  padding-right: 5px;
}

/* Tooltip with gap from left */
.social-fixed a::before {
  content: attr(data-tooltip);
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  background: black;
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  font-size: 14px;
  transition: opacity 0.3s ease;
  z-index: 10000;
}

/* Tooltip arrow */
.social-fixed a::after {
  content: '';
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: transparent black transparent transparent;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10000;
}

/* Show tooltip only on hover */
.social-fixed a:hover::before,
.social-fixed a:hover::after {
  opacity: 1;
}
.footer-contat-detail p i{
    margin-right: 10px;
}