/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background: url('image/ens-banner.jpg') no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
}

/* Navigation Bar */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(rgba(60, 126, 250, 1), rgba(255, 251, 7, 1));
    color: white;
    padding: 5px 20px;
    position: fixed;
    width: 97%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.logo {
    font-size: 1.5em;
    font-weight: bold;
}

.icon {
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 75%;
    padding: 5px;
}

.nav-links {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 20px;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 1em;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ff6600;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    font-size: 2em;
    cursor: pointer;
}

/* Header */
header {
    margin-top: 70px; /* Adjust for fixed navbar */
    background: blue;
    color: white;
    padding: 40px 10px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    color: white;
    background: #ff6600;
    text-decoration: none;
    margin-top: 10px;
    border-radius: 5px;
}

/* Featured Equipment */
#featured {
    padding: 20px;
    background: yellow;
}

.equipment-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 3 boxes per row */
    gap: 10px;
    padding: 10px;
    max-width: 1200px;
    margin: 0 auto;
}

.equipment-item {
    background: rgba(252, 252, 252, 0.8); /* semi-transparent card */
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.equipment-item img {
    width: 400px;
    border-radius: 10px;
    height: auto;
}

/* How It Works */
#how-it-works {
    background: #eee;
    padding: 20px;
}

.steps {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.step {
    background: white;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
}

/* Footer */
footer {
    background: gray;
    color: white;
    padding: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #222;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .equipment-list {
        flex-direction: column;
    }

    .steps {
        flex-direction: column;
    }
}
