* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #fff;
    color: #333;
    line-height: 1.6;
}

header {
    background-color: #030303;
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 60px;
}

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

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #ccc;
}

.social-media-icons img {
    height: 30px;
    margin-left: 15px;
}

.hero {
    background-color: #ffffff;
    color: #000000;
    padding: 80px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    font-weight: 300;
}

.cta-button {
    background-color: #fff;
    color: #000;
    padding: 15px 30px;
    border: 2px solid #000;
    border-radius: 5px;
    font-size: 18px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-button:hover {
    background-color: #000;
    color: #fff;
}

.featured-products {
    padding: 50px 20px;
    text-align: center;
    background-color: #f5f5f5;
}

.featured-products h2 {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 40px;
}

.product-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.product-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: box-shadow 0.3s ease;
}

.product-item:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.product-item img {
    height: 100px;
    margin-bottom: 20px;
}

footer {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 20px;
    margin-top: 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form label {
    font-weight: bold;
}

.contact-form input, .contact-form textarea {
    padding: 10px;
    border: 1px solid #000;
    border-radius: 5px;
    background-color: #fff;
}

.contact-form button {
    background-color: #000;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #333;
}

.category-grid {
    display: flex;
    justify-content: space-around;
    padding: 50px 20px;
}

.category {
    text-align: center;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.category:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.category img {
    height: 100px;
    margin-bottom: 20px;
}

.category h3 {
    font-size: 24px;
    font-weight: 300;
    color: #000;
}
/* General styles for the logo */
.logo {
    width: 100px; /* Adjust size as needed */
    height: auto;
    display: inline-block;
    margin: 0; /* No auto-centering for the header */
    vertical-align: middle;
}

/* Hero section logo (different size) */
.hero-logo {
    width: 300px; /* Larger size specifically for the hero section */
    margin-bottom: 20px; /* Add spacing between the logo and the h1 */
}

/* Header Styling */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #fff;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline;
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
}

.social-media-icons {
    display: flex;
    align-items: center;
}

.social-media-icons img {
    width: 30px;  /* Adjust size for social media icons */
    height: auto;
    margin-left: 15px; /* Spacing between icons */
}

/* Hero Section */
.hero {
    background-color: #f5f5f5; /* Light background for contrast */
    padding: 50px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3em;
    color: #000;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 30px;
}

.cta-button {
    padding: 15px 30px;
    background-color: #000;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
}

.cta-button:hover {
    background-color: #333;
}
/* General link styles - Remove underline */
a {
    text-decoration: none; /* Remove underline from all links */
    color: inherit; /* Make sure the link takes the parent element's color */
}

/* Hover state for links */
a:hover {
    text-decoration: none; /* Prevent underline on hover */
    opacity: 0.8; /* Optional: slightly fade on hover */
}

/* Featured Products Section */
.featured-products {
    text-align: center;
    padding: 50px 0;
}

.featured-products h2 {
    font-size: 2em;
    margin-bottom: 30px;
    color: #000;
}

.product-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.product-icons a {
    text-align: center;
    display: inline-block;
}

.product-icons img {
    width: 100px; /* Adjust icon size */
    height: auto;
    transition: transform 0.3s ease; /* Smooth zoom on hover */
}

.product-icons p {
    margin-top: 10px;
    font-size: 1.1em;
    color: #333;
}

.product-icons a:hover img {
    transform: scale(1.1); /* Zoom in on hover */
}

/* Styling for individual product pages links */
.product-icons a:hover p {
    color: #000; /* Change color on hover */
}
/* Hero section for services */
.hero {
    background-color: #f4f4f4;
    text-align: center;
    padding: 60px 20px;
}

.hero h1 {
    font-size: 3em;
    color: #000;
}

.hero p {
    font-size: 1.5em;
    color: #666;
}

/* Services section styling */
.services {
    display: grid;
    place-items: ;
    flex-direction: column;
    gap: 40px;
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto auto;
    justify-content: center;
}

.service {
    background-color: #fff;
    padding: 30px;
    border: 1px solid #ddd;
    border-radius: 8px;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.service h2 {
    font-size: 2em;
    color: #000;
    margin-bottom: 20px;
}

.service p {
    font-size: 1.2em;
    color: #333;
}

/* Footer styling */
footer {
    text-align: center;
    padding: 20px 0;
    background-color: #000;
    color: #fff;
}
/* About section styling */
.about-content {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

.about-section {
    margin-bottom: 50px;
}

.about-section h2 {
    font-size: 2em;
    margin-bottom: 15px;
    color: #000;
    text-align: center;
}

.about-section p {
    font-size: 1.2em;
    color: #666;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.core-values ul {
    list-style: none;
    padding: 0;
}

.core-values ul li {
    font-size: 1.1em;
    margin: 15px 0;
    text-align: center;
    color: #444;
}
/* Centering the Contact Us section */
.contact-us {

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 80vh; /* Full viewport height */
    padding: 20px;
}

.contact-us h1, .contact-us p, .contact-us ul, .contact-us form {
    margin-bottom: 20px;
   
}

.contact-us ul {
    list-style: none;
    padding: 0;
}

.contact-us ul li {
    margin: 10px 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 400px;
}

.contact-form input, 
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form button {
    padding: 10px;
    background-color: #000;
    color: #fff;
    border: none;
    cursor: pointer;
}
.contact-form label {
    align-self: first baseline;
}
.contact-form button:hover {
    background-color: #444;
}
.products-intro {
    text-align: center;
    padding: 50px 20px;
    background-color: #f5f5f5;
}

.products-intro h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #000;
}

.products-intro p {
    font-size: 1.2em;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}
/* Product section styles */
.product-section {
    text-align: center;
    padding: 50px 20px;
}

.product-image {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
}

.product-section p {
    font-size: 1.2em;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;