
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: #333;
    animation: fadeIn 1s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Header Styles */
header {
    position: relative;
    padding: 20px;
    text-align: center;
}

header img {
    max-width: 100px;
    height: auto;
    margin-top: 20px;
}

header h1 {
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid #fff;
    font-size: 2em;
    animation: typing 4s steps(20) infinite, blink-caret 0.5s step-end infinite;
    margin-top: 20px;
}

@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blink-caret {
    from, to {
        border-color: transparent;
    }
    50% {
        border-color: #fff;
    }
}

header p {
    color: #000; /* Black color for "Seeds for a Greener Tomorrow" */
    font-weight: bold;
    margin-top: 10px;
}

/* Responsive Design Adjustments */
@media only screen and (max-width: 767px) {
    header h1 {
        font-size: 20px;
        margin-left: 0;
    }

    header p {
        left: 0;
        margin-top: 5px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
    header h1 {
        font-size: 24px;
        margin-left: 0;
    }

    header p {
        left: 0;
        margin-top: 5px;
    }
}


footer p {
    animation: fadeOut 1s 1s forwards;
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}


/* Common Styles */
nav {
    background-color: #333;
    padding: 10px;
    text-align: center;
}

nav a {
    color: #fff;
    text-decoration: none;
    padding: 10px;
    margin: 0 10px;
}

/* PC Styles */
@media only screen and (min-width: 768px) {
    nav {
        display: flex;
        justify-content: space-around;
        align-items: center;
    }
}

/* Mobile and Tablet Styles */
@media only screen and (max-width: 767px) {
    nav {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #333;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    top: 100%;
    left: 0;
    width: 200px;
}

.dropdown-content a {
    color: #fff;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #555;
}

.dropdown:hover .dropdown-content {
    display: block;
}
        .product-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            padding: 20px;
        }

        .product-card {
            width: 300px;
            margin: 20px;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            text-align: center;
            background-color: #fff;
            transition: transform 0.3s ease-in-out;
        }

        .product-card:hover {
            transform: scale(1.05);
        }

        .product-image {
            max-width: 100%;
            height: auto;
            border-radius: 4px;
            margin-bottom: 10px;
        }

        footer {
            background-color: #333;
            color: #fff;
            padding: 10px;
            text-align: center;
            position: fixed;
            width: 100%;
            bottom: 0;
        }

    .slide {
        min-width: calc(100vw - 6in); /* Set the minimum width of each slide with a margin of 3 inches on each side */
    }
    