/* Product Page Styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
}

header {
    background-color: #00695c;
    color: white;
    text-align: center;
    padding: 20px 0;
}

header h1 {
    font-size: 2rem;
}

.product-section {
    margin: 20px 0;
    text-align: center;
}

.product-section h2 {
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: #00695c;
}

.product-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 auto;
    max-width: 1200px;
}

.product-card {
    background: white;
    margin: 10px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-10px);  /* Zoom effect */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.product-card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.product-card:hover img {
    transform: scale(1.05); /* Zoom effect on image */
    
}

.product-card h3 {
    margin: 15px 0;
    font-size: 1.2rem;
}

.product-card p {
    font-size: 1rem;
    margin-bottom: 15px;
    
}

button a {
    text-decoration: none;
    color: inherit; /* Inherit the color from the button */
}


.product-card button {
    background-color: #00695c;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s, transform 0.3s;
    
    
}

.product-card button:hover {
    background-color: #004d40;
    transform: scale(1.05);  /* Zoom effect on button */
    
    
}

footer {
    background-color: #00695c;
    color: white;
    text-align: center;
    padding: 10px;
}





/* Navbar Styles */
.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #00695c;
    padding: 10px 20px;
    color: white;
}

.navbar .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    text-transform: uppercase;
    left: 20px;
}

.navbar .nav-links {
    list-style: none;
    display: flex;
    gap: 5px;
    margin: 0;
    padding: 0;
}

.navbar .nav-links li {
    display: inline;
}

.navbar .nav-links a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    padding: 8px 12px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.navbar .nav-links a:hover {
    background-color: #004d40;
    color: #e0f7fa;
}
