body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: #333;
    background-color: #f4f4f4;
}
.fade-background {
    background-image: url('images/bulk.jpeg');
    background-size: cover;
    background-position: center;
    height: 100vh; /* Adjust as needed */
    opacity: 0.5; /* Adjust to control fade */
    transition: opacity 0.3s ease; /* Optional for transition effect */
}

.fade-background:hover {
    opacity: 50; 
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(90deg, #333, #444);
    color: rgb(255, 255, 255);
    padding: 20px 5%;
    
}


header h1 {
    margin: auto;
    font-weight: 600;

  
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
  
    
}

nav ul li {
    margin: 0 15px;
   
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
  
}

nav ul li a:hover {
    transform: translateY(-10px);
    color: #ff6600;
    text-shadow: 3px 3px rgb(0, 0, 0);

    
}

.hero {
    background: url('hero.jpg') no-repeat center center/cover;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.hero-content {
    background: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 10px;
}

.hero h2 {
    font-size: 48px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 20px;
}

.cta {
    padding: 10px 30px;
    background-color: #ff6600;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cta:hover {
    background-color: #ff8533;
}

.services, .products, .contact {
    padding: 50px 5%;
    text-align: center;
    background-color: white;
    margin: 20px 0;
    border-radius: 10px;
}

.services h2, .products h2, .contact h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #333;
}

.service-cards, .product-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.service-card, .product-item {
    width: 30%;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.service-card:hover, .product-item:hover {
    transform: translateY(-10px);
}

.product-item img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.contact form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact form input, .contact form textarea {
    width: 50%;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.contact form button {
    padding: 10px 30px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact form button:hover {
    background-color: #555;
}

footer {
    background-color: #333;
    color: white;
    padding: 20px 5%;
    text-align: center;
    margin-top: 20px;
    border-radius: 10px;
}