* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Roboto', sans-serif;
    color: #333;
  }
  
  /* Navbar styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background-color: #1a1a1a;
    color: #fff;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 10;
  }
  
  .navbar-logo {
    font-size: 1.5em;
    font-weight: bold;
  }
  
  .navbar-menu {
    list-style-type: none;
    display: flex;
    gap: 20px;
  }
  
  .navbar-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
  }
  
  .navbar-menu a:hover {
    color: #ff4d4d;
  }
  
  /* Dropdown Menu Styles */
  .dropdown {
    position: relative;
  }
  
  .dropdown-toggle::after {
    content: ' ▼';
    font-size: 0.6em;
  }
  
  .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #333;
    padding: 10px 0;
    min-width: 150px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    z-index: 100;
  }
  
  .dropdown-menu li {
    display: block;
  }
  
  .dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    transition: background 0.3s;
  }
  
  .dropdown-menu li a:hover {
    background-color: #444;
  }
  
  /* Show dropdown on hover */
  .dropdown:hover .dropdown-menu {
    display: block;
  }
  
  
  #hero {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: url('https://images.pexels.com/photos/3678428/pexels-photo-3678428.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5); /* Darken the background */
    backdrop-filter: blur(10px); /* Slight blur */
  }
  
  .hero-content {
    animation: fadeIn 1.5s ease;
  }
  
  .hero-title {
    font-size: 3em;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
  }
  
  .hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 30px;
  }
  
  .cta-button {
    padding: 15px 30px;
    color: #fff;
    background-color: #ff4d4d;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
  }
  
  .cta-button:hover {
    background-color: #ff3333;
  }
  
  .content-section {
    padding: 60px 30px;
    text-align: center;
  }
  
  .product-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    margin-top: 30px;
  }
  
  .product-card {
    background-color: #f4f4f4;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    transition: transform 0.3s;
  }
  
  .product-card:hover {
    transform: scale(1.05);
  }
  
  .footer {
    text-align: center;
    padding: 15px;
    background-color: #1a1a1a;
    color: #fff;
  }
  
  /* Keyframe animation for fade-in */
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  /* Products CSS */
  .products-page {
    padding: 20px;
    text-align: center;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.product-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.product-card .product-info {
    padding: 10px;
    background-color: #fff;
    text-align: center;
}

.product-card h2 {
    font-size: 1.2em;
    margin: 10px 0;
}

.product-card p {
    font-size: 1em;
    color: #666;
}

.product-card:hover {
    transform: scale(1.05);
}
.product-page {
    display: flex;
    padding: 20px;
    gap: 20px;
}

.product-gallery {
    flex: 1;
}

.product-gallery .main-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.thumbnail-gallery {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.thumbnail-gallery img {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.thumbnail-gallery img:hover {
    transform: scale(1.1);
}

.product-details {
    flex: 1;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.product-details h1 {
    font-size: 2em;
    margin-bottom: 10px;
}

.product-details .price {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 20px;
}

.product-details .description {
    font-size: 1em;
    color: #666;
    margin-bottom: 20px;
}

.add-to-cart {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1em;
    color: #fff;
    background-color: #007bff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.add-to-cart:hover {
    background-color: #0056b3;
}
/* About Us Section Styles */
.about-section {
    padding: 60px 20px;
    background-color: #f4f4f4;
  }
  
  .about-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  
 
  .about-content {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  
  .about-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
  }
  
  .about-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .about-cta-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #007bff;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  
  .about-cta-button:hover {
    background-color: #0056b3;
  }
  
  /* Animation when in view */
  .reveal {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Responsive Styles */
  @media (min-width: 768px) {
    .about-container {
      flex-direction: row;
      text-align: left;
    }
  
    .about-content {
      flex: 1;
    }
  }
  
  @media (min-width: 1024px) {
    .about-content h2 {
      font-size: 3rem;
    }
  
    .about-content p {
      font-size: 1.1rem;
    }
  }
  
  /*products page*/
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f7f7f7;
    color: #333;
}

header {
    background-color: #333;
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo h1 {
    font-size: 24px;
    margin: 0;
}

header nav ul {
    list-style-type: none;
    display: flex;
    gap: 15px;
}

header nav ul li {
    display: inline;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.product-section {
    padding: 50px 20px;
    text-align: center;
}

.product-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.product-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    justify-items: center;
}

.product-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    width: 300px;
}

.product-card:hover {
    transform: scale(1.05);
}

.product-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.product-info {
    padding: 15px;
}

.product-info h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.product-info p {
    font-size: 18px;
    color: #e60000;
    margin-bottom: 15px;
}

.view-product {
    display: inline-block;
    padding: 10px 15px;
    background-color: #333;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.view-product:hover {
    background-color: #e60000;
}

footer {
    background-color: #333;
    color: white;
    padding: 20px;
    text-align: center;
}

@media (max-width: 768px) {
    header nav ul {
        flex-direction: column;
        align-items: center;
    }

    .product-container {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}
