
/* Scrollable Container */
.cardContainer {
    min-height: 100vh;
    width: 100vw;
    max-width: 100%;
    margin: 0;
    padding: 0;
    border-top: 5px solid #ff007a;
    border-bottom: 5px solid #ff007a;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Individual Card */
.card {
    min-height: 80vh;
    width: 100vw;
    background: linear-gradient(135deg, #222, #333, #444, #ff007a);
    background-size: 300% 300%;
    animation: gradientMove 8s ease infinite;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    border-radius: 20px;
    box-shadow: 0px 8px 25px rgba(255, 0, 150, 0.6);
    transition: transform 0.3s ease-in-out;
    overflow: hidden;
}

.card:hover {
    transform: scale(1.05);
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Card Grid Layouts */
.cardGrid1, .cardGrid2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

/* Image Section */
.card .image {
    flex: 1;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 20px 0 0 20px;
}

/* Text Section */
.card .content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.card h1, h2 {
    font-size: 3rem;
    font-weight: bold;
    text-transform: uppercase;
    background: #ff007a;
    padding: 15px 25px;
    border-radius: 10px;
    display: inline-block;
    animation: neonGlow 1.5s ease-in-out infinite alternate;
    text-align: center;
}

@keyframes neonGlow {
    from { text-shadow: 0 0 10px #ff007a, 0 0 20px #ff007a; }
    to { text-shadow: 0 0 20px #ff007a, 0 0 30px #ff007a; }
}

.card p {
    font-size: 1.3rem;
    line-height: 1.8;
    font-family: 'Poppins', sans-serif;
    margin-top: 15px;
}

/* Pricing Section */
.pricing-section {
    background-color: #111;
    padding: 80px 0;
    text-align: center;
}

.pricing__item {
    background: linear-gradient(135deg, #222, #333, #444, #ff007a);
    background-size: 300% 300%;
    animation: gradientMove 8s ease infinite;
    border-radius: 15px;
    padding: 40px;
    margin: 20px;
    box-shadow: 0px 8px 25px rgba(255, 0, 150, 0.6);
    transition: transform 0.3s ease-in-out;
}

.pricing__item:hover {
    transform: scale(1.05);
}

.pricing__title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #fff;
}

.pricing__price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ff007a;
    margin-bottom: 15px;
}

.pricing__sentence {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #ddd;
}

.pricing__feature-list {
    list-style: none;
    padding: 0;
}

.pricing__feature {
    font-size: 1.1rem;
    margin: 10px 0;
    color: #fff;
}

/* Responsive Design */
@media screen and (max-width: 1000px) {
    .cardContainer {
        min-height: 100%;
    }

    .card {
        flex-direction: column;
        min-height: 100%;
        width: 100vw;
    }

    .card .image {
        display: block;
        width: 100%;
        min-height: 250px;
        border-radius: 20px 20px 0 0;
    }

    .card .content {
        padding: 30px;
    }

    .card h1, h2 {
        font-size: 3.2rem;
        margin-bottom: 1em;
    }

    .card p {
        font-size: 2.5rem;
        margin-bottom: 2em;
    }

    .pricing__item {
        padding: 30px;
    }

    .pricing__title {
        font-size: 2.8rem;
    }

    .pricing__price {
        font-size: 2rem;
    }

    .pricing__sentence {
        font-size: 2rem;
    }

    .pricing__feature {
        font-size: 2rem;
    }
}