body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}
.header {
    background-color: #fff;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ccc;
}
.logo img {
    height: 100px;
    width: 100px;
    border-radius: 50%;
}
/* Navigation Bar Container */
.nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 15px 20px;
    position: sticky; /* Stick to top on scroll */
    top: 0;
    z-index: 1000;
   
}

/* Navigation Links */
.nav a {
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    color: #000000; /* Default text color */
    padding: 10px 15px;
    position: relative;
    transition: color 0.3s ease; /* Smooth color transition */
}

/* Hover Effect */
.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #ffcc00; /* Underline color */
    transition: width 0.3s ease;
}

.nav a:hover {
    color: #ffcc00; /* Change text color on hover */
}

.nav a:hover::after {
    width: 100%; /* Expand underline on hover */
}

/* Active Link Style */
.nav a.active {
    color: #ffcc00;
    pointer-events: none; /* Prevent clicking the active link */
}

.nav a.active::after {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        flex-wrap: wrap;
        gap: 10px;
    }

    .nav a {
        font-size: 16px;
    }
}


.banner {
    position: relative;
    background: #000;
    color: #fff;
    text-align: center;
    padding: 50px 20px;
}
.banner img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}
.banner h1 {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 36px;
}
    
.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    margin-bottom: 70px;
}
.whatsapp img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
.instagram {
    position: fixed;
    bottom: 20px;
    right: 20px;
}
.instagram img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
.content {
    padding: 20px;
}
.image-container img {
    max-width: 100%;
    height: auto;
    border: 1px solid #ccc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.button-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    padding: 20px;
}
.button {
    background-color: #ff6600;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
}
.button:hover {
    background-color: #e65c00;
}
.container {
    max-width: 1500px;
    margin: auto;
    padding: 20px;
}
.title {
    text-align: center;
    font-size: 24px;
    color: red;
}
.products {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
.product-card {
    width: 220px;
    margin: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    text-align: center;
}
.product-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}
.product-title {
    font-size: 18px;
    color: orange;
    margin: 10px 0;
}
.product-options {
    margin: 10px 0;
}
.product-options label {
    display: block;
    margin: 5px 0;
}
.actions {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
}
.actions button {
    background-color: orange;
    border: none;
    color: white;
    padding: 5px 10px;
    margin: 0 5px;
    cursor: pointer;
}
.actions input {
    width: 30px;
    text-align: center;
}
.view-more {
    margin: 10px 0;
}
.view-more a {
    color: green;
    text-decoration: none;
}
.arrows {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}
.arrow {
    font-size: 20px;
    color: gray;
    cursor: pointer;
}
.arrow:hover {
    color: black;
}
.contact-section {
    background: linear-gradient(to bottom, #31c27c, #3ccae6);
    padding: 50px 20px;
    text-align: center;
    color: #fff;
    width: 100%;
}

.contact-section h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    width: 100%;
}

.form-containe {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.form-field {
    flex: 1;
    min-width: 280px;
    margin-bottom: 20px;
    width: 100%;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.form-field textarea {
    height: 80px;
    width: 100%;
}

.submit-button {
    background-color: #1a8208;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.submit-button:hover {
    background-color: #145c05;
}

.recaptcha {
    margin: 20px 0;
}

footer {
    background-color: #00ff84;
    color: #fff;
    padding: 20px;
    text-align: center;
    font-size: 14px;
    width: 100%;
}

.social-media {
    margin: 10px 0;
    width: 100%;
}

.social-media img {
    width: 30px;
    margin: 0 5px;
}

.footer-links {
    margin-top: 10px;
    width: 100%;
}

.footer-links a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
    width: 100%;
}

.footer-links a:hover {
    text-decoration: underline;
    width: 100%;
}
.container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    width: 100%;
}
h1 {
    text-align: center;
    color: #00000000;
    margin-bottom: 20px;
}
.contact-details, .map {
    margin: 20px 0;
}
.contact-details {
    background-color: #f8f8f8;
    padding: 20px;
    border-radius: 8px;
}
.contact-details h2 {
    margin-bottom: 10px;
    color: #555;
}
.contact-details p {
    margin: 5px 0;
    color: #666;
}
.map iframe {
    width: 100%;
    height: 400px;
    border: 0;
    border-radius: 8px;
}
.features {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #ffffff;
    padding: 20px;
    width: 100%;
}
.feature {
    text-align: center;
    margin: 10px;
}
.feature-icon {
    font-size: 30px;
    margin-bottom: 10px;
}
.feature-title {
    font-size: 18px;
    font-weight: bold;
    color: #000;
}
.feature-description {
    font-size: 14px;
    color: #555;
}
 .cart-table {
        width: 100%;
        border-collapse: collapse;
        margin-bottom: 20px;
    }

    .cart-table th, .cart-table td {
        border: 1px solid #ddd;
        padding: 8px;
        text-align: center;
    }

    .cart-table th {
        background-color: #f4f4f4;
    }

    .buy-now {
        background-color: orange;
        color: white;
        padding: 10px 20px;
        border: none;
        cursor: pointer;
        font-size: 16px;
        margin-top: 30px;
    }

    .buy-now:hover {
        background-color: darkorange;
    }

    .remove-item {
        background-color: red;
        color: white;
        border: none;
        padding: 5px 10px;
        cursor: pointer;
    }

    .remove-item:hover {
        background-color: darkred;
    }
     .content {
        max-width: 900px;
        margin: 0 auto;
        padding: 20px;
        background: #fff; /* White background for content */
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
        border-radius: 10px;
        overflow: hidden;
    }

    h1 {
        text-align: center;
        font-size: 2.5rem;
        color: #333;
        margin-bottom: 20px;
        letter-spacing: 1px; /* Adds spacing between letters */
    }

    .image-container {
        display: flex;
        justify-content: space-around; /* Space out images */
        align-items: center;
        margin-bottom: 30px;
        flex-wrap: wrap; /* Allow images to wrap on smaller screens */
    }

    .image-container img {
        width: 28%;
        border-radius: 12px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Shadow for images */
        transition: transform 0.3s ease-in-out;
    }

    .image-container img:hover {
        transform: scale(1.05); /* Slight zoom on hover */
    }

    p {
        text-align: left;
        font-size: 1.1rem;
        line-height: 1.8;
        color: #555; /* Slightly muted text color */
        margin-bottom: 20px;
    }

    @media (max-width: 768px) {
        h1 {
            font-size: 2rem;
        }

        .image-container img {
            width: 45%; /* Make images larger on smaller screens */
            margin-bottom: 10px;
        }
    }

    @media (max-width: 480px) {
        .image-container img {
            width: 100%; /* Full width images on very small screens */
        }

        p {
            font-size: 1rem;
        }
    }
.foot{
    width: 100%;
}    
/********** Template CSS **********/
