
.whatsapp-button, .call-button {
    position: fixed;
    left: 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .whatsapp-button {
    bottom: 150px;
  }
  
  .call-button {
    bottom: 80px;
  }
  
  .whatsapp-button img, .call-button img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25D366;
    padding: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
  }
  
  .whatsapp-button img:hover, .call-button img:hover {
    transform: scale(1.1);
  }
  
  .call-button img {
    background-color: #34b7f1;
  }

.footer {
    background-color:  #0355cc;
    color: white;
    padding: 50px 30px;
    font-family: Arial, sans-serif;
  }
  
  .footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    row-gap: 30px;
    column-gap: 50px;
  }
  
  .footer-section {
    flex: 1;
    min-width: 250px;
    margin: 20px;
  }
  
  .footer-section h4 {
    margin-bottom: 20px;
    font-size: 30px;
    font-weight: 700;
    border-bottom: 3px solid white;
    display: inline-block;
    padding-bottom: 5px;
  }
  
  .footer-section ul {
    list-style: none;
    padding: 0;
    line-height: 1.8;
  }
  
  .footer-section ul li {
    margin: 12px 0;
    display: flex;
    align-items: center;
    font-size: 16px;
  }
  
  .footer-section ul li img {
    width: 20px;
    height: 20px;
    margin-right: 12px;
  }
  
  .footer-section ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-section ul li a:hover {
    color: #ffcc00;
  }
  
  .newsletter-form {
    display: flex;
    flex-direction: column;
  }
  
  .newsletter-form input {
    padding: 15px;
    margin-bottom: 15px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
  }
  
  .newsletter-form button {
    padding: 15px;
    background-color: #ffcc00;
    color: #192390;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .newsletter-form button:hover {
    background-color: #e0b800;
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid white;
    padding-top: 20px;
    font-size: 14px;
  }

@media (max-width: 480px) {

 .whatsapp-button, .call-button {
        position: fixed;
        left: 20px;
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: center;
      }
    
      .whatsapp-button {
        bottom: 100px;
      }
    
      .call-button {
        bottom: 40px;
      }
    
      .whatsapp-button img, .call-button img {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background-color: #25D366;
        padding: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease;
      }
    
      .call-button img {
        background-color: #34b7f1;
      }
    
  
    .footer-container {
      row-gap: 20px;
    }
  
    .footer-section ul li {
      font-size: 12px;
      line-height: 1.5;
    }
  
    .footer-section ul li img {
      width: 15px;
      height: 15px;
    }
  
    .newsletter-form input,
    .newsletter-form button {
      font-size: 12px;
      padding: 10px;
    }
  
    .footer-bottom {
      font-size: 10px;
      padding-top: 15px;
    }
  
  .footer-bottom {
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid white;
    padding-top: 10px;
    font-size: 14px;
  }
}
