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

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


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