﻿@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.fadeInUp {
    animation-name: fadeInUp;
}

.pulse:hover {
    animation-name: pulse;
}

/* Modern Slider Styles */
.carousel-item {
    height: 80vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
}

    .carousel-item img {
        object-fit: cover;
        height: 100%;
        width: 100%;
    }

.OnBannerText {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
}

    .OnBannerText h4 {
        font-size: 3rem;
        /*font-weight: 700;*/
        color: #90d51c;
        text-shadow: 2px 2px 8px #034813;
        margin-bottom: 20px;
    }

    .OnBannerText h5 {
        font-size: 1.5rem;
        color: #fff;
        margin-bottom: 30px;
        text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
    }

.btn-banner {
    background: linear-gradient(45deg, #90d51c, #28a745);
    border: none;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

    .btn-banner:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    }

/* Mission/Vision/Value Cards */
.value-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

    .value-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    }

.value-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #90d51c;
    background: linear-gradient(45deg, #90d51c, #28a745);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.value-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.value-content {
    color: #666;
    font-size: 1rem;
}

/* Product Section */
.product-section {
    background: #f9f9f9;
    padding: 80px 0;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    /*border: 1px solid #ddd;*/
}

    .product-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }

.product-img {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #28a74533;
}

    .product-img img {
        max-height: 100%;
        max-width: 100%;
        object-fit: contain;
        /*aspect-ratio: 1 / 1.5;*/
    }

.product-body {
    padding: 20px;
    text-align: center;
}

.product-category {
    color: #90d51c;
    font-weight: 600;
    margin-bottom: 5px;
}

.product-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.product-price {
    font-weight: 700;
    color: #28a745;
    margin-bottom: 5px;
}

    .product-price strike {
        color: #999;
        margin-right: 10px;
    }

.product-bv {
    color: #666;
    font-size: 0.9rem;
}

/* Why Choose Us Section */
.feature-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: none;
}

    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #90d51c;
    background: linear-gradient(45deg, #90d51c, #28a745);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.feature-content {
    color: #666;
    font-size: 1rem;
}

/* Affiliate Steps */
.affiliate-steps {
    background: url(../images/ref_1.jpg);
    background-size: cover;
    padding: 80px 0;
    color: white;
}

.step-card {
    text-align: center;
    padding: 30px 20px;
    background: url(../images/ref_1.jpg);
    background-size: cover;
    position: relative;
    /* border: 1px solid var(--green); */
    box-shadow: 0px 0px 6px 1px var(--green);
    margin-bottom: 20px;
    border-radius: 15px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #28a745;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #28a745;
}

.step-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.step-card p {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0;
}
/* Repurchase Plan Section */
.repurchase-plan {
    background: #f9f9f9;
    padding: 80px 0;
}

.plan-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    border: none;
}

    .plan-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }

.plan-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #90d51c;
    background: linear-gradient(45deg, #90d51c, #28a745);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.plan-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.plan-content {
    color: #666;
    font-size: 1rem;
    margin-bottom: 20px;
}

.plan-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

    .plan-features li {
        padding: 5px 0;
        position: relative;
        padding-left: 30px;
    }

        .plan-features li:before {
            content: "\f00c";
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            color: #28a745;
            position: absolute;
            left: 0;
        }

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/bg1.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    color: #ddd;
}

.btn-cta {
    background: linear-gradient(45deg, #90d51c, #28a745);
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

    .btn-cta:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.3);
        color: white;
    }

/* Section Headings */
.section-heading {
    text-align: center;
    margin-bottom: 60px;
}

    .section-heading h4 {
        font-size: 2rem;
        font-weight: 700;
        color: #333;
        position: relative;
        display: inline-block;
        padding-bottom: 15px;
    }

        .section-heading h4:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(45deg, #90d51c, #28a745);
        }

/* Responsive Adjustments */
@media (max-width: 768px) {
    .carousel-item {
        height: 60vh;
    }

    .OnBannerText h4 {
        font-size: 2rem;
    }

    .OnBannerText h5 {
        font-size: 1.2rem;
    }
}

.OnBannerText {
    overflow: hidden;
    background: #00000017;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    height: 100%;
    padding-top: 10%;
}
