.static-footer {
  position: relative;
  background: #720000; 
  color: #fff;
  padding: 50px 20px 20px;
  font-family: Arial, sans-serif;
  height: 100%;
  width: 100%;
  z-index: 1; 
}

.static-footer::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: url('https://www.zionfoods.in/img/Cake-pattern.png');
  background-repeat: repeat;
  background-size: auto; 
  z-index: -1; 
  opacity: 0.09; 
}

    .static-footer-container {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 40px;
      max-width: 1200px;
      margin: 0 auto;
    }

    /* Left Section */
    .static-footer-left img {
      max-width: 150px;
      margin-bottom: 15px;
    }

    .static-footer-left p {
      line-height: 1.6;
      margin-bottom: 20px;
    }

    .static-footer-social {
      display: flex;
      gap: 12px;
    }

    .static-footer-social a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 35px;
      height: 35px;
      border: 2px solid #fff;
      border-radius: 50%;
      text-decoration: none;
      color: #fff;
      font-size: 16px;
      transition: 0.3s;
    }

    .static-footer-social a:hover {
      background: #fff;
      color: #861919;
    }

    /* Middle Section */
    .static-footer-middle h3,
    .static-footer-right h3 {
      position: relative;
      margin-bottom: 15px;
          color: white;
    font-size: 28px;
    }

    .static-footer-middle h3::after,
    .static-footer-right h3::after {
      content: "";
      display: block;
      width: 40px;
      height: 2px;
      background: #fff;
      margin-top: 5px;
    }

    .static-footer-links {
      list-style: none;
      padding: 0;
    }

    .static-footer-links li {
      margin-bottom: 10px;
    }

    .static-footer-links li a {
      text-decoration: none;
      color: #fff;
      transition: 0.3s;
    }

    .static-footer-links li a:hover {
      color: #ffdf6c;
    }

    /* Right Section */
    .static-footer-right p {
      margin: 5px 0;
    }

    .static-footer-map {
      margin-top: 15px;
      /* border-radius: 8px; */
      overflow: hidden;
    }

    .static-footer-map iframe {
      width: 85%;
      height: 200px;
      border: 0;
    }

    /* Bottom Bar */
    .static-footer-bottom {
      text-align: center;
      margin-top: 30px;
      font-size: 14px;
      border-top: 1px solid rgba(255, 255, 255, 0.2);
      padding-top: 15px;
    }
    .badege-img{
        width: 120px;
    }

    /* Responsive Design */
    @media (max-width: 900px) {
      .static-footer-container {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 600px) {
      .static-footer-container {
        grid-template-columns: 1fr;
        text-align: center;
      }
      .static-footer-social {
        justify-content: center;
      }
    }