/* ===============================
   FLOATING ACTION ICONS
   =============================== */

.floating-icons {
  margin-bottom: 74px;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  text-decoration: none;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 22px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.float-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

/* Brand Colors */
.float-btn.whatsapp {
  background-color: #25d366;
}

.float-btn.call {
  background-color: #0d6efd;
}

.float-btn.instagram {
  background-color: #e1306c;
}

/* YouTube Specific Style */
.float-btn.youtube {
  background-color: #ff0000;
}

.float-btn.linkedin {
  background-color: #0077b5;
}

.float-btn.facebook {
  background-color: #3b5998;
}

.float-btn.blogger {
  background-color: #f57d00; /* Official Blogger Orange */
}
/* Scroll to top */
.float-btn.scroll-top {
  background-color: #333;
  cursor: pointer;
}

/* Show scroll button */
.float-btn.scroll-top.show {
  display: flex;
}

/* Mobile spacing */
@media (max-width: 768px) {
  .floating-icons {
    right: 15px;
    bottom: 15px;
  }
}

/* footer */

/* ===============================
   FOOTER
   =============================== */

.footer {
    background: #ffffff;
    padding: 40px 0px 0px;
    font-size: 14px;
    color: #333;
}
.copy-right-wrap {
    background-color: #d0ebff;
    padding: 5px 0px;
}
.footer-title {
  font-weight: 600;
  margin-bottom: 10px;
}

.footer-links li {
  margin-bottom: 6px;
}

.footer-links a {
  color: #555;
  text-decoration: none;
}

.footer-links a:hover {
  color: #7c42e2;
}

/* Footer branding */
.footer-logo img {
  max-width: 180px;
}

.footer-description {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 8px;
}

.footer-copy {
  font-size: 13px;
  color: #777;
}
