body {
    
    background-color: #f7f7f7;

    margin: 0;
    padding: 0;
}
.products-container {
    text-align: center;
    padding: 80px 20px;
    background: #ffffff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    margin: 30px auto;
    max-width: 1200px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.products-container h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: rgb(2, 109, 20);
    margin-bottom: 20px;
}

.products-container p {
    font-size: 1.2rem;
    color: rgb(2, 109, 20);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.product-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    width: 300px;
    overflow: hidden;
    position: relative;
    text-align: center;
    padding: 20px;
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 16px 16px 0 0;
}

.product-card h2 {
    font-size: 1.8rem;
    color: #29632b;
    margin: 15px 0 10px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.product-card p {
    font-size: 1rem;
    color: rgb(2, 109, 20);
    margin-bottom: 20px;
    line-height: 1.5;
}

.product-card .btn {
    display: inline-block;
    text-decoration: none;
    background-color: #1a73e8;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(255, 254, 254, 0.2);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.product-card .btn:hover {
    background-color: #529173;
    transform: translateY(-3px);
}

.product-card:hover h2 {
    color: rgba(51, 161, 93, 0.9);

}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeIn 3s ease forwards;
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in {
    opacity: 0;
    transform: translateX(-30px);
    animation: slideIn 2.5s ease forwards;
}

@keyframes scaleIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    animation: scaleIn 1.2s ease forwards;
}

.footer {
    text-align: center;
    font-size: 10px;
    color: #000000;
    margin-top: 20px;
    padding: 10px 0;
    background-color: #ffffff;
    border-top: 1px solid #ddd;
}
