body {
            padding-top: 56px; /* Adjust based on the height of your fixed navbar */
        }

        .navbar {
            /*background-color: #343a40;*/ background-color: #828991;
        }

        .navbar-dark .navbar-nav .nav-link {
            color: #ffffff;
        }

        .carousel-inner img {
            width: 100%;
            height: 100%;
        }

        .card {
            margin-bottom: 20px;
        }

        /* Add more styles as needed */

        /* Small Informative Banners Styles */
        .info-banner {
            background-color: #f8f9fa;
            padding: 20px;
            margin-bottom: 20px;
        }
		/** Product container **/
.product-container {
      display: flex;
      max-width: 1200px;
      margin: 20px auto;
      padding: 20px;
      background-color: #fff;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
      border-radius: 10px;
    }

    .image-gallery-container {
      flex: 1;
      margin-right: 20px;
      overflow: hidden;
    }

    .image-gallery {
      display: flex;
      transition: transform 0.5s ease-in-out;
    }

    .gallery-card {
      flex: 0 0 100%;
      box-sizing: border-box;
      padding: 0 10px;
    }

    .gallery-card img {
      width: 100%;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease-in-out;
    }

    .gallery-card img:hover {
      transform: scale(1.1);
    }

    .gallery-dots {
      text-align: center;
      margin-top: 10px;
    }

    .dot {
      display: inline-block;
      height: 10px;
      width: 10px;
      margin: 0 5px;
      background-color: #bbb;
      border-radius: 50%;
      cursor: pointer;
    }

    .dot.active {
      background-color: #555;
    }

    .product-details {
      flex: 1;
    }

    .product-title {
      font-size: 28px;
      margin-bottom: 10px;
      color: #333;
    }

    .product-description {
      margin-bottom: 20px;
      color: #555;
    }

    .product-bullets {
      color: #555;
    }

    .product-price {
      font-size: 24px;
      margin-bottom: 10px;
      color: #333;
    }

    .button-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 20px;
    }

    .buy-now-btn,
    .add-to-cart-btn {
      padding: 15px 20px;
      font-size: 18px;
      cursor: pointer;
      border: none;
      border-radius: 5px;
      transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
    }

    .buy-now-btn {
      background-color: #4CAF50;
      color: white;
    }

    .buy-now-btn:hover {
      background-color: #45a049;
    }

    .add-to-cart-btn {
      background-color: #2196F3;
      color: white;
    }

    .add-to-cart-btn:hover {
      background-color: #1e87f0;
    }

    .social-media-share {
      text-align: center;
      margin-top: 20px;
    }

    .social-media-share a {
      display: inline-block;
      margin: 0 10px;
      font-size: 20px;
      color: #555;
      text-decoration: none;
      transition: color 0.3s ease-in-out;
    }

    .social-media-share a:hover {
      color: #333;
    }

    @media (max-width: 768px) {
      .product-container {
        flex-direction: column;
      }

      .image-gallery-container {
        margin-right: 0;
        margin-bottom: 20px;
      }

      .product-details {
        order: -1;
      }
    }
	

/* footer */

footer {
    /*background-color: #333;*/ background-color: #828991;
    color: white;
    padding: 20px 0;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.company-info,
.social-media,
.website-pages,
.credits {
    flex: 1;
    margin: 10px;
}

.h3 {
    border-bottom: 2px solid white;
    padding-bottom: 5px;
}

ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    margin: 5px 0;
}

a {
    color: white;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
