.navbar {
    background-color: white;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);  
    overflow-x: hidden;
  }
  
  .navbar .nav-link {
    color: black !important;
    font-size: 16px;
    padding: 15px 20px;
  }
  
  .navbar .nav-link:hover {
    background-color: #f1f1f1;
    border-radius: 5px;
  }
  
  .navbar .navbar-toggler-icon {
    background-color: white;
  }
  
  .navbar-nav .nav-item {
    margin-right: 20px;
  }
  
  .navbar-brand img {
    width: 50px;
    height: auto;
  }
  
  .navbar-nav .nav-item i {
    margin-right: 8px;
  }
  
  .navbar-nav .nav-item .nav-link {
    display: flex;
    align-items: center;
  }
  
  .navbar-nav .nav-item a {
    text-decoration: none;
  }

/* cart section */
.cart {
    margin-top: 90px;
    padding: 60px;
    display: flex;
    justify-content: space-between;
  }
  
  .product-description {
    display: flex;
    justify-content: space-between;
    gap: 5px;
  }
  

/* Sticky Right Side */
.right-side {
    background-color: #f9f9f9; /* Lighter background for better contrast */
    width: 400px;
    padding: 30px;
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: sticky;
    top: 90px;
    z-index: 100;
    height: fit-content;
  
}
.form-control{
    padding: 17px;
    border-radius: 5px;
    border: 1px solid #ccc;
  

}


.bank-offers {
    border: 1px solid rgb(218, 216, 216);  
    border-radius: 10px;
    padding: 20px;
    background: linear-gradient(#e0f1f3, #ffffff);
    height: 100px;            
   
  }
  


/* footer */

.nav-list li{
    list-style: none;
  }
  
  footer {
    background-color: #f8f9fa;
    color: #333;
    font-family: Arial, sans-serif;
    color: #555;
  }
  
  .footer-list li {
    display: none;
    margin-right: 20px;
  }
  .footer-section h4 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: bold;
  }
  
  .footer-section ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-section ul li {
    margin-bottom: 10px;
  }
  .footer-section ul li a {
    text-decoration: none;
    color: black;
    transition: color 0.3s;
    font-weight: 500;
  } 
  
  .mobile-footer{
    max-width: 400px;
    margin: 0 auto;
  }

  @media (min-width: 992px) {
    .mobile-footer{
      display: none ;
    }
  }
@media (max-width: 768px) {
    .cart {
        flex-direction: column;
        align-items: center;
        padding: 0;
    }

    .product-card {
        width: 100%;
    }

    .right-side {
        width: 90%;
        margin-top: 20px;
    }

    .navbar{
        overflow-x: hidden;
      }
      .footer-container{
        display: none;  
      }
    
      .mobile-footer{
        position: relative;
        top: 90px;
        display: block;
      }
}


 
  
