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

/* Product Image */
.product-img {
  max-width: 100%;
  height: auto;
 
  margin:auto;
}

@media (max-width: 576px) {
  .product-img {
    max-width: 80%; /* You can change to 70% or 100% based on look */
    display: block;
    margin: 0 auto;
  }

  .products-section .row {
    flex-direction: column; /* Stack columns on mobile */
    text-align: center;
  }
}


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

/* 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;
}

.product-section{
    position: relative;
      width: 100%;
      min-height: 100vh;
      background: url('images/gallery15.jpeg') no-repeat center center/cover;
     
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 40px;}

      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;
      }
    }
    
    
    .product-img {
      max-width: 350px;
      height: 350px;;
      border-radius: 10px;
      margin:auto;
    }
    
    .product-title {
      font-size: 1.8rem;
      font-weight: 600;
      margin-bottom: 15px;
    }
    
    .product-description {
      font-size: 1rem;
      margin-bottom: 15px;
      color:black;
    }
    
    .product-features {
      padding-left: 20px;
      color: black;
    }
    
    .product-features li {
      margin-bottom: 8px;
    }
    
    .enquire-btn {
      font-weight: 500;
      padding: 10px 25px;
      font-size: 1rem;
      border-radius: 8px;
      transition: 0.3s;
    }
    
    .enquire-btn:hover {
      background-color: #28a745;
      color: white;
    }
    