/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

/* Header Styles */
header {
    background-color: #333;
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.navbar .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f9f9f9;
    text-decoration: none;
}

.nav-links {
    display: none;
    flex-direction: column;
    list-style: none;
    position: absolute;
    top: 100%;
    right: 1rem;
    background-color: #333;
    padding: 1rem;
    border-radius: 5px;
    color: white;
}

.nav-links li {
    margin: 0.5rem 0;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ff6f61;
}

.nav-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: white;
}

.nav-toggle.active + .nav-links {
    display: flex;
}

/* Home Section */
.home {
    background: linear-gradient(135deg, #ff6f61, #ff3d2e);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.home-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.home-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #ff6f61;
    color: white;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #ff3d2e;
}

/* About Section */
.about {
    padding: 3rem 1rem;
    background-color: #f4f4f4;
    text-align: center;
}

.about h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
    color: #333;
}

.about p {
    font-size: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 3rem 1rem;
    background-color: white;
    text-align: center;
}

.services h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
    color: #333;
}

.service-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-item {
    background-color: #f4f4f4;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 250px;
    text-align: center;
}

.service-item h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    color: #333;
}

/* Contact Section */
.contact {
    padding: 3rem 1rem;
    background-color: #f4f4f4;
    text-align: center;
}

.contact h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
    color: #333;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.contact-form button {
    display: block;
    width: 100%;
    padding: 0.75rem;
    background-color: #ff6f61;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #ff3d2e;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1rem 0;
    margin-top: 3rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
    }

    .nav-toggle {
        display: block;
    }

    .nav-links {
        position: static;
        width: 100%;
        flex-direction: column;
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .service-list {
        flex-direction: column;
        align-items: center;
    }
}

ul {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically (if necessary) */
    list-style: none;
    padding: 0;
    text-align: center;
}

.testimonial-container {
    max-width: 800px;
    margin: auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.testimonial {
    margin-bottom: 20px;
    padding: 20px;
    border-left: 5px solid #007bff;
    background: #f9f9f9;
    border-radius: 8px;
    text-align: left;
}

.testimonial p {
    font-size: 16px;
    color: #333;
}

.testimonial h4 {
    margin-top: 10px;
    color: #007bff;
    font-size: 18px;
}

.testimonial small {
    color: #666;
}
a{
    color: white;
}


iframe {
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 10px;
}


h2 {
    color: #007bff;
}

.shop-container {
    max-width: 1000px;
    margin: auto;
}

.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
}

.product {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.product img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.product h3 {
    margin: 10px 0;
    color: #333;
}

.product p {
    color: #555;
    font-size: 14px;
}

.product span {
    font-size: 18px;
    font-weight: bold;
    color: #28a745;
}

.add-to-cart {
    background: #007bff;
    color: white;
    border: none;
    padding: 8px 15px;
    margin-top: 10px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 14px;
}

.add-to-cart:hover {
    background: #0056b3;
}

/* Cart Section */
.cart {
    margin-top: 30px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: auto;
    text-align: left;
}

.cart h3 {
    margin-bottom: 15px;
}

.cart-items {
    list-style: none;
    padding: 0;
}

.cart-items li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.cart-total {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-top: 10px;
}

.checkout-btn {
    background: #28a745;
    color: white;
    border: none;
    padding: 10px;
    width: 100%;
    cursor: pointer;
    margin-top: 10px;
    border-radius: 5px;
    font-size: 16px;
}

.checkout-btn:hover {
    background: #218838;
}
