/* Jumbo Bag Types Section */
#jumbo-bag-types {
    background-color: #f8f9fa;
    padding: 50px 0;
}

/* Bag Type Container */
.bag-type {
    background-color: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
}

/* Hover Effect */
.bag-type:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

/* Heading Styles */
.bag-type h4 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

/* Description Styles */
.bag-type p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .bag-type {
        margin-bottom: 20px;
    }
}
.jumbo-bag-types{
    position: relative;
      width: 100%;
      min-height: 100vh;
      background: url('images/gallery7.jpeg') no-repeat center center/cover;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 40px;}
      .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  z-index: 1;
  }
      section{
        color:white;
      }
   
  /* Footer Styles */
  .footer {
    background-color: rgba(0, 0, 0, 0.85);
    color: #fff;
    text-align: center;
    padding: 20px 10px;
    z-index: 2;
  }
  
  .footer-content {
    max-width: 960px;
    margin: 0 auto;
  }
  
  .footer p {
    margin-bottom: 10px;
    font-size: 0.95rem;
  }
  
  .social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
  }
  
  .social-icons a {
    color: #fff;
    font-size: 1.4rem;
    transition: color 0.3s, transform 0.3s;
  }
  
  .social-icons a:hover {
    color: #00acee;
    transform: scale(1.2);
  }
  
  /* Responsive Footer */
  @media (max-width: 480px) {
    .footer p {
      font-size: 0.85rem;
    }
  
    .social-icons a {
      font-size: 1.2rem;
    }
  }