/* Product Section Styling */
.products-section {
    background-color: #f8f9fa;
    padding: 50px 0;
}

/* Product Image */
.product-img {
    width: 100%;
    max-height: 400px;
    object-fit: contain;
    border-radius: 8px;
}

/* Product Title */
.product-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
}

/* Additional Features List */
ul {
    padding-left: 20px;
    margin-top: 10px;
}

/* Additional Features Styling */
.additional-features {
    background-color: #e9f7ef;
    padding: 20px;
    border-radius: 8px;
}

/* View More Button */
.btn-outline-primary {
    border-color: #28a745;
    color: #28a745;
}

.btn-outline-primary:hover {
    background-color: #28a745;
    color: #fff;
}

/* Modal Image Styling */
.modal-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.products-section{
  position: relative;
    width: 100%;
    min-height: 100vh;
    background: url('images/gallery13.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;
    }
  }