@keyframes gradientRotate {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}


.grid-container {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr;
}

.feature-card {
    position: relative;
    background-color: #fff;
    border: 2px solid transparent;
    border-radius: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 6px 6px rgba(0, 0, 0, 0.1);
    border-color: #92ffc0;
}

.feature-card h3 {
    margin-top: 10px;
    color: #333;
}

.feature-card p {
    margin: 0;
    color: #666;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
   background: linear-gradient(45deg, #92ffc0, #ffcc66, #66ccff, #66ff99);
    background-size: 400% 400%;
    z-index: -1;
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.5s;
    animation: gradientRotate 10s ease infinite;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    font-size: 50px;
    color: #92ffc0;
    transition: color 0.3s ease;
}

.feature-card:hover .feature-icon {
    color: #6bffb0;
}

@media (min-width: 600px) {
    .grid-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 900px) {
    .grid-container {
        grid-template-columns: 1fr 1fr;
    }
}


h2 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

.styled-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 18px;
    text-align: left;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border-radius: 10px;
    background: #fff;
}

.styled-table thead tr {
    background-color: #92ffc0;
    color: #ffffff;
    text-align: left;
}

.styled-table th,
.styled-table td {
    padding: 12px 15px;
    position: relative;
}

.styled-table tbody tr {
    border-bottom: 1px solid #dddddd;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.styled-table tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
}

.styled-table tbody tr:last-of-type {
    border-bottom: 2px solid #92ffc0;
}

.styled-table tbody tr:hover {
    background-color: #92ffc0;
    color: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.styled-table tbody tr:hover td::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
   background: linear-gradient(45deg, #92ffc0, #ffcc66, #66ccff, #66ff99);
    background-size: 400% 400%;
    z-index: -1;
    filter: blur(10px);
    opacity: 1;
    animation: gradientRotate 10s ease infinite;
}

@keyframes gradientRotate {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.icon {
    font-size: 18px;
    margin-right: 10px;
    vertical-align: middle;
    color: #92ffc0;
    transition: color 0.3s ease;
}

.styled-table tbody tr:hover .icon {
    color: #fff;
}

.rounded-list {
    list-style: none;
    padding: 0;
}

.rounded-list li {
    background: #fff;
    margin: 10px 0;
    padding: 10px 20px;
    border-radius: 25px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    position: relative;
}

.rounded-list li:hover {
    background-color: #92ffc0;
    color: #000000;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.rounded-list li:hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
   background: linear-gradient(45deg, #92ffc0, #ffcc66, #66ccff, #66ff99);
    background-size: 400% 400%;
    z-index: -1;
    filter: blur(15px);
    opacity: 1;
    animation: gradientRotate 10s ease infinite;
}
@keyframes gradientRotate {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.enhanced-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 800px;
    margin: 0 auto;
}

.enhanced-list li {
    background: #fff;
    margin: 10px 0;
    padding: 20px;
    border-radius: 25px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.enhanced-list li:hover {
    background-color: #92ffc0;
    color: #000000;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.enhanced-list li:hover::before {
    opacity: 1;
}

.enhanced-list li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 25px;
   background: linear-gradient(45deg, #92ffc0, #ffcc66, #66ccff, #66ff99);
    background-size: 400% 400%;
    z-index: -1;
    filter: blur(15px);
    opacity: 0;
    transition: opacity 0.5s;
    animation: gradientRotate 10s ease infinite;
}

.enhanced-list b {
    font-size: 20px;
    display: block;
    margin-bottom: 5px;
}

.icon {
    font-size: 18px;
    margin-right: 10px;
    vertical-align: middle;
    color: #92ffc0;
    transition: color 0.3s ease;
}

.enhanced-list li:hover .icon {
    color: #000000;
}


/* Keyframes for gradient animation */
@keyframes gradientRotate {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Slider container styles */


.slide {
    flex: 0 0 auto;
    scroll-snap-align: start;
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.slide img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 25px;
    transition: transform 0.5s ease, box-shadow 0.3s ease;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 25px;
   background: linear-gradient(45deg, #92ffc0, #ffcc66, #66ccff, #66ff99);
    background-size: 400% 400%;
    z-index: -1;
    filter: blur(15px);
    opacity: 0;
    transition: opacity 0.5s;
    animation: gradientRotate 10s ease infinite;
}

.slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.slide:hover::before {
    opacity: 1;
}

.slide:hover img {
    transform: scale(1.05);
}



/* Gradient background for the header */
.themed-header {
    background: linear-gradient(90deg, rgba(149,28,145,1) 0%, rgba(36,171,93,1) 20%, rgba(179,44,54,1) 40%, rgba(116,39,182,1) 61%, rgba(23,23,171,1) 84%, rgba(0,190,228,1) 100%);
    background-size: 400% 400%;
    animation: gradientBackground 20s ease infinite;
    color: white;
    text-align: center;
    padding: 20px;
    border-radius: 25px;
    margin: 5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Animation for the gradient background */
@keyframes gradientBackground {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Header h1 styling */
.themed-header h1 {
    font-size: 30px;
   
    margin: 0;
}








.variant-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;

}

.variant-card {
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    padding: 20px;
    text-align: center;
    width: calc(33.333% - 40px);
    margin: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
    color: white;
    position: relative;
    overflow: hidden;
}

.variant-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
    transition: transform 0.3s;
}

.variant-card:hover::before {
    transform: translateX(50%);
}

.variant-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.variant-name {
    color: #d6e5ec;
    font-size: 24px;
    margin-bottom: 5px;
}

.variant-price {
    font-size: 50px;
    margin-bottom: 20px;
}

.variant-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.variant-features li {
    font-size: 16px;
    margin: 10px 0;
}

.basic-card {
    background: linear-gradient(45deg, #ec4747, #c2602b);
}

.popular-card {
    background: linear-gradient(45deg, #6a5acd, #4b0082);
}

.custom-card {
    background: linear-gradient(45deg, #066306, #027235);
}

@media (max-width: 768px) {
    .variant-card {
        width: calc(50% - 40px);
    }
}

@media (max-width: 480px) {
    .variant-card {
        width: calc(100% - 40px);
    }
}

#scrollButton {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(45deg, #0cb365, #067a32);
    border: none;
    border-radius: 5px;
    color: white;
    padding: 15px 20px;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s, opacity 0.3s;
    z-index: 1000; /* Ensure the button is above other elements */
}

#scrollButton:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}