body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}
.header {
    background-color: #00ff44;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ccc;
}
.logo img {
    height: 100px;
    width: 120px;
}
/* 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: #000000; /* Underline color */
    transition: width 0.3s ease;
}

.nav a:hover {
    color: #0040ff; /* Change text color on hover */
}

.nav a:hover::after {
    width: 100%; /* Expand underline on hover */
}
.nav a.active {
    color: #FFEB3B;  /* Yellow color for active link */
    border-bottom: 2px solid #FFEB3B; /* Underline the active link */
}
/* Active Link Style */
.nav a.active {
    color: #00ff;
    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;
    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;
}
.whatsapp img {
    width: 50px;
    height: 50px;
}
.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: #00ffdd;
    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: 34px;
    color: rgb(0, 255, 102);
}
.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: rgb(0, 106, 255);
    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: rgb(229, 255, 0);
    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 */
/* Contact Section */
/* General Contact Section Style */
/* General Contact Section Style */
.contact-section {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background-color: #f9f9f9; /* Light background */
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0; /* Subtle border around the section */
}

.contact-section h2 {
    text-align: center;
    color: #004d40; /* Dark teal color */
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: bold;
}

/* Form container that holds all fields */
.form-container {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Space between form fields */
}

/* Individual form field styling */
.form-field {
    display: flex;
    flex-direction: column;
}

.form-field input,
.form-field textarea {
    padding: 15px;
    font-size: 1rem;
    border: 2px solid #4caf50; /* Green border */
    border-radius: 8px;
    margin-top: 5px;
    background-color: #ffffff; /* White background */
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: #ff9800; /* Orange border on focus */
    box-shadow: 0 0 10px rgba(255, 152, 0, 0.5); /* Glowing effect */
    outline: none;
}

/* Textarea Specific Styles */
textarea {
    height: 150px;
    resize: vertical; /* Allows resizing vertically */
}

/* Checkbox styling */
.recaptcha {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #757575; /* Dark grey for the checkbox label */
}

.recaptcha input {
    width: auto;
}

/* Submit Button Styling */
.submit-button {
    width: 100%;
    padding: 14px;
    background-color: #4caf50; /* Green background */
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    color: white; /* White text */
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.submit-button:hover {
    background-color: #388e3c; /* Darker green on hover */
    transform: translateY(-2px); /* Slight hover effect */
}

.submit-button:active {
    background-color: #2c6e2f; /* Even darker green on click */
}

/* Responsive Design */
@media (max-width: 600px) {
    .contact-section {
        padding: 20px;
    }

    .submit-button {
        font-size: 1rem;
        padding: 12px;
    }
}




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{

    color: #07a7cbec;
}
 .cart-table {
        width: 100%;
        border-collapse: collapse;
        margin-bottom: 20px;
    }

    .cart-table th, .cart-table td {
        border: 1px solid #02cff8;
        padding: 8px;
        text-align: center;
    }

    .cart-table th {
        background-color: #ffea00;
    }

    .buy-now {
        background-color: rgb(1, 255, 1);
        color: white;
        padding: 10px 20px;
        border: none;
        cursor: pointer;
        font-size: 16px;
        margin-top: 30px;
    }

    .buy-now:hover {
        background-color: rgb(229, 255, 0);
    }

    .remove-item {
        background-color: rgb(183, 0, 255);
        color: white;
        border: none;
        padding: 5px 10px;
        cursor: pointer;
    }

    .remove-item:hover {
        background-color: rgb(2, 122, 120);
    }
     .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: #3eef08;
        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: #00bfff; /* 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%;
}    
.remove {
    background-color: #31b401;  /* Red-Orange background */
    color: white;  /* Text color */
    border: none;
    padding: 8px 15px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.remove:hover {
    background-color: #01b72c;  /* Darker shade of red-orange */
    transform: scale(1.05);  /* Slight scaling effect when hovered */
}

/********** Template CSS **********/
