/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

/* Navbar */
.navbar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    background-color: #007bff;
    padding: 15px 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar a {
    color: white;
    text-decoration: none;
    margin: 5px 15px;
    font-size: 1rem;
    font-weight: bold;
    transition: color 0.3s ease;
}

.navbar a:hover {
    color: #ffdd57;
}

.navbar .logo {
    max-width: 120px;
    height: auto;
}

/* Welcome Message */
#welcome-message {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.welcome-box {
    background: white;
    padding: 30px 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    max-width: 400px;
}

.welcome-box p {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #333;
}

#welcome-button {
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 25px;
    padding: 12px 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

#welcome-button:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

/* Product Grid (PC Styles) */
.product-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 20px auto;
    padding: 0 20px;
}

/* Product Card (PC Styles) */
.product {
    border: none;
    border-radius: 15px;
    padding: 20px;
    background: linear-gradient(145deg, #ffffff, #e6e6e6);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    flex: 1 1 calc(33.33% - 20px); /* 3 products per row */
    max-width: calc(33.33% - 20px);
    box-sizing: border-box;
}

.product:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
}

.product img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.product:hover img {
    transform: scale(1.05);
}

.product h2 {
    font-size: 1.6rem;
    margin: 10px 0;
    color: #007bff;
    font-weight: bold;
    transition: color 0.3s ease;
}

.product:hover h2 {
    color: #0056b3;
}

.product p {
    font-size: 1.2rem;
    color: #555;
    margin: 10px 0;
    font-weight: 500;
}

button {
    background-color: #007bff;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

button:hover {
    background-color: #0056b3;
    transform: scale(1.1);
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #007bff;
    color: white;
    font-size: 1rem;
    margin-top: 40px;
}

/* Media Queries for Mobile */
@media (max-width: 480px) {
    /* Navbar */
    .navbar {
        flex-direction: column;
        align-items: center;
    }

    .navbar a {
        font-size: 0.9rem;
    }

    /* Product Grid (Mobile Styles) */
    .product-grid {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    /* Product Card (Mobile Styles) */
    .product {
        flex: 1 1 100%; /* Full width for mobile */
        max-width: 100%;
        transform: scale(0.7); /* Scale down products */
        transform-origin: center;
    }

    .product img {
        width: 70%; /* Adjust image size */
    }

    .product h2 {
        font-size: 1.4rem; /* Adjust font size */
    }

    .product p {
        font-size: 1rem;
    }

    button {
        font-size: 0.9rem;
        padding: 10px 20px;
    }

    /* Footer */
    footer {
        font-size: 0.9rem;
    }
}
.testimonials {
    text-align: center;
    padding: 50px 20px;
    background-color: #f1f1f1;
    margin-top: 40px;
    border-top: 2px solid #ddd;
}

.testimonials h2 {
    font-size: 2rem;
    color: #007bff;
    margin-bottom: 30px;
}

.testimonial {
    margin: 20px auto;
    max-width: 600px;
    text-align: left;
}

.testimonial .message {
    background-color: #007bff;
    color: white;
    padding: 20px;
    border-radius: 15px;
    position: relative;
    margin-bottom: 15px;
    font-style: italic;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.testimonial .message:before {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 20px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 10px 0 0;
    border-color: #007bff transparent transparent transparent;
}

.testimonial h3 {
    margin-top: 10px;
    font-size: 1rem;
    color: #333;
    font-weight: bold;
    text-align: right;
}