/* General Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    text-align: center; /* Center all text */
}

/* Header Section */
header {
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

header .logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

header .logo img {
    height: 300px;
   justify-content: center
}

header .menu {
    list-style: none;
    display: flex;
    gap: 10px; /* Center menu links */
    justify-content: center


}

header .menu a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;

}

/* Hero Section */
.hero {
    background-color: #4CAF50;
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.hero .btn {
    background-color: #fff;
    color: #4CAF50;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 20px;
}

/* About Us Section */
.about {
    text-align: center; /* Center-align About Us section */
}

.about .container {
    max-width: 800px;
    margin: 0 auto;
}

/* Products Section */
.products .product-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    justify-items: center; /* Center-align products grid */
}

.products .product-list .product {
    width: 100%;
    max-width: 300px; /* Set a maximum width for consistency */
    text-align: center; /* Center-align product content */
}

.products .product-list img {
    width: 100%;
    height: auto;
    max-height: 300px; /* Maintain aspect ratio but limit max height */
    object-fit: cover; /* Ensure consistent image display */
    border-radius: 5px; /* Optional: Add rounded corners for images */
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1); /* Optional: Add shadow for better visuals */
}

.products .product-list .product-title {
    margin: 10px 0;
    font-weight: bold;
    font-size: 16px;
}

.products .product-list .product-price {
    color: #4CAF50;
    font-weight: bold;
    font-size: 14px;
}

.products .product-list .product-button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    margin-top: 10px;
    font-size: 14px;
}

.products .product-list .product-button:hover {
    background-color: #45a049;
}


/* Contact Us Section */
.contact {
    text-align: center; /* Center-align Contact Us section */
}

.contact form {
    display: inline-block; /* Center form horizontally */
    text-align: center; /* Ensure form fields are aligned left */
}

.contact form input,
.contact form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.contact form button {

    text-align: center; /* Center-align About Us section */
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;

}

.contact form button:hover {
    background-color: #45a049;
}




/* Footer Section */
footer {
    text-align: center; /* Center-align footer content */
    background-color: #333;
    color: white;
    padding: 20px 0;
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.floating-buttons .call-now,
.floating-buttons .whatsapp {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
}

.floating-buttons .call-now i,
.floating-buttons .whatsapp i {
    font-size: 20px;
}

.floating-buttons .whatsapp {
    margin-right: 5%; /* Pull the WhatsApp button slightly left */
}
