.footer-container {
    background-color: #000;
    color: #fff;
    padding: 2rem 4rem;
    font-family: 'Futura Std', sans-serif;
    max-width: 100%;
    margin: 0 auto;
  }

  .footer-content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
  }

  .footer-section {
    display: flex;
    flex-direction: column;
  }

  .footer-logo {
    display: flex;
    justify-content: center;
  }

  .footer-logo img {
    height: 150px;
    width: auto;
  }

  .section-title {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
  }

  .contact-info {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #ccc;
  }

  .contact-info a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
  }

  .contact-info a:hover {
    color: #fff;
  }

  .social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .social-link {
    width: 30px;
    height: 30px;
    transition: transform 0.3s;
  }

  .social-link:hover {
    transform: scale(1.1);
  }

  .social-link img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .footer-nav a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
    white-space: nowrap;
  }

  .footer-nav a:hover {
    color: #fff;
  }

  .copyright {
    text-align: center;
    font-size: 0.8rem;
    color: #666;
    padding-top: 2rem;
    border-top: 1px solid #333;
  }

  .footer-stripes {
    height: 8px;
    width: 100%;
    background-image: repeating-linear-gradient(
      45deg,
      #B7A596 0,
      #B7A596 4px,
      transparent 4px,
      transparent 8px,
      #B7A596 8px,
      #B7A596 12px,
      transparent 12px,
      transparent 16px
    );
    animation: slide 30s linear infinite;
  }

  @keyframes slide {
    from {
      background-position: 0 0;
    }
    to {
      background-position: 100% 0;
    }
  }
 


  @media (max-width: 1200px) {
    .footer-content {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-logo {
      grid-column: 1 / -1;
      justify-self: center;
      margin: 2rem 0;
    }

    .footer-section {
      align-items: center;
    }

    .contact-info {
      align-content: center;
    }

    .contact-info P{
      align-content: center;
    }

    .footer-nav {
      align-items: center;
    }

    .footer-P {
      align-items: center;
    }
  }

  
  @media (max-width: 768px) {
    .footer-container {
      padding: 0rem;
    }
    
    .footer-content {
      grid-template-columns: 1fr;
      text-align: center;
    }

    .footer-section {
      align-items: center;
    }

    .social-links {
      justify-content: center;
    }

    .footer-nav {
      align-items: center;
    }

    .footer-P {
      align-items: center;
    }
  }


/* WhatsApp */
  
/* Base styles for the WhatsApp link */
.whatsapp-btn {
  position: fixed;
  z-index: 1000;
  display: block;
  transition: all 0.3s ease;
}

/* WhatsApp icon image */
.whatsapp-btn img {
  display: block;
}

/* Mobile styles (up to 767px) */
@media screen and (max-width: 767px) {
  .whatsapp-btn {
      bottom: 20px;
      right: 15px;
  }
  
  .whatsapp-btn img {
      width: 60px;
      height: 60px;
  }
}

/* Tablet styles (768px to 1023px) */
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .whatsapp-btn {
      bottom: 20px;
      right: 20px;
  }
  
  .whatsapp-btn img {
      width: 55px;
      height: 55px;
  }
}

/* Desktop styles (1024px and above) */
@media screen and (min-width: 1024px) {
  .whatsapp-btn {
      bottom: 20px;
      right: 20px;
  }
  
  .whatsapp-btn img {
      width: 60px;
      height: 60px;
  }
}

/* Hover effect */
.whatsapp-btn:hover {
  transform: scale(1.1);
}