body {
    background: linear-gradient(to top, #2e405a, #0a0911);
    height: 100%;
    font-family: "Karla", sans-serif;
    color: white !important;
    cursor: default;
}

p {
    margin: 15px 0px;
}

.main {
    padding: 0px 75px;
    max-width: 1250px;
    margin: 0 auto;
    min-height: 100vh;
}

.nav {
    padding: 40px 0px;
    font-weight: bold;
    z-index: 1000000;
}
.nav > .closebtn {
    display: none;
}

.nav ul {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.nav li {
    text-decoration: none;
    cursor: pointer;
    font-size: 1.3rem !important;
}

.nav li a {
    background: transparent !important;
    font-size: 1rem;
    box-shadow: none;
    width: auto;
    cursor: pointer !important;
}

.logo {
    width: 100%;
    max-width: 100%;
    height: 100px;
    margin-bottom: 20px;
    background: url(../assets/logo.svg) no-repeat center;
    background-size: contain;
}

.subtitle {
    color: white;
    font-size: 1.8rem;
    z-index: 100;
    position: relative;
}

a {
    z-index: 1;
    background: #0a0911;
    font-size: 1.2rem;
    font-family: "Karla", sans-serif;
    color: white;
    border: none;
    width: 185px;
    height: 40px;
    font-weight: bold;
    border-radius: 50px;
    box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    cursor: pointer !important;
    outline: none;
    transition: 0.5s all ease;
}

a span {
    display: inline-flex;
}

a span:after {
    content: "";
    width: 15px;
    height: 20px;
    margin-left: 15px;
    background: url(../assets/arrow-right.svg) no-repeat center;
    background-size: contain;
    display: inline-flex;
    align-items: center;
    align-content: center;
    margin-top: 5px;
}

a:hover {
    color: #11d0ef;
}

.gradient-border {
    border-radius: 50px;
    height: 40px;
    width: 185px;
    --borderWidth: 4px;
    background: #1d1f20;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
}

.gradient-border:after {
    content: "";
    position: absolute;
    top: calc(-1 * var(--borderWidth));
    left: calc(-1 * var(--borderWidth));
    height: calc(100% + var(--borderWidth) * 2);
    width: calc(100% + var(--borderWidth) * 2);
    background: linear-gradient(to right, #6f22b2, #11d0ef);
    animation: animatedgradient 3s ease alternate infinite;
    background-size: 300% 300%;
    border-radius: 50px;
}

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

.bubble {
    width: 450px;
    height: 450px;
    border-radius: 100%;
    filter: blur(20px);
    background: linear-gradient(to top, #6f22b2, #11d0ef);
    margin-top: 15%;
    margin-left: 15%;
}

img,
p {
    z-index: 100;
}

.bigger {
    position: absolute;
    z-index: 0;
    top: 60px;
    width: 600px;
    height: 600px;
    left: 0;
    right: 0;
    margin: auto;
}

.girl {
    background: url("../assets/girl.png") no-repeat center;
    height: 700px;
    width: 100%;
    background-size: contain;
    position: absolute;
    right: -25%;
    top: 0px;
}

.girl-feature {
    background: url("../assets/girl-2.png") no-repeat center;
    height: 700px;
    width: 100%;
    background-size: contain;
    position: absolute;
    right: -25%;
    top: -50px;
}

.ptitle {
    font-weight: bold;
    font-size: 1.4rem;
    margin-bottom: 25px;
    text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.separator {
    width: 120px;
    height: 5px;
    border-radius: 5px;
    background: linear-gradient(to right, #6f22b2, #11d0ef);
    margin: 25px 0px;
}

.text-container {
    margin-top: 40px !important;
}

.wheel-container {
    position: relative;
    display: flex;
    align-items: center;
    align-content: center;
    width: 350px;
    height: 350px;
    text-align: center;
    margin-top: -35px;
}

.wheel-container-sm {
    position: relative;
    display: flex;
    align-items: center;
    align-content: center;
    width: 200px;
    height: 200px;
    text-align: center;
    margin: auto;
}

.p-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.wheel {
    height: 350px;
    width: 350px;
    background: url("../assets/rose.svg") no-repeat center;
    background-size: contain;
    position: absolute;
    top: 0;
}

.smaller {
    width: 200px;
    height: 200px;
    margin: auto;
    transition: 0.5s all ease;
}

@-webkit-keyframes rotating /* Safari and Chrome */ {
    from {
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes rotating {
    from {
        -ms-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -ms-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
.rotating {
    -webkit-animation: rotating 25s linear infinite;
    -moz-animation: rotating 25s linear infinite;
    -ms-animation: rotating 25s linear infinite;
    -o-animation: rotating 25s linear infinite;
    animation: rotating 25s linear infinite;
}

.btitle {
    margin-top: 100px;
    font-size: 3rem;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
}

.center {
    text-align: center;
}

.small-phone {
    width: 280px;
    vertical-align: bottom;
}

.flexend {
    display: flex;
    align-items: flex-end;
    align-content: flex-end;
    justify-content: center;
}

.spcimg {
    width: 900px;
}

.gradientxt {
    font-size: 2.6rem;
    background: linear-gradient(to left, #6f22b2, #11d0ef);
    background: -webkit-linear-gradient(to left, #6f22b2, #11d0ef);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
}

.min-text {
    margin-bottom: 40px;
}

.wave {
    margin-top: 10% !important;
    background: url("../assets/wave.svg") no-repeat center;
    background-size: 120%;
}

.title {
    color: white;
    text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.4);
    font-weight: bold;
    margin-bottom: 30px !important;
}

.care {
    background: url("../assets/care.svg") no-repeat center;
    background-size: contain;
    width: 70px;
    height: 50px;
    margin-top: -20px;
    z-index: 2;
}

.update {
    background: url("../assets/update.svg") no-repeat center;
    background-size: contain;
    width: 70px;
    height: 50px;
    margin-top: -20px;
    z-index: 2;
}

.unsub {
    background: url("../assets/unsub.svg") no-repeat center;
    background-size: contain;
    width: 70px;
    height: 50px;
    margin-top: -20px;
    z-index: 2;
}

.centered {
    margin: auto;
    margin-top: 30px;
    margin-bottom: 100px;
}

/** Features **/

.phone-container {
    margin-top: -150px;
    z-index: 100;
    position: relative;
    width: 350px;
}

.space {
    margin-top: 100px;
}

.s-space {
    margin-top: 60px;
}

.diamond {
    margin-top: -40px;
}

.gem-ctn p {
    font-weight: bold;
    z-index: 100;
    position: relative;
}

.bigtitle {
    margin-top: -20px;
    font-size: 6rem;
    font-weight: bold;
    text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.3);
}

.gradient-top {
    background: linear-gradient(to bottom, #6f22b2, #11d0ef);
    border-radius: 20px;
    padding: 4px;
    margin: 10px auto;
}

.gradient-bottom {
    background: linear-gradient(to top, #6f22b2, #11d0ef);
    border-radius: 20px;
    padding: 4px;
    margin: 25px auto;
}

.gradient-grey {
    background: linear-gradient(to bottom, #49668d, #0a0911);
    border-radius: 20px;
    padding: 15px;
    height: 290px;
}

a {
    text-decoration: none;
    color: white;
}

.gradient-grey a {
    background: none;
    font-size: 1em;
    box-shadow: none;
    display: inline;
}

.contact-head .head-para a {
    background: none;
    font-size: 1em;
    box-shadow: none;
    display: inline;
}

@media all and (max-width: 480px) {
    .main {
        padding: 0px 35px;
    }

    .gradient-grey {
        height: auto;
    }

    .wheel-container {
        margin-top: 35px;
        height: 300px;
        width: 300px;
    }

    .wheel {
        height: 300px;
        width: 300px;
    }

    .smaller {
        width: 200px !important;
        height: 200px !important;
    }

    .bigtitle {
        margin-top: 0;
    }

    .phone-container {
        max-width: 100%;
    }

    .p-container {
        margin-top: 0;
    }

    .bigger {
        width: 300px;
        height: 300px;
    }

    .gradient-border {
        margin: auto;
    }

    .m-centered {
        text-align: center;
    }

    .subtitle {
        text-align: center;
    }

    .gradientxt {
        font-size: 1.9rem;
    }

    .gem-ctn p {
        font-size: 12px;
    }

    .s-space {
        margin-top: 0px;
    }

    .s-space .wheel-container {
        margin-top: 0px;
    }
}

.animated {
    -webkit-animation-duration: 2s !important;
    animation-duration: 2s !important;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
/*for subscribe page*/
.form-inner {
    display: flex;
    padding: 2% 0%;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    width: 50%;
    background-color: #ffffff;
    border-radius: 8px;
    margin-bottom: 7%;
}
.paypal {
    width: 37%;
    margin-top: 3%;
}
.subscribe-inner h1,
p {
    text-align: center;
}
.subscribe-inner h1 {
    font-size: 36px;
    font-weight: bold;
}
.subscribe-form {
    display: flex;
    margin: 1% 16%;
    justify-content: center;
    align-items: center;
    margin: 0% 16%;
}
.subscribe {
    color: #ffffff;
    background-color: #000000;
}
.personal-information,
.Billing-deatails,
.contact-information {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 90%;
    margin-top: 4%;
}
.card-data,
.name-data {
    display: flex;
    justify-content: space-between;
}
input:focus,
select:focus,
textarea:focus {
    outline-color: #80bfff !important;
}
input[type="text"],
input[type="email"] {
    font-size: 15px;
    margin-bottom: 4%;
    padding: 4% 0%;
    border: 2px solid #d3d3d3;
    border-radius: 5px;
    text-indent: 20px;
}
input[type="checkbox"] {
    width: 16px;
    height: 16px;
}
.biling > span {
    color: #000;
    margin-left: 2%;
}
.contact-information h5,
h3 {
    margin-bottom: 3%;
    color: #000;
    font-size: 20px;
    font-weight: 500;
}
select {
    padding: 3% 8% 3% 0%;
    font-size: 16px;
    text-indent: 20px;
    margin-bottom: 4%;
    border: 2px solid #d3d3d3;
    border-radius: 5px;
    background: url(../assets/arrowdown.svg) no-repeat right;
    appearance: none;
    -webkit-appearance: none;
    background-position-x: 92%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
select option {
    width: 48%;
}
.contact-container {
    display: flex;
    justify-content: space-between;
}
.number-info,
.numberType {
    display: flex;
    justify-content: space-between;
}
.subscribe-head p {
    text-align: center;
}
.subscribe-btn {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 3% 0%;
}
.subscribe-btn > button {
    background: linear-gradient(to right, #6f22b2, #11d0ef);
    height: 50px;
    width: 90%;
    border-radius: 25px;
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    cursor: pointer;
    outline: none;
    box-shadow: 0 2px 5px #00000094;
    border: none;
}
.date-container input,
.numberType select,
.number-info select {
    width: 48%;
}

/*contact-us*/

.contact-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.contact-head {
    margin-top: 3%;
    text-align: center;
}
.heading-inner {
    font-size: 36px;
    font-weight: 700;
}
.head-para {
    font-size: 13px;
    margin: 1% 16%;
}
form#beyond-vr-form {
    width: 50%;
}
form#beyond-vr-form > input {
    font-size: 16px;
    width: 48.5%;
    height: 55px;
    border: 2px solid #ececec;
    margin: 10px 0px;
}
form#beyond-vr-form > input:nth-child(1) {
    margin-right: 2%;
}
form#beyond-vr-form input[type="email"] {
    width: 100%;
}
textarea {
    font-size: 16px;
    padding-top: 2%;
    width: 100%;
    height: 120px;
    border: 2px solid #ececec;
    text-indent: 20px;
    box-sizing: border-box;
}
.send-btn {
    display: flex;
    justify-content: center;
    align-items: center;
}
.send-btn > button {
    background: linear-gradient(to right, #6f22b2, #11d0ef);
    color: white;
    width: 100%;
    height: 55px;
    border-radius: 30px;
    font-size: 17px;
    font-weight: 500;
    margin: 5% 0% 11% 0%;
    outline: none;
}
.mycare-page .language-switcher {
    border-radius: 5px; /* Rounded edges */
    padding: 0 1%;
    font-family: "Arial", sans-serif;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 30%;
    background: transparent;
    color: #ffffff;
    outline: none;
    border: 1px solid gray;
    font-size: 17px;
    font-weight: normal;
    margin-top: auto;
    float: right;
}
.mycare-page .language-switcher img {
    width: 15%;
}
.mycare-page .language-switcher .icon {
    margin-right: 8px; /* Add space between icon and dropdown */
    color: #00e6ff; /* Highlight color for the globe icon */
}

.mycare-page .language-switcher select {
    background: transparent;
    border: none;
    color: #fff;
    outline: none;
    font-size: 0.75rem;
    cursor: pointer;
    appearance: none;
    width: 100%;
    text-align: center;
    padding: 6% 8% 3% 0;
}

.mycare-page .language-switcher select:focus {
    outline: none; /* Prevent focus ring */
}

.mycare-page .language-switcher select::-ms-expand {
    display: none; /* Hide default dropdown arrow in IE/Edge */
}
.mycare-page .manage-subs {
    margin-top: 100px;
}
.mycare-page .manage-subs h2 {
    font-size: 1.4rem;
    font-weight: bold;
}
.mycare-page .manage-subs h3 {
    line-height: 1.5;
    color: #fff;
}
.mycare-page ul {
    padding: revert;
    list-style: disc;
}
.mycare-page .gradient-border,
.mycare-page .gradient-border a {
    width: 250px;
}
.mycare-page .review-block button.gradient-border {
    width: 300px;
    margin-bottom: 25px;
}
.mycare-page .review-block button.gradient-border span {
    width: 300px;
    z-index: 1;
    background: #0a0911;
    font-size: 1.2rem;
    font-family: "Karla", sans-serif;
    color: white;
    border: none;
    height: 50px;
    font-weight: bold;
    border-radius: 50px;
    box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    cursor: pointer !important;
    outline: none;
    transition: 0.5s all ease;
}
.mycare-page .review-block button.gradient-border span:hover {
    color: #11d0ef;
}
.mycare-page .review-block .gradient-border {
    height: 60px;
}
.mycare-page .need-assis svg {
    margin: 5px 5px 0 0;
}
.mycare-page .need-assis .aos-animate {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border: 1.3px dashed #11d0ef;
    border-radius: 8px;
    width: 45%;
    position: relative;
}
.mycare-page .need-assis .aos-animate p {
    margin-top: 40px;
}
.mycare-page .need-assis .aos-animate .centered {
    margin-bottom: 40px;
}
.mycare-page .need-assis .is-vcentered {
    display: flex;
    justify-content: space-around;
    align-items: stretch;
}
.mycare-page .review-block .gradient-grey {
    height: auto;
}
.mycare-page .faq-qusetions-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin: 1% 5%;
}
.mycare-page .faq-qusetion-box {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2% 3% 1%;
    margin-bottom: 4%;
}
.mycare-page .form-container {
    padding-top: 0;
    padding-bottom: 2%;
    margin: 0 auto;
    width: 80%;
}
.mycare-page .form-section {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
.mycare-page .faq-qusetions-section h2 {
    font-size: 1.5rem;
    margin-bottom: 2%;
}
.mycare-page .form-section .form-data {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    width: 100%;
}
.mycare-page .form-data input {
    height: 50px;
    text-indent: 12px;
    font-size: 17px;
    color: #000000;
    border: none;
    outline: none;
    margin-bottom: 1rem;
}
.mycare-page .form-data textarea {
    height: 150px;
    text-indent: 12px;
    font-size: 17px;
    color: #000000;
    outline: none;
    padding: 0;
    padding-top: 2%;
    border: none;
    box-sizing: border-box;
    margin-bottom: 1rem;
}
.mycare-page .stars {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 5px;
    margin-bottom: 1rem;
}
.mycare-page .stars input {
    display: none;
}
.mycare-page .stars label {
    font-size: 2rem;
    color: #ccc;
    cursor: pointer;
    transition: color 0.2s;
}
.mycare-page .stars label:hover,
.mycare-page .stars label:hover ~ label {
    color: gold;
}
.mycare-page .stars input:checked ~ label {
    color: gold;
}
/* Modal Popup */
.mycare-page .modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #0c0c13;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    text-align: center;
}
.mycare-page .modal h3 {
    margin-bottom: 10px;
    color: #22cae7;
    font-size: 1.25rem;
}
.mycare-page .modal p {
    color: #22cae7;
    font-size: 1rem;
}
.mycare-page .modal button {
    margin-top: 10px;
}
/* Prevent body from scrolling */
body.modal-open {
    overflow: hidden;
}

/* Overlay style to block background clicks */
.mycare-page .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999; /* Ensure it appears above other elements */
    display: none; /* Hidden by default */
}

/* Display the overlay when active */
.mycare-page .overlay.active {
    display: block;
}
/* Slider */
.slider-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 1000px;
    margin: auto;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
}

.slider-item {
    flex: 0 0 300px;
    text-align: left;
    padding: 20px;
    margin: 10px;
    border-radius: 8px;
    background: #000;
}
.slider-item h3 {
    color: #fff;
    font-weight: bold;
}
.slider-item p {
    text-align: left;
}

.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.slider-controls button {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

.slider-controls button:hover {
    color: #007bff;
}

.slider-dots {
    text-align: center;
    margin-top: 10px;
}

.slider-dots .dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 5px;
    background-color: #ddd;
    border-radius: 50%;
    cursor: pointer;
}

.slider-dots .dot.active {
    background-color: #007bff;
}
.slider-item .stars {
    color: gold;
}
.mycare-page .review-block .column {
    width: 100%;
}
.privacy-page h2 {
    text-align: center;
    font-size: 1.5em;
    font-weight: 600;
}
.privacy-page p {
    text-align: left;
}
.privacy-page strong,
.privacy-page h3 {
    color: #fff !important;
}
