body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    background: #f0f2f5;
    color: #333;
/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #0077cc;
    padding: 15px 20px;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-logo {
    font-size: 20px;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #ffdd00;
}

/* Toggle button for mobile */
.nav-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background: #0077cc;
        position: absolute;
        top: 60px;
        right: 0;
        width: 200px;
        padding: 15px;
        border-radius: 8px;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }
}

}

.header {
    background: linear-gradient(to right, #0077cc, #00b4d8);
    padding: 30px;
    text-align: center;
    color: white;
}

.main-logo {
    width: 120px;
    margin-bottom: 10px;
}

.section {
    background: #ffffff;
    margin: 20px;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.section-logo {
    width: 60px;
    margin-bottom: 10px;
}

.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.card {
    background: #e0f7fa;
    padding: 15px;
    border-radius: 10px;
    font-weight: bold;
    color: #0077cc;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.contact input {
    width: 95%;
    padding: 10px;
    margin: 8px 0;
    border-radius: 6px;
    border: 1px solid #ccc;
    background: #f9f9f9;
    color: #333;
}

button {
    background: #00b894;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s ease;
}

button:hover {
    background: #019875;
}

/* Fade-in effect for sections */
.section {
    animation: fadeInUp 1s ease-in-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover animation for product cards */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}
.footer {
    text-align: center;
    padding: 20px;
    color: #777;
    background: #f0f2f5;
}