.footer {
      background-color: #f0fafc;
      position: relative;
      padding: 50px 0px 0;
      color: #000;
      overflow: hidden;
    }


    .footer-container {
  display: flex;
  justify-content: space-between; /* spread out columns */
  align-items: flex-start;
  flex-wrap: wrap;                /* allow wrapping on smaller screens */
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 40px;                /* side space */
  gap: 30px;                      /* space between columns */
  box-sizing: border-box;
}

.footer-container > div {
 /* flex: 1 1 220px;   /* grow, shrink, min-width */
  min-width: 200px;  /* prevents too small columns */
}

    .footer-logo img {
      width: 200px;
      margin-bottom: 10px;
    }

    .footer h4 {
      margin-bottom: 15px;
      font-size: 18px;
     }

    .footer p, .footer li, .footer a {
      font-size: 14px;
      color: #000;
      text-decoration: none;
      line-height: 1.8;
    }

    .footer ul {
      list-style: none;
      padding: 0;
    }

    .footer .social-icons {
      display: flex;
      gap: 10px;
      margin-top: 15px;
    }

    .social-icons a {
      background: #fff;
      border: 2px solid #5ebfe8;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #5ebfe8;
      animation: bounce 2s infinite;
    }

    .social-icons a:nth-child(1) { animation-delay: 0s; }
    .social-icons a:nth-child(2) { animation-delay: 0.5s; }
    .social-icons a:nth-child(3) { animation-delay: 1s; }
    .social-icons a:nth-child(4) { animation-delay: 1.5s; }

    .social-icons a:hover {
      background: #5ebfe8;
      color: white;
    }
    
  .site-footer {
    background: #00618c ;
    padding: 15px 0;
    text-align: center;
    font-family: Tahoma;
    color: #fff;
  }

  .site-footer a {
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
  }

  .site-footer a:hover {
    color: #0098da; /* Hover blue */
    }

    @keyframes bounce {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-8px); }
    }


    /* Responsive */
    @media (max-width: 1200px) {
  .footer-container {
    justify-content: space-around;
    padding: 0 30px;
  }
}

/* Responsive: Mobile */
@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 0 20px;
  }
}
    }
    
    .footer-useful ul li a {
      color: black;
      text-decoration: none;
      transition: color 0.3s;
  }

     .footer-useful ul li a:hover {
        color: #0098da;
  }
  
   .footer-useful h4:hover {
        color: #0098da;
    }
    
    .footer a:hover {
    color: #0098da; /* Blue hover */
    text-decoration: underline;
  }
  
  /*--------------------------------------------------------------
# WhatsApp Button Styles
--------------------------------------------------------------*/
  .whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 60px; /* stays at the very edge */
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  background-color: #25D366;
  border-radius: 50px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  animation: bounce 2s infinite;
  opacity: 0;
  animation: fadeIn 1s ease forwards 1s;
  font-family: 'Poppins', sans-serif;
}
    .whatsapp-button img {
      width: 28px;
      height: 28px;
    }

    .whatsapp-text {
      font-weight: bold;
      white-space: nowrap;
      display: none;
    }

    .whatsapp-button:hover .whatsapp-text {
      display: inline;
    }

    /* Bounce Animation */
    @keyframes bounce {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-6px); }
    }

    /* Fade In Animation */
    @keyframes fadeIn {
      to {
        opacity: 1;
      }
    }
    
  /* Mobile devices (up to 480px) */
@media (max-width: 480px) {
  .whatsapp-button {
    bottom: 10px;
    right: 10px;
  }
}

/* Tablets (481px to 768px) */
@media (min-width: 481px) and (max-width: 768px) {
  .whatsapp-button {
    bottom: 20px;
    right: 20px;
  }
}

/* Small laptops (769px to 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .whatsapp-button {
    bottom: 25px;
    right: 25px;
  }
}

/* Large laptops and desktops (1025px and above) */
@media (min-width: 1025px) {
  .whatsapp-button {
    bottom: 30px;
    right: 30px;
  }
}
