:root {
    /* font family  */
    --font-family-one: "Poppins", sans-serif;
    --font-family-two: "Outfit", sans-serif;
    --font-family-three: "Raleway", sans-serif;
    --font-family-four: "Hind", sans-serif;

    /* font color  */
    --color-one: #111f5d;
    --color-two: #1268b3;
    --color-three: #222831;
    --color-four: #F7F7F7;
    --color-five: #FF8B00;
}
/* ====== Footer Styling ====== */
.footer-section {
  background-color: #111;
  color: #ddd;
  font-family: 'Mulish', sans-serif;
  line-height: 1.6;
  padding: 70px 0px;
}

.footer-heading {
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
  font-size: 1.1rem;
  font-family: var(--font-family-one);
}

.footer-links li {
  margin-bottom: 6px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #1268b3;
  padding-left: 5px;
}

.footer-link {
  color: #1268b3;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.footer-link:hover {
  text-decoration: underline;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background-color: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background-color: #1268b3;
  color: #fff;
}

.footer-line {
  border-color: rgba(255,255,255,0.1);
}

@media (max-width: 767px) {
  .footer-section {
    text-align: center;
  }
  .footer-social {
    justify-content: center;
  }
}

.list-footer{
    line-height: 30px;
}

.list-footer li{
    font-family: var(--font-family-one);
}
.footer-para{
     font-family: var(--font-family-two);
}
.footer-cred{
    font-family: var(--font-family-one);
}

.sticky-contact-buttons {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

/* ========== Common Button Styles ========== */
.sticky-contact-buttons a {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  font-size: 24px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

/* ========== WhatsApp Button ========== */
.whatsapp-btn {
  background: linear-gradient(135deg, #25d366, #21b358);
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.5);
}

/* ========== Call Button ========== */
.call-btn {
  background: linear-gradient(135deg, #007bff, #00b4ff);
}

.call-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.5);
}

/* ========== Responsive (Mobile) ========== */
@media (max-width: 600px) {
  .sticky-contact-buttons {
    bottom: 15px;
    right: 15px;
    gap: 10px;
  }

  .sticky-contact-buttons a {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
}