/* Global Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f4f7fc;
}

header {
    background-color: #0056b3;
    padding: 20px;
    color: white;
    text-align: center;
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

/* Animations */
.fade-in {
    animation: fadeIn 1.5s ease-out;
}

.slide-in {
    animation: slideIn 1s ease-out;
}

/* Fade-In Animation */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Slide-In Animation */
@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Home Section */
#home {
    background-color: #007bff;
    color: white;
    padding: 100px 0;
}

#home h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

#home p {
    font-size: 20px;
}

/* About Section */
#about {
    background-color: #f0f8ff;
    color: #333;
    padding: 80px 20px;
}

#about h2 {
    font-size: 28px;
}

/* Products Section */
#products {
    background-color: #ffffff;
    padding: 80px 20px;
}

#products h2 {
    font-size: 28px;
    margin-bottom: 40px;
}

.product-item {
    display: inline-block;
    width: 250px;
    margin: 20px;
    padding: 20px;
    border: 1px solid #ddd;
    text-align: center;
    background-color: #f0f8ff;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.product-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.product-item h3 {
    font-size: 22px;
    margin-top: 10px;
}

.product-item button {
    background-color: #0056b3;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 10px;
}

.product-item button:hover {
    background-color: #004085;
}

/* Contact Section */
#contact {
    background-color: #f0f8ff;
    padding: 80px 20px;
}

#contact form {
    display: block;
    margin: 0 auto;
    width: 50%;
    text-align: left;
}

#contact form input, #contact form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #ddd;
}

#contact form button {
    background-color: #0056b3;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

#contact form button:hover {
    background-color: #004085;
}

/* Footer */
footer {
    background-color: #007bff;
    color: white;
    padding: 10px;
    text-align: center;
}
