﻿@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


.pricing-container {
    text-align: center;
    padding: 50px 0px;
}

.cards {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    flex-wrap: wrap;
    /*                        border:2px solid green;*/
    /*                        width:100%;*/
}

.cards-container {
    /*            border:2px solid black;*/
    margin: auto;
    /*                        margin-bottom:2rem;*/
}
/*        .subContainer{
            flex-wrap:nowrap
        }*/
.card {
    background-color: #ffffff;
    /*            padding: 20px;*/
    padding-top: 0px !important;
    width: 450px !important;
    text-align: center;
    border-radius: 20px;
    background: linear-gradient(45deg, #cacaca, #f0f0f0);
    box-shadow: rgba(0, 0, 0, 0.15) 2.4px 2.4px 3.2px;
    transition: 0.3s ease-in-out;
    /*            height: 26rem;*/
    /*            margin-bottom:2rem;*/
    /*            border: 2px solid blue;*/
    font-family: 'Open Sans';
}

.card_box {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.card_body {
    /* border: 1px solid green; */
    display: flex;
    flex-wrap: wrap;
    /* padding: 1rem; */
    justify-content: center;
    align-items: center;
    margin: 20px 0px;
}
/**/
.card h2 {
    text-decoration: none;
    font-size: 1.2rem;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-around;
    padding-bottom: 10px;
    background: linear-gradient(currentColor 0 0) left var(--p, 200%) bottom 0px, linear-gradient(currentColor 0 0) left var(--p,-100%) bottom 6px;
    background-size: 100px 2px;
    background-repeat: no-repeat;
    transition: 0.5s;
    margin-top: 20px;
}

.pricing-card:hover h3 {
    --p: 50.1%
}

.card h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: #061051; /* base color */
    padding: 5px 8px;
    position: relative;
    transition: 0.4s ease;
    line-height: 1.6em;
}

    .card h3::before {
        content: "";
        position: absolute;
        inset: 0;
        background: #f5f5f5; /* hover background color */
        transform: scaleX(0);
        transform-origin: left;
        transition: 0.4s ease;
        z-index: -1;
        border-radius: 6px; /* optional rounded corners */
    }

.card:hover h3::before {
    transform: scaleX(1);
}


.double-4:hover {
    --p: 50.1%
}

.article {
    margin-bottom: 0rem !important;
}

.card li {
    font-size: 0.9rem;
    margin: 5px 0;
    text-align: left;
    /*            margin-left:5px*/
}

.articles li::before {
    content: "✔" !important;
    gap: 3px;
    color: #fc6060;
}

.articles2 li::before {
    content: "✔";
    margin: 3px;
    color: #fc6060;
}

.button {
    width: 30px
}
/* CSS */
.button-85 {
    padding: 0.6em 2em;
    border: none;
    outline: none;
    color: rgb(255, 255, 255);
    background: #d76060;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 10px;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

    .button-85:before {
        content: "";
        background: linear-gradient( 45deg, #11b462, #0e5732, #199b37, #0dc76a, #34cc15, #21c512 );
        position: absolute;
        top: -2px;
        left: -2px;
        background-size: 400%;
        z-index: -1;
        filter: blur(5px);
        -webkit-filter: blur(5px);
        width: calc(100% + 4px);
        height: calc(100% + 4px);
        animation: glowing-button-85 10s linear infinite;
        transition: opacity 0.3s ease-in-out;
        border-radius: 20px;
    }

@keyframes glowing-button-85 {
    0% {
        background-position: 0 0;
    }

    50% {
        background-position: 400% 0;
    }

    100% {
        background-position: 0 0;
    }
}



.button-85:after {
    z-index: -1;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #000000;
    left: 0;
    top: 0;
    border-radius: 20px;
}

.container {
    /* display: flex;*/
    justify-content: center;
    /* margin-top: 5px;*/
}

.button {
    position: relative;
    display: inline-block;
    width: 7vw;
    /*            height: 3rem;*/
    margin: auto;
    background-color: #f7f7f7;
    opacity: 7;
    text-align: center;
    /*            border: 1px solid #191970;*/
    border-radius: 60px;
    cursor: pointer;
    outline: none;
    align-items: center;
    justify-content: center;
}

button {
    position: relative;
    /*display: flex;*/
    justify-content: center;
    align-items: center;
    width: 12rem;
    height: 3rem;
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
}

.circle {
    position: relative;
    display: flex;
    margin: 0;
    width: 3rem;
    height: 3rem;
    border-radius: 50px;
    background-color: #0a1448;
    text-align: middle;
    transition: all 0.4s ease-in-out infinite;
    align-items: center;
    justify-content: center;
}

.text {
    position: absolute;
    inset: 0;
    padding: 0.9rem 0;
    margin-left: 1.8rem;
    color: #191970;
    line-height: 1.4;
    text-align: center;
    text-transform: uppercase;
    transition: all 0.4s ease-in-out;
    font-weight: 600;
}


.icon {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #fff;
}




@keyframes upsidedown {
    0%, 20%, 60%, 80%, 100% {
        transform: rotate(45deg);
    }

    40% {
        transform: rotate(-10deg);
    }
}

.button:hover .circle {
    width: 100%;
}

.button:hover .arrow {
    background: #fff;
    transform: translateX(1rem);
}

    .button:hover .arrow::before {
        animation: none;
    }

.button:hover .text {
    color: #fff;
}

.header-area {
    position: fixed;
    z-index: 100;
    width: 100%;
    -webkit-transition-duration: 500ms;
    -o-transition-duration: 500ms;
    transition-duration: 500ms;
    background-color: transparent;
    margin-top: 0px;
}

strong {
    font-size: 14px;
}

p {
    margin-top: 0;
    margin-bottom: 0rem !important;
}

.feature-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.left-features,
.right-features {
    /*flex: 1;*/
    min-width: 250px;
}

    .left-features p {
        text-align: left;
    }

    .right-features p {
        text-align: left;
    }


.select_choise {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px
}

@media (width: 1024px) {
    .card {
        background-color: #ffffff;
        /*            padding: 20px;*/
        padding-top: 0px !important;
        width: 24vw !important;
        text-align: center;
        border-radius: 32px;
        background: linear-gradient(45deg, #cacaca, #f0f0f0);
        box-shadow: rgba(0, 0, 0, 0.15) 2.4px 2.4px 3.2px;
        transition: 0.3s ease-in-out;
        /*            height: 26rem;*/
        /*            margin-bottom:2rem;*/
        margin: auto
    }
}

@media (max-width: 768px) {
    .button {
        position: relative;
        display: inline-block;
        width: 15vw;
        /*            height: 3rem;*/
        margin: auto;
        background-color: #f7f7f7;
        opacity: 7;
        text-align: center;
        /*            border: 1px solid #191970;*/
        border-radius: 60px;
        cursor: pointer;
        outline: none;
        align-items: center;
        justify-content: center;
    }

    /* img {
                width: 120% !important;
                height: auto;
            }*/

    .subContainer {
        flex-wrap: wrap
    }
}

.pricing-section {
    display: flex;
    flex-wrap: nowrap; /* prevent wrapping */
    overflow-x: auto; /* allow horizontal scroll on smaller screens */
    max-width: 100%; /* allow full container width */
    margin: auto;
    gap: 20px;
    padding: 20px;
    justify-content: flex-start;
    scroll-behavior: smooth;
}

    .pricing-section::-webkit-scrollbar {
        height: 10px;
    }

    .pricing-section::-webkit-scrollbar-thumb {
        background: #999;
        border-radius: 5px;
    }

    .pricing-section::-webkit-scrollbar-track {
        background: #eee;
    }

}
/* Responsive fix for tablet & mobile */
@media (max-width: 768px) {
    .pricing-section {
        flex-direction: column;
        align-items: center;
    }

        .pricing-section .card {
            width: 90%;
            max-width: 500px;
        }
}

@media (max-width: 475px) {
    .below-Content {
        width: 85%;
    }

    .select_choise {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 5px
    }

    .button {
        position: relative;
        display: inline-block;
        width: 20vw;
        /*            height: 3rem;*/
        margin: auto;
        background-color: #f7f7f7;
        opacity: 7;
        text-align: center;
        /*            border: 1px solid #191970;*/
        border-radius: 60px;
        cursor: pointer;
        outline: none;
        align-items: center;
        justify-content: center;
    }
}

.line {
    height: 3px;
    width: 70px;
    background-color: #fc6060;
    margin: 0 auto 30px auto; /* center it */
}

.pricing-card {
    /*background-color: #101010 !important;*/
    padding: 20px;
    height: 100%;
    color: white;
    box-shadow: 0 1px 5px #00000099;
    border-radius: 25px 5px 25px 5px;
    border: 1px solid #101010;
    /*transition: 0.6s ease all;*/
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.card {
    background-color: #ffffff;
    padding: 0px;
    padding-top: 2px;
    width: 230px;
    text-align: center;
    border-radius: 32px;
    background: linear-gradient(45deg, #cacaca, #f0f0f0);
    /*            box-shadow: 15px 28px 19px #a1a1a1,-3px 14px 40px #ffffff;*/
    transition: 0.3s ease-in-out;
    height: 100%;
}

.title {
    font-size: 2rem;
    font-weight: bold;
    COLOR: BLACK;
    MARGIN: 1PX;
    padding-bottom: 3%;
}

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 20px;
    margin-left: 5px;
}

.col-lg-3 {
    flex: 0 0 auto;
    width: 24%;
}

.card h2 {
    text-decoration: none;
    font-size: 1rem;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-around;
    padding-bottom: 10px;
    color: #061051;
    transition: color 0.3s ease, transform 0.3s ease;
}

.card:hover h2 {
    color: #000;
    transform: translateY(-3px);
}


.card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #210d59;
    padding: 0 15px;
    line-height: 1.6em;
    transition: 0.1s 0.3s, border-radius;
}

.double-4:hover {
    --p: 50.1%
}

.card ul {
    display: flex;
    align-items: flex-start;
    list-style: none;
    padding: 0;
    height: 70% !important;
    margin: 5px 0;
    flex-direction: column;
}

.article li {
    margin: 5px 0;
    text-align: justify;
    font-size: 12px;
    font-weight: 500;
    color: black;
    list-style: none;
    display: flex;
    gap: 5px
}

    .article li::before {
        content: "✔";
        color: #fc6060;
        font-weight: 900;
    }

.subtitle {
    font-size: 16px;
    color: black;
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 10px
}

.heading {
    font-size: 12px;
    color: #000000;
    margin-bottom: 5px;
    padding-left: 30%;
}

.card:hover .heading {
    color: #070707;
    font-weight: 700;
}

/* CSS */
.button {
    align-items: center;
    padding: 5px 20px;
    gap: 15px;
    background-color: #210d59;
    outline: 3px #210d59 solid;
    outline-offset: -3px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: 400ms;
    color: white;
    font-weight: 700;
    font-size: 1em;
}

    .button:hover {
        background-color: transparent;
        color: #000;
    }



.card:hover {
    background-color: #ece4df;
    /* box-shadow: 0 0 23px rgb(173, 210, 143); */
    animation: blink-border 1s infinite;
    transform: scale(1.0);
}

.pricing-card::before {
    /* Pseudo-element for background animation */
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(216deg, rgba(143, 20, 150, 0) 0%, rgba(37, 0, 108, 0) 100%);
    opacity: 0;
    /*transition: 0.5s ease;*/
    z-index: -1;
}

.btn-select {
    background-color: white;
    color: black;
    font-weight: bold;
    transition: 0.3s;
    width: 100%;
}

    .btn-select:hover {
        transform: scale(1.05);
    }

.standard {
    animation: border-animation 3s linear infinite;
}

.premium {
    animation: premium-animation 3s linear infinite;
}

.articles2 {
    text-align: justify;
    font-size: 10px;
    color: black;
}

.flex-grow-1 h3 {
    color: #252525;
    line-height: 1.3;
    font-size: 1.5rem;
    font-weight: 500;
    text-decoration: none;
    /*font-size: 1.2rem;*/
    margin-bottom: 10px;
    display: flex;
    justify-content: space-around;
    padding-bottom: 10px;
    background: linear-gradient(currentColor 0 0) left var(--p, 200%) bottom 0px, linear-gradient(currentColor 0 0) left var(--p,-100%) bottom 6px;
    background-size: 100px 2px;
    background-repeat: no-repeat;
    transition: 0.5s;
    margin-top: 20px;
}

.flex-grow-1:hover h3 {
    --p: 50.1%;
    color: #0a1448;
}

.pricing-card:hover p {
    color: black; /* or any color you want */
    transition: color 0.3s ease;
}

.pricing-card:hover {
    border-color: #ffcc00; /* 🔶 Your hover border color */
}

@media (max-width: 375px) {
    .select_choise {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 5px
    }
}

.form-group {
    margin: 0px !important
}


@media (min-width: 768px) {
    .col-md-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 25.333333% !important;
        max-width: 40.333333%;
    }
}

@media (max-width: 475px) {
    .col-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 80% !important;
        max-width: 100%;
    }

    .select_choise {
        flex-direction: column;
    }

    .custom-radio label {
        position: relative;
        padding: 7px 25px 10px 40px;
        cursor: pointer;
        user-select: none;
        font-weight: 600;
        font-size: 1rem;
        color: #4e54c8;
        border: 2px solid #fe0175;
        border-radius: 30px;
        transition: all 0.3s ease;
        box-shadow: 0 0 5px transparent;
        display: inline-block;
    }
}

.card {
    background-color: #ffffff;
    /*            padding: 20px;*/
    padding-top: 0px !important;
    width: 250px !important;
    text-align: center;
    border-radius: 20px;
    background: linear-gradient(45deg, #cacaca, #f0f0f0);
    box-shadow: rgba(0, 0, 0, 0.15) 2.4px 2.4px 3.2px;
    transition: 0.3s ease-in-out;
    /*            height: 26rem;*/
    /*            margin-bottom:2rem;*/
    /*            border: 2px solid blue;*/
}


.card-content {
    flex: 1;
}

.card-footer {
    margin-top: auto;
    text-align: center;
}

.button {
    /*padding: 10px 20px;*/
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.card-footer {
    padding: .75rem 1.25rem;
    background-color: rgba(0, 0, 0, .0) !important;
    border-top: none !important;
}
/*        radio button css*/
.select_choise {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

/* Hide the native radio input */
.custom-radio input[type="radio"] {
    position: absolute !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Style the label that ASP.NET renders after input */
.custom-radio label {
    position: relative;
    padding: 10px 25px 10px 40px;
    cursor: pointer;
    user-select: none;
    font-weight: 600;
    font-size: 1rem;
    color: #fe0175;
    border: 2px solid #fe0175;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 0 5px transparent;
    display: inline-block;
}

    /* Circle before label text */
    .custom-radio label::before {
        content: "";
        position: absolute;
        left: 12px;
        top: 50%;
        transform: translateY(-50%);
        width: 18px;
        height: 18px;
        border: 2px solid #4e54c8;
        border-radius: 50%;
        background: white;
        transition: all 0.3s ease;
        box-sizing: border-box;
    }

/* When radio is checked, style label */
.custom-radio input[type="radio"]:checked + label {
    background: linear-gradient(45deg, #4e54c8, #8f94fb);
    color: white;
    border-color: #4e54c8;
    box-shadow: 0 0 10px #8f94fb;
    transform: scale(1.05);
}

    /* Circle fill and pulse animation on checked */
    .custom-radio input[type="radio"]:checked + label::before {
        background: white;
        border-color: white;
        box-shadow: 0 0 8px white;
        animation: pulse 1.2s infinite;
    }

/* Pulse keyframes */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(143, 148, 251, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(143, 148, 251, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(143, 148, 251, 0);
    }
}

/* Focus outline for accessibility */
.custom-radio input[type="radio"]:focus + label {
    outline: 2px solid #fe0175;
    outline-offset: 2px;
}
/*        radio button css*/
.select_choise {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

/* Hide the native radio input */
.custom-radio input[type="radio"] {
    position: absolute !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Style the label that ASP.NET renders after input */
.custom-radio label {
    position: relative;
    padding: 10px 25px 10px 40px;
    cursor: pointer;
    user-select: none;
    font-weight: 600;
    font-size: 1rem;
    color: #fe0175;
    border: 2px solid #fe0175;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 0 5px transparent;
    display: inline-block;
}

    /* Circle before label text */
    .custom-radio label::before {
        content: "";
        position: absolute;
        left: 12px;
        top: 50%;
        transform: translateY(-50%);
        width: 18px;
        height: 18px;
        border: 2px solid #fe0175;
        border-radius: 50%;
        background: white;
        transition: all 0.3s ease;
        box-sizing: border-box;
    }

/* When radio is checked, style label */
.custom-radio input[type="radio"]:checked + label {
    background: linear-gradient(45deg, #4e54c8, #8f94fb);
    color: white;
    border-color: #4e54c8;
    box-shadow: 0 0 10px #8f94fb;
    transform: scale(1.05);
}

    /* Circle fill and pulse animation on checked */
    .custom-radio input[type="radio"]:checked + label::before {
        background: white;
        border-color: white;
        box-shadow: 0 0 8px white;
        animation: pulse 1.2s infinite;
    }

/* Pulse keyframes */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* Example usage */
.pulse-effect {
    animation: pulse 2s infinite;
}

/* Focus outline for accessibility */
.custom-radio input[type="radio"]:focus + label {
    outline: 2px solid #fe0175;
    outline-offset: 2px;
}

.custom-radio input[type="radio"]:checked + label {
    background: linear-gradient(to right, #fe0175 0%, #fe0175 100%);
    color: white;
    border-color: #fe0175;
    box-shadow: 0 0 10px #8f94fb;
    transform: scale(1.05);
}

.test-shine {
    position: relative;
    overflow: hidden; /* Prevent shine from overflowing */
    transition: transform 0.3s ease;
    border-top: 8px solid #537895;
}

    /* Sharp shine overlay */
    .test-shine::after {
        content: "";
        position: absolute;
        top: -50%;
        left: -60%;
        width: 15%; /* narrower for sharp effect */
        height: 300%;
        background: linear-gradient( 45deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.5) 50%, /* very bright center */
        rgba(255, 255, 255, 0.5) 100% );
        transform: rotate(30deg);
        pointer-events: none;
        opacity: 0;
    }

    /* Trigger sharp shine on hover with 2s sweep */
    .test-shine:hover::after {
        opacity: 0.8;
        animation: sharp-shine 2s forwards;
    }

/* Sharp diagonal shine animation */
@keyframes sharp-shine {
    0% {
        left: -100%;
    }

    100% {
        left: 130%;
    }
}

/* Optional: subtle lift on hover */
.test-shine:hover {
    transform: translateY(-5px);
}

/* Reset on active click */
.test-shine:active::after {
    opacity: 0;
    animation: none;
}


.button {
    width: 140px;
    height: 40px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(to top, #09203f 0%, #537895 100%) !important;
    background-size: 250%;
    background-position: left;
    color: #fff;
    font-weight: 600;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition-duration: 1s;
    overflow: hidden;
    margin: auto;
    outline: none
}

    .button::before {
        position: absolute;
        content: "submit";
        color: #ffd277;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 97%;
        height: 90%;
        border-radius: 8px;
        transition-duration: 1s;
        background-color: rgba(0, 0, 0, 0.842);
        background-size: 200%;
    }

    .button:hover {
        background-position: right;
        transition-duration: 1s;
        color: white;
        transform: scale(1.1)
    }

        .button:hover::before {
            background-position: right;
            transition-duration: 1s;
        }

    .button:active {
        transform: translateX(-50%) scale(0.95);
    }

.wow {
    opacity: 0;
}

    .wow.animated {
        opacity: 1;
        transition: all 0.8s ease-out;
    }

/*     .row {
    align-items: flex-start !important;
}*/

.card {
    height: auto !important;
    cursor: pointer;
}

.card-details,
.card-footer {
    display: none;
}

.card.active .card-details,
.card.active .card-footer {
    display: block;
}

/* Overlay */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Popup box */
.popup-box {
    background: #fff;
    width: 92%;
    max-width: 420px;
    border-radius: 18px;
    padding: 26px 22px;
    position: relative;
    transform: translateY(60px) scale(0.85);
    opacity: 0;
}

/* OPEN animation */
.popup-overlay.show .popup-box {
    animation: parcelIn 0.4s ease forwards;
}

/* CLOSE animation */
.popup-overlay.hide .popup-box {
    animation: parcelOut 0.3s ease forwards;
}

/* Force show content */
.popup-box .card-details,
.popup-box .card-footer {
    display: block !important;
}

/* Close icon */
.popup-close {
    position: absolute;
    top: 12px;
    right: 14px;
    font-size: 20px;
    cursor: pointer;
}

/* Animations */
@keyframes parcelIn {
    from {
        transform: translateY(60px) scale(0.85);
        opacity: 0;
    }

    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

@keyframes parcelOut {
    from {
        transform: translateY(0) scale(1);
        opacity: 1;
    }

    to {
        transform: translateY(60px) scale(0.85);
        opacity: 0;
    }
}



.dropdown-icon {
    width: 100%;
    text-align: center;
    font-size: 18px;
    margin-top: 12px;
    transition: transform 0.4s ease;
    color: #444;
}
/* From Uiverse.io by Peary74 */
.uiverse-btn {
    background: linear-gradient(30deg, #000 35%, #ea8b19 73%);
    position: relative;
    padding: 17px 45px;
    font-size: 20px;
    font-weight: 500;
    color: white;
    border: 3px solid #ea8b19;
    border-radius: 8px;
    transition: all .3s ease-in-out;
}

.star-1 {
    position: absolute;
    fill: #fe0175;
    top: 20%;
    left: 20%;
    width: 25px;
    height: auto;
    filter: drop-shadow(0 0 0 #ea8b19);
    z-index: -5;
    transition: all 1s cubic-bezier(0.05, 0.83, 0.43, 0.96);
}

.star-2 {
    position: absolute;
    fill: #fe0175;
    top: 45%;
    left: 45%;
    width: 15px;
    height: auto;
    filter: drop-shadow(0 0 0 #ea8b19);
    z-index: -5;
    transition: all 1s cubic-bezier(0, 0.4, 0, 1.01);
}

.star-3 {
    position: absolute;
    fill: #fe0175;
    top: 40%;
    left: 40%;
    width: 5px;
    height: auto;
    filter: drop-shadow(0 0 0 #ea8b19);
    z-index: -5;
    transition: all 1s cubic-bezier(0, 0.4, 0, 1.01);
}

.star-4 {
    position: absolute;
    fill: #fe0175;
    top: 20%;
    left: 40%;
    width: 8px;
    height: auto;
    filter: drop-shadow(0 0 0 #ea8b19);
    z-index: -5;
    transition: all .8s cubic-bezier(0, 0.4, 0, 1.01);
}

.star-5 {
    position: absolute;
    fill: #fe0175;
    top: 25%;
    left: 45%;
    width: 15px;
    height: auto;
    filter: drop-shadow(0 0 0 #ea8b19);
    z-index: -5;
    transition: all .6s cubic-bezier(0, 0.4, 0, 1.01);
}

.star-6 {
    position: absolute;
    fill: #fe0175;
    top: 5%;
    left: 50%;
    width: 5px;
    height: auto;
    filter: drop-shadow(0 0 0 #ea8b19);
    z-index: -5;
    transition: all .8s ease;
}

.uiverse-btn {
    background: #000;
    color: #ea8b19;
    box-shadow: 0 0 50px #fe0175;
}

    .uiverse-btn:hover .star-1 {
        position: absolute;
        top: -45%;
        left: -60%;
        width: 30px;
        height: auto;
        filter: drop-shadow(0 0 10px #fe0175);
        z-index: 2;
    }

    .uiverse-btn:hover .star-2 {
        position: absolute;
        top: -45%;
        left: 0%;
        width: 20px;
        height: auto;
        filter: drop-shadow(0 0 10px #fe0175);
        z-index: 2;
    }

    .uiverse-btn:hover .star-3 {
        position: absolute;
        top: 55%;
        left: 15%;
        width: 11px;
        height: auto;
        filter: drop-shadow(0 0 10px #fe0175);
        z-index: 2;
    }

    .uiverse-btn:hover .star-4 {
        position: absolute;
        top: 45%;
        left: 85%;
        width: 15px;
        height: auto;
        filter: drop-shadow(0 0 10px #fe0175);
        z-index: 2;
    }

    .uiverse-btn:hover .star-5 {
        position: absolute;
        top: 25%;
        left: 140%;
        width: 25px;
        height: auto;
        filter: drop-shadow(0 0 10px #fe0175);
        z-index: 2;
    }

    .uiverse-btn:hover .star-6 {
        position: absolute;
        top: -23%;
        left: 60%;
        width: 15px;
        height: auto;
        filter: drop-shadow(0 0 10px #fe0175);
        z-index: 2;
    }

.fil0 {
    fill: #ea8b19;
}

.box {
    width: 88px;
    height: 40px;
    float: left;
    transition: .5s linear;
    position: relative;
    display: block;
    padding: 8px;
    margin: -10px -15.5px;
    background: transparent;
    text-transform: uppercase;
    font-weight: 900;
}

    .box:hover {
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        cursor: pointer;
        color: white;
        background: black;
    }

        .box:hover:before {
            border-color: #fff;
            height: 100%;
            transform: translateX(0);
            transition: .3s transform linear, .3s height linear .3s;
        }

        .box:hover:after {
            border-color: #fe0175;
            height: 100%;
            transform: translateX(0);
            transition: .3s transform linear, .3s height linear .5s;
        }

    .box:before {
        position: absolute;
        content: '';
        left: 0;
        bottom: 0;
        height: 4px;
        width: 100%;
        border-bottom: 4px solid transparent;
        border-left: 4px solid transparent;
        box-sizing: border-box;
        transform: translateX(100%);
    }

    .box:after {
        position: absolute;
        content: '';
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        border-top: 4px solid transparent;
        border-right: 4px solid transparent;
        box-sizing: border-box;
        transform: translateX(-100%);
    }

.uiverse-btn {
    background: linear-gradient(30deg, #2b0a1f, #fe0175);
    position: relative;
    padding: 17px 25px;
    font-size: 20px;
    font-weight: 500;
    color: white;
    border: 3px solid #fe0175;
    border-radius: 8px;
    transition: all .3s ease-in-out;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
}

    .uiverse-btn:hover {
        background: #000;
        color: #ea8b19;
        box-shadow: 0 0 50px #fe0175;
    }


.card-content {
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    padding: 5px 30px 5px 15px; /* space for arrow on right */
    justify-content: center; /* center text */
}

    .card-content .left {
        text-align: center;
        flex: 1; /* take all remaining space */
    }

/* Arrow on right side, fixed */
.arrow {
    position: absolute;
    right: 15px;
    font-size: 30px;
    transition: transform 0.3s ease;
    color: #537895;
}

/* Rotate arrow when card open */
.card.active .arrow {
    transform: rotate(180deg);
}

.wow {
    visibility: visible !important;
}
