/* add IBM font */
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'IBM Plex Sans', sans-serif;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #000000;
    background-color: #ffffff;
}

header {
    background-color: #ffffff;
    padding: 1rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-link {
    color: #000000;
    text-decoration: none;
}

.logo-link:hover {
    color: #555555;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #555555;
}

.hero {
    /* ... existing styles ... */
    /*background-color: rgba(255, 255, 255, 0.7); /* Adds a semi-transparent overlay */
    /*backdrop-filter: blur(5px); /* Adds a slight blur effect */
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background-size: cover;
    background-position: center;
}



.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: #999999;
    color: #0a192f;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #555555;
}

.vision, .products, .showcase {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 2rem;
}

.vision {
    display: flex;
    align-items: center;
}

.vision-text, .vision-image {
    flex: 1;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.product {
    text-align: center;
}

.showcase-item {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
}

.showcase-text, .showcase-image {
    flex: 1;
}

footer {
    background-color: #ffffff;
    color: #000000;
    text-align: center;
    padding: 2rem;
}

.quick-links a {
    color: #000000;
    text-decoration: none;
    margin: 0 1rem;
}

.quick-links a:hover {
    color: #555555;
}

/* Background Animation */


.pixel-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0; }
    50%, 100% { opacity: 1; }
}

.pixel {
    position: absolute;
    width: 7px;
    height: 7px;
    background-color: rgba(0, 0, 0, 1); /* Semi-transparent black */
    animation: fadeInOut 5s infinite;
}