body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fefefe;
    color: #333;
}

.header-banner {
    background: linear-gradient(to bottom, #138BBF, #ffffff);
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    position: relative;
}

.logo {
    width: 150px;
    height: 100px;
}

.banner-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.banner-title {
    font-size: 2.5rem;
    color: #ffffff;
    margin: 0;
}

.banner-subtitle {
    font-size: 1rem;
    color: #333;
    margin-top: 5px;
}

    .navbar {
        background: #138BBF;
        padding: 1rem;
        text-align: center;
    }
    .navbar ul {
        list-style: none;
        padding: 0;
        margin-left: 10px;
        display: flex;
        justify-content: left;
        gap: 1.5rem;
    }
    .navbar a {
        color: white;
        font-weight: bold;
        text-decoration: none;
    }
    section {
        padding: 2rem;
    }
h2 {
    text-align: center;
    color: #138BBF;
    margin-bottom: 30px;
}

/* About Section */
.about-section {
    background-color: #fff;
    padding: 30px;
    margin: 20px auto;
    max-width: 900px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.about-section p {
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Product Section */

        .category-buttons {
            text-align: center;
            margin-bottom: 20px;
        }
        .category-buttons button {
            padding: 10px 20px;
            margin: 5px;
            border: none;
            background-color: #4CAF50;
            color: white;
            cursor: pointer;
            border-radius: 5px;
        }
        .category-buttons button:hover {
            background-color: #45a049;
        }
        .product-grid {
            display: none;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            padding: 0 20px;
        }
        .product-grid.active {
            display: grid;
        }
        .product-card {
            border: 1px solid #ddd;
            padding: 15px;
            text-align: center;
            border-radius: 8px;
            box-shadow: 2px 2px 10px rgba(0,0,0,0.1);
        }
        .product-card img {
            max-width: 100%;
            height: auto;
        }

/* Responsive tweaks */
@media (max-width: 768px) {
    .about-section {
        padding: 20px;
    }
}
.site-footer {
  background-color: #0C1B2A;
  color: #fff;
  padding: 2rem 1rem;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

.footer-section {
  flex: 1 1 250px;
}

.footer-section h3, .footer-section h4 {
  margin-bottom: 1rem;
  font-weight: bold;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-section a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #444;
  margin-top: 2rem;
  padding-top: 1rem;
  font-size: 0.9rem;
  color: #aaa;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-section {
    margin-bottom: 2rem;
  }
}

.about-section {
            background: white;
            padding: 20px;
            margin-bottom: 20px;
            border-radius: 10px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

/* Scrollbar styling for Chrome, Edge, and Brave */
::-webkit-scrollbar {
    width: 10px; /* Width of vertical scrollbar */
    height: 8px; /* Height of horizontal scrollbar */
}

::-webkit-scrollbar-track {
    background: #f1f1f1; /* Track background */
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: #e91e63; /* Thumb (the draggable part) */
    border-radius: 10px;
    border: 2px solid #f1f1f1; /* Adds space around thumb */
}

::-webkit-scrollbar-thumb:hover {
    background-color: #c2185b; /* Thumb color on hover */
}

/* Firefox scrollbar styling */
html {
    scrollbar-width: auto; /* Options: auto | thin | none */
    scrollbar-color: #e91e63 #f1f1f1; /* thumb color | track color */
}

video {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
}

.featured-products {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 20px;
}

.featured-card {
    width: 300px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    text-align: center;
}

.featured-card img,
.featured-card video {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.featured-card h3 {
    margin: 10px 0;
}

.featured-card p {
    color: #555;
    padding: 0 10px;
}

    .view-more-btn {
    padding: 10px 20px;
    margin: 20px auto;
    border: none;
    background-color: #4CAF50;
    color: white;
    cursor: pointer;
    border-radius: 5px;
    display: block;
    text-align: center;
    text-decoration: none;
}

.view-more-btn:hover {
    background-color: #45a049;
}
/* Responsive adjustments */
@media (max-width: 768px) { 
    .featured-products {
        flex-direction: column;
        align-items: center;
    }
    .featured-card {
        width: 90%;
    }
}

