
/** ADD YOUR AWESOME CODES HERE **/

/* Hero Video Section */
.hero-video-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.hero-video-section .overlay-background {
    z-index: 1;
}

.hero-video-content {
    position: relative;
    z-index: 2;
}

.hero-video-content h1 {
    font-weight: 500;
    font-size: 64px;
    color: #fff;
    margin-bottom: 20px;
}

.hero-video-content p {
    font-size: 18px;
    color: #fff;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .hero-video-content h1 {
        font-size: 36px;
    }
}

/* Seeds Page */
.seeds-products-row {
    margin-top: 40px;
    margin-bottom: 50px;
    gap: 20px 0;
}

.seeds-product-card {
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.seeds-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.14);
}

.seeds-product-card img {
    max-height: 320px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    margin-bottom: 16px;
}

.seeds-product-title {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-top: 10px;
}

.seeds-video-wrap {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 30px rgba(0,0,0,0.15);
}

.seeds-video-wrap video {
    display: block;
    width: 100%;
}