@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    min-height: 100vh;
    position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Urbanist", sans-serif;
}

p {
    font-family: "Inter", sans-serif;
}

.left-hand {
    position: absolute;
    top: 0;
    left: -55px;
    width: 300px;
    height: 298px;
    z-index: -1;
}

.left-hand img {
    width: 100%;
    height: 100%;
}

.right-hand {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 185px;
    height: auto;
    z-index: -1;
}

.right-hand img {
    width: 100%;
    height: 100%;
}

.container {
    overflow: hidden;
}

.header {
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #d946a6;
}

.logo-text {
    color: #6366f1;
}

.contact {
    display: flex;
    gap: 15px;
    align-items: center;
}

.contact-number {
    position: relative;
}

.contact-number a {
    color: #000;
    font-size: 14px;
    text-decoration: none;
}

.contact-number img {
    position: absolute;
    left: -20px;
    top: 3px;
}

.progress-bar {
    height:5px;
    background: #3b59f3;
    margin: 0px;
    border-radius: 50px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 100%);
    transition: width 0.3s ease;
}

.progress-text {
    text-align: right;
    padding: 10px 40px 0;
    color: #999;
    font-size: 14px;
}

.content {
    padding: 25px 0px; 
    min-height: 100vh;
}

.welcome-screen {
    text-align: center;
}

.welcome-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-section h1 {
    text-align: center;
    font-size: 5rem;
    line-height: 1;
    font-weight: 700;
    margin:0px;
    background: linear-gradient(135deg, #2F57EF 0%, #E72D64 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}
.hero-section h2 {
    text-align: center;
    font-size: 3.8rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #2F57EF 0%, #E72D64 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

/* .hero-section h1 span {
    position: relative;
    background: linear-gradient(135deg, #2F57EF 0%, #E72D64 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-section h1 span::after {
    content: '';
    background-image: url(../images/circle-line.webp);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    width: 100%;
    height: 103px;
    position: absolute;
    left: 0;
    top: 0;
} */

.de-addiction-text {
    text-decoration: underline;
    text-decoration-color: #6366f1;
}

.subtitle {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 40px;
}

.question-title {
    font-size: 30px;
    color: #000;
    text-align: center;
    margin-bottom: 10px;
    font-weight: 600;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(225px, 1fr));
    gap: 25px;
    margin: 0 auto;
    max-width: 100%;
}

.option-card {
    /* padding: 30px; */
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    /* gap: 20px; */
    position: relative;
    background-repeat: no-repeat;
    background-size: contain;
}

/* .option-card:hover {
    border-color: #6366f1;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.15);
} */

.option-card.selected {
    background-repeat: no-repeat;
    background-size: contain;
    /* width: 260px;
    height: 240px; */
}

.option-card.gender-option,
.option-card.age-option {
    flex-direction: column;
    text-align: center;
}

.option-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    background: #f3f4f6;
}

.option-icon {
    width: 275px;
    height: 170px;
    /* display: flex;
    align-items: center;
    justify-content: center; */
}

.option-icon img {
    width: 155px;
    height: auto;
}

.genderBg {
    position: relative;
    background-repeat: no-repeat;
    background-size: contain;
    margin-top: 120px;
}

.option-gender-img {
    position: absolute;
    top: -115px;
    left: 50px
}

.option-text {
    font-size: 18px;
    font-weight: 500;
}

.age-range {
    font-size: 20px;
    font-weight: 600;
    margin-top: 0;
    background-size: contain;
    width: 100%;
    height: 120px;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    color: #fff;
}

.continue-btn {
    background: #0d6efd;
    color: white;
    border: none;
    padding: 12px 60px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: block;
    margin: 0px auto 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
}

.continue-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.continue-btn:active {
    transform: translateY(0);
}

.info-screen {
    text-align: center;
    padding: 0px 100px 20px;
}

.info-title {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.3;
    background: linear-gradient(135deg, #9747FF 0%, #2F57EF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.layout2 h2.info-title {
    font-size: 36px;
    margin-bottom: 10px;
    font-weight: 700;
    line-height: 1.3;
    background: linear-gradient(135deg, #4D9180 0%, #FF8F3C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.layout3 h2.info-title {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.3;
    background: linear-gradient(135deg, #4D9180 0%, #FF8F3C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.layout4 h2.info-title {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.3;
    background: linear-gradient(135deg, #4D9180 0%, #FF8F3C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.loading-screen .info-title {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.3;
    background: linear-gradient(135deg, #4D9180 0%, #9747FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.weeks_section .info-title {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.3;
    background: linear-gradient(135deg, #4D9180 0%, #9747FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* .info-title .highlight {
    background: linear-gradient(135deg, #10b981 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
} */

.info-subtitle {
    font-size: 22px;
    color: #000;
    margin-bottom: 50px;
    font-weight: 500;
}

.decorative-hands {
    position: absolute;
    opacity: 0.1;
    width: 200px;
}

.hand-left {
    left: -50px;
    top: 50px;
}

.hand-right {
    right: -50px;
    bottom: 50px;
}

.simple-option {
    background: white;
    border-radius: 16px;
    padding: 20px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
}

.simple-option:hover {
    border-color: #6366f1;
    background: #f9fafb;
}

.simple-option.selected {
    position: relative;
}

.simple-option .check-icon {
    opacity: 0;
    transition: opacity 0.2s ease;
    width: 35px;
    height: 35px;
}

.simple-option.selected .check-icon {
    opacity: 1;
}


/* .simple-option.selected {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-color: #6366f1;
    color: white;
} */

@media (max-width: 767px) {
    .header {
        padding: 15px 20px;
    }


    h1 {
        font-size: 32px;
    }

    .question-title {
        font-size: 22px;
    }

    /* .options-grid {
        grid-template-columns: 1fr;
    } */

    .progress-bar,
    .progress-text {
        padding-left: 20px;
        padding-right: 20px;
    }

    .contact-number {
        display: none;
    }
}

.hidden {
    display: none;
}

.info-climb {
    text-align: center;
    padding: 60px 20px;
    /* min-height: 500px;
    background: linear-gradient(135deg, #fef3c7 0%, #f3e8ff 50%, #ddd6fe 100%); */
}

.info-climb .info-title {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.3;
    background: linear-gradient(135deg, #4D9180 0%, #FF8F3C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.climb-image {
    position: absolute;
    right: 50px;
    bottom: 50px;
    width: 300px;
    opacity: 0.8;
}

.hand-decorations {
    position: absolute;
}

.hand-top-left {
    top: 30px;
    left: 30px;
    width: 150px;
    opacity: 0.2;
}

.hand-bottom-left {
    bottom: 30px;
    left: 30px;
    width: 150px;
    opacity: 0.2;
}

.loading-screen {
    text-align: center;
    padding: 0px;
}

.spinner {
    width: 250px;
    height: 250px;
    margin: 40px auto;
    position: relative;
}

.spinner-circle {
    background-image: url(../images/loader-bg.webp);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    width: 250px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner-inner {
    width: 80%;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: bold;
    color: #000;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-10px);
    }

    75% {
        transform: translateX(10px);
    }
}

.error-message {
    animation: shake 0.3s;
}

.trust-card {
    max-width: 800px;
    margin: 0px auto;
    background: linear-gradient(135deg, #2F57EF 0%, #1B3289 100%);
    border-radius: 38px;
    padding: 25px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 30px;
    align-items: center;
    color: white;
}

.trust-image {
    width: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.trust-image img {
    width: 100%;
    height: auto;
}

.trust-content h3 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
}

.trust-points {
    list-style: none;
}

.trust-points li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    font-size: 17px;
    line-height: 1.4;
    font-weight: normal;
}
.trust-points li:last-child{
    margin-bottom:0;
}
.trust-card .trust-content ul.trust-points {
    margin: 0;
    padding: 0;
}

.trust-points li:before {
    content: '•';
    position: absolute;
    left: 0;
    font-size: 20px;
    color: #fff;
    top:-5px;
}

.offer-screen {
    padding: 0 0px 20px;
}

.offer-title {
    font-size: 36px;
    line-height: 1.2;
    font-weight: 700;
    background: linear-gradient(135deg, #4D9180 0%, #FF8F3C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 10px;
    text-align: center;
}

.offer-title .name {
    background: linear-gradient(135deg, #10b981 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.offer-title .highlight {
    background: linear-gradient(135deg, #f59e0b 0%, #d946a6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.offer-subtitle {
    text-align: center;
    color: #000;
    margin-bottom: 20px;
    font-size: 18px;
}

.offer-card {
    margin: 0 auto 15px;
    background: linear-gradient(180deg, #93AAFF 0%, #fff 100%);
    border-radius: 50px;
    padding: 20px;
    display: grid;
    grid-template-columns:530px 1fr;
    gap: 20px;
    align-items: center;
}

.offer-image {
    width: 100%;
    object-fit: cover;
}

.offer-image img {
    width: 100%;
    height: auto;
}

.offer-details {
    color: #000;
}

.offer-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
    font-size: 32px;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #E72D64 0%, #2F57EF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.offer-badge img {
    width: 50px;
    height: auto;
}

.price-section {
    margin: 20px 0;
}

.price-label {
    font-size: 20px;
    color: #000;
    font-weight: 600;
}

.price-section .price-label span.price-value {
    font-size: 24px;
    background: linear-gradient(135deg, #2F57EF 0%, #1B3289 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;    
}

.today-price {
    font-size: 20px;
    color: #000;
    font-weight: 600;
}
.today-price span.today-price-value {
    font-size: 32px;
    background: linear-gradient(135deg, #2F57EF 0%, #1B3289 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;    
}

.discount-badge {
    display: inline-block;
    color: #cd3277;
    font-size: 12px;
    text-decoration: line-through;
    /* background: #fef3c7; */
    /* padding: 4px 12px; */
    /* border-radius: 20px; */
    /* font-weight: bold; */
}

.timer {
    background: #2F57EF;
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    margin: 15px 0;
    width: 100%;
}

.feature-badges {
    display: flex;
    gap: 0;
    flex-wrap: wrap;
    justify-content: center;
}
.feature-badge {
    /* background: white; */
    padding: 0 10px 0;
    /* border-radius: 20px; */
    font-size: 11px;
    color: #000;
    font-weight: 500;
    border-right: #000 solid 1px;
}
.feature-badge:last-child {
    border-right: 0;
}
.cta-card {
    margin: 0 auto;
    background: #FFD8E1;
    border-radius: 24px;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    gap: 30px;
    overflow: hidden;
}

.cta-image {
    width: 120px;
    height: 120px;
    object-fit: cover;    
}
.cta-image img {
    width: 100%;
    height: auto;
}

.cta-text {
    flex: 1;
}

.cta-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #000;
}
.cta-subtitle {
    font-size: 15px;
    color: #000;
    line-height: 1.5;
}

.enroll-btn {
    font-size: 20px;
    font-weight: 500;
    color: #E72D64 ;
    padding: 10px 40px;
    border: 3px solid transparent;
    border-radius: 50px;
    background: linear-gradient(#fff, #fff) padding-box, linear-gradient(90deg, #ff2a6d, #3b4cc0) border-box;
    cursor: pointer;
    transition: all 0.3s ease;     
}

.enroll-btn:hover {
    background: #d946a6;
    color: white;
}

@media (max-width: 991px) {
    .trust-card {
        grid-template-columns: 1fr;
    }

    .offer-card {
        grid-template-columns: 1fr;
    }

    .cta-card {
        flex-direction: column;
        text-align: center;
    }

    .climb-image {
        width: 200px;
        right: 20px;
    }
}

/* welcome section */
.welcome_bg {
    text-align: center;
    padding: 50px 40px !important;
    background: linear-gradient(180deg, #E9EEFF 0%, #ffffff 100%);
    border-top-left-radius: 80px;
    border-top-right-radius: 80px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom:20px;
    margin-top: 30px;
}

.welcome_bg h3 {
    font-size: 3.5rem;
    line-height: 1;
    font-weight: 700;
    background: linear-gradient(135deg, #2F57EF 0%, #1B3289 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-bottom: 0px;
}

.welcome_bg h3 img {
    width: 35px;
    height: auto;
}

.welcome_bg p {
    font-size: 16px;
    line-height: 1.5;
}


.welcome_bg .btn-continue a {
    background: #2F57EF;
    color: white;
    border: none;
    padding: 13px 60px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    margin: 40px auto 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.welcome_bg .btn-continue a:hover {
    background: #1B3289;
    color: #fff;
}

.back-and-pagination{
    display: flex;
    justify-content: space-between;
}
.progress-bar-line {
    position: relative;
}

#progressText {
    /* position: absolute;
    right: -35px;
    top: -10px; */
    color: #2F57EF;
    font-weight: 500;
    font-size: 14px;
}

/* Third slide css */

.what_brings {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 15px;
    justify-items: center;
    width: 100%;
    margin: auto;
}

.what_brings_cont {
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    gap: 25px;
    display: flex;
    padding: 0 20px;
    justify-content: center;
    text-align: left;
    align-items: center;
    border-radius: 28px;
    width: auto;
    transition: all 0.3s ease;
}

/* .what_brings_cont:hover {
    background: linear-gradient(135deg, #7A95FB 0%, #1232AD 100%);
} */

.what_brings_cont.selected {
    background: linear-gradient(135deg, #7A95FB 0%, #1232AD 100%);
}

.what_brings_cont .brings_title {
    color: #000;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
}

.what_brings_cont.selected .brings_title {
    color: #fff;
    line-height: 1.2;
}

/* .what_brings_cont:hover .brings_title {
    color: #fff;
} */

.forthSlide .row {
    display: flex;
    align-items: center;
}

.forthSlideImg img {
    width: 70%;
    height: auto;
}

.forthSlideRight .simple-option {
    text-align: left;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.forthSlideRight {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0 30px;
}

.forthSlideRight.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    justify-items: stretch;
}

.forthSlideRight.two-col .simple-option:nth-last-child(1):nth-child(odd) {
    grid-column: 1 / span 2;
    justify-self: center;
    width: 50%;
    /* optional – adjust for preferred width */
}

.shap-3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 235px;
    height: 260px;
    z-index: -1;
}

.shap-3 img {
    width: 100%;
    height: auto;
}

.shap-4 {
    position: absolute;
    bottom: 0;
    left: 40%;
    width: 335px;
    height: auto;
    transform: translate(-50%, 0%);
    z-index: -1;
}

.shap-4 img {
    width: 100%;
    height: auto;
    opacity: 0.2;
    transition: opacity .25s ease;
}

.shap-5 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 575px;
    height: auto;
    left: unset;
    z-index: -1;
}

.shap-5 img {
    width: 100%;
    height: auto;
    opacity: 0.2;
    transition: opacity .25s ease;
}

.shap-6 {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 600px;
    height: auto;
    transform: translate(-50%, 0%);
    z-index: -1;
}

.shap-6 img {
    width: 100%;
    height: auto;
    opacity: 0.2;
    transition: opacity .25s ease;
}

.shap-7 {
    position: absolute;
    top: 0;
    right: 0;
    width: 235px;
    height: auto;
    z-index: -1;
}

.shap-7 img {
    width: 100%;
    height: auto;
}

.shap-8 {
    position: absolute;
    top: 0;
    left: 0;
    width: 235px;
    height: auto;
    z-index: -1;
}

.shap-8 img {
    width: 100%;
    height: auto;
}

.shap-9 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 235px;
    height: auto;
    z-index: -1;
}

.shap-9 img {
    width: 100%;
    height: auto;
    opacity: 1;
    transition: opacity .25s ease;
}

.shap-10 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 465px;
    height: auto;
    z-index: -1;
}

.shap-10 img {
    width: 100%;
    height: auto;
    opacity: 0.2;
    transition: opacity .25s ease;
}

.shap-11 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 325px;
    height: auto;
    z-index: -1;
}

.shap-11 img {
    width: 100%;
    height: auto;
    opacity: 0.2;
    transition: opacity .25s ease;
}

/* weelly section */

.weekly_bg {
    text-align: center;
    padding: 30px;
    background: linear-gradient(180deg, #93AAFF 0%, #FFFFFF 100%);
    border-radius: 48px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    /* border: #000 solid 1px; */
    overflow: hidden;
}

.content h2.weekly.question-title {
    font-size: 36px;
    line-height: 1.2;
    font-weight: 700;
    background: linear-gradient(135deg, #4D9180 0%, #9747FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 20px;
}

.weekly_bg ul.weeks-list {
    margin: 0 0 25px;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    position: relative;
}

.weekly_bg ul.weeks-list li {
    list-style: none;
}

.weekly_bg ul.weeks-list li .white_card {
    background: #fff;
    border-radius: 20px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 18px;
    min-height: 155px;
    padding-left: 0;
    padding-right: 0;
}

.weekly_bg ul.weeks-list li .white_card .icon-title {
    display: flex;
    gap: 10px;
    align-items: center;
    border-bottom: #1C7D65 solid 1px;
    padding: 0 20px;
    padding-bottom: 7px;
    margin-bottom: 7px;
}

.weekly_bg ul.weeks-list li .white_card .icon-title img {
    width: 65px;
    height: auto;
}

.weekly_bg ul.weeks-list li .white_card .icon-title h4 {
    margin: 0;
    font-size: 19px;
    font-weight: 600;
}

.weekly_bg ul.weeks-list li .white_card p {
    text-align: left;
    font-weight: 600;
    font-size: 17px;
    line-height: 1.2;
    margin: 0;
    padding: 7px 20px 0;
}
.weekly_bg ul.weeks-list button.arrow-button {
    outline: none;
    background: #fff;
    border: #2F57EF solid 1px;
    width: 65px;
    height: 65px;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;

    position: absolute;
    right: 18%;
    bottom: 45px;
}

.weekly_bg ul.weeks-list button.arrow-button i {
    font-size: 25px;
    color: #2F57EF;
}
.weekly_bg ul.weeks-list button.arrow-button:hover {
    /* transform: translateY(-5px); */
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-color: #2F57EF;
    background: #2F57EF;
}
.weekly_bg ul.weeks-list button.arrow-button:hover i, .arrow-button:hover i {
    color: #fff !important;
}

.offer-banner {
  position: relative;
  width: 100%;
  height: 50px;
  background: linear-gradient(90deg, #3455ff, #3d68ff);
  border-radius: 50px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto 13px;
}

.offer-text {
  color: white;
  font-size: 18px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
}

.offer-text strong {
  font-weight: 700;
}

.blur-left,
.blur-right {
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.blur-left {
    left: 0;
    background: linear-gradient(to right, #1435f5, transparent);
    backdrop-filter: blur(0px);
}

.blur-right {
  right: 0;
  background: linear-gradient(to left, #1435f5, transparent);
  backdrop-filter: blur(0px);
}

.offer-banner span.offer-text img {
    width: 28px;
    height: auto;
}

/* disclaimer */
#disclaimer {
    /* background: rgb(255 255 255 / 40%); */
    padding: 0 15px;
}
#disclaimer h4 {
    color: #565656;
    font-size: 20px;
    margin: 0 0 7px;
}

#disclaimer p { 
    font-size: 13px; line-height: 1.5; margin-bottom: 5px; 
    color:#565656;    
}



.chat-section {
    display: grid;
    justify-content: space-between;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
#disclaimer i { color: #3048c4; }
 
#chat_with_us {
    background:rgb(77 145 128 / 8%);
    padding: 30px;
   margin:25px 0 0;
}
#chat_with_us .chat-section .text_1 {
    text-align: center;
    color: #565656;
    font-size: 16px;
    margin-bottom:15px;
}
.chat-section .chat-with-us {
    border: #565656 solid 1px;
    padding: 20px;
    border-radius: 8px;
}
.chat-section .chat-with-us h5 {
    color: #565656;
    font-size: 16px;
}
.chat-section .chat-with-us p {
    color: #565656;
    font-size: 13px;
    margin:0;
}
.chat-section .chat-with-us p a{
    color:#3248b7;
}
.list-data {
    display: flex;
    justify-content: center;
}
.list-data ul {
    display: flex;
    justify-content: center;
    margin:5px 0 6px; padding: 0;
}
.list-data ul li{
    list-style: none;
    position: relative;
}
.list-data ul li::after{
    content: '';
    position: absolute;
    right: -2px; background: #565656;
    height: 20px; width: 1px; top: 4px;
}
.list-data ul li a{
    text-decoration: underline;
    color: #565656;
    font-size: 13px;
    padding: 0 18px;
}
.list-data ul li a:hover{
    text-decoration: none;
    color:#000;
}
.list-data ul li:last-child::after{
    display: none;
}
.text_2 p{
    text-align: center;
    text-decoration: none;
    color:#565656;
    font-size: 13px;
    margin:0;     
}
.copyright p {
    margin: 0;
    font-size: 13px;
    text-align: center;
    padding: 0;
    color:#565656;
}
button#goBack {
    padding-bottom: 7px;
    border: none;
    background: transparent;
    font-size: 15px;
    font-weight: 700;    
}
 
.multi-row{
    display: flex;
    flex-direction: column;
    gap: 5px;    
}
.multi-row label {
    font-size: 12px;
    color: #666;
    font-style: italic;
    font-weight: 400;
}
.text-field-area{
    text-align: left;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    background: white;
    border-radius: 16px;
    padding: 35px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    border:none;
    left: 0;
}
.btn-continue{
    width: fit-content;
    margin: 0 auto;
}
.img-warea {
    margin: 0 auto;
    max-width: 480px;
    gap: 24px;
    margin-bottom:50px;
}
.img-warea img{
    width: 200px;
    border-radius: 10px;
}

 .testimonial-section {
            /* max-width: 900px; */
            width: 100%;
            margin: 60px auto 0px;
            
        }

        .testimonial-card {
            background: #f5f5f5;
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 3rem;
           
            min-height: 400px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .quote-icon {
            font-size: 3rem;
            color: #667eea;
            opacity: 0.3;
            margin-bottom: 1rem;
        }

        .testimonial-text {
            font-size: 1.25rem;
            line-height: 1.8;
            color: #333;
            margin-bottom: 2rem;
            font-style: italic;
            text-align: center;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .author-image {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid #667eea;
        }

        .author-info h5 {
            margin: 0;
            color: #333;
            font-weight: 600;
        }

        .author-info p {
            margin: 0;
            color: #666;
            font-size: 0.9rem;
        }

       
 .carousel-control-prev i,
        .carousel-control-next i{
            color:#000
        }
        .carousel-control-prev,
        .carousel-control-next {
            width: 50px;
            height: 50px;
            /* background: rgba(255, 255, 255, 0.9); */
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0.8;
            transition: all 0.3s ease;
        }

        .carousel-control-prev:hover,
        .carousel-control-next:hover {
            opacity: 1;
            background: white;
        }

        .carousel-control-prev {
            left: 0px;
        }

        .carousel-control-next {
            right: 0px;
        }

        /* .carousel-control-prev-icon,
        .carousel-control-next-icon {
            filter: invert(1);
            width: 20px;
            height: 20px;
        } */

        .carousel-indicators {
            bottom: -50px;
        }

        .carousel-indicators button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            border: none;
        }

        .carousel-indicators button.active {
            background-color: white;
        }

        @media (max-width: 768px) {
            .testimonial-card {
                padding: 2rem;
                min-height: 350px;
            }

            .testimonial-text {
                font-size: 1.1rem;
            }

            .carousel-control-prev {
                left: -10px;
            }

            .carousel-control-next {
                right: -10px;
            }
        }
.testimonial-section .quote-img{
    width: 50px !important;
    margin:0 auto 30px;
}
.author-info{
    text-align: left;
}

/*before after css*/
#container {
  position: relative;
  width: 100%;
    height: auto;
    aspect-ratio: 4 / 2;
    margin: 70px 0;
}

.img-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.img-wrapper:nth-child(2) {
  clip-path: inset(0px 0px 0px 50%);
}

.img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
}

#line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: .2rem;
  height: 100%;
  background-color: #FAFAFA;
}

input {
  /* reset */
  appearance: none;
  -webkit-appearance: none;
  background-color: transparent;
  /* custom */
  position: absolute;
  width: calc(100% + 2.25rem);
  height: 100%;
  left: -1.125rem;
}

input::-webkit-slider-thumb {
  /* reset */
  -webkit-appearance: none;
  appearance: none;
  /* custom */
  height: 2.25rem;
  width: 2.25rem;
  border: .25rem solid #fff;
  border-radius: 50%;
  box-shadow: 0px 0px 8px 2px rgba(0,0,0,0.1);
  background-color: #fff;
  background-image: url('data:image/svg+xml;utf8,%3Csvg xmlns%3D%22http%3A//www.w3.org/2000/svg%22 height%3D%2224px%22 viewBox%3D%220 -960 960 960%22 width%3D%2224px%22 fill%3D%22%23000%22%3E%3Cpath d%3D%22M286.15-293.85 100-479.62l185.77-185.76 42.15 41.76-113 113.62h530.16l-113-113.62 42.15-41.76L860-479.62 674.23-293.85l-42.54-41.77 113.39-114H214.54l113.38 114-41.77 41.77Z%22/%3E%3C/svg%3E');
  background-size: cover;
  cursor: grab;
}

input::-moz-range-thumb {
  height: 2.25rem;
  width: 2.25rem;
  border: .25rem solid #fff;
  border-radius: 50%;
  box-shadow: 0px 0px 8px 2px rgba(0,0,0,0.1);
  background-color: #fff;
  background-image: url('data:image/svg+xml;utf8,%3Csvg xmlns%3D%22http%3A//www.w3.org/2000/svg%22 height%3D%2224px%22 viewBox%3D%220 -960 960 960%22 width%3D%2224px%22 fill%3D%22%23000%22%3E%3Cpath d%3D%22M286.15-293.85 100-479.62l185.77-185.76 42.15 41.76-113 113.62h530.16l-113-113.62 42.15-41.76L860-479.62 674.23-293.85l-42.54-41.77 113.39-114H214.54l113.38 114-41.77 41.77Z%22/%3E%3C/svg%3E');
  background-size: cover;
  cursor: grab;
}

input:active::-webkit-slider-thumb {
  cursor: grabbing;
}

input:active::-moz-slider-thumb {
  cursor: grabbing;
}
/*before after css*/
.text_2 > p{
    margin:0 5%;
}
#progressContainer{
    margin-bottom: 30px;
}
.info-img{
    margin: 0 auto;
    text-align: center;
    display: block;
}
.content p{
    margin-bottom:10px;
}
.recovery-btn{
    height:max-content
}
.content-box-six{
    background:linear-gradient(180deg, #dfe5f9 0%, #FFFFFF 100%);
    padding:30px;
    border-radius:25px;
    border:1px solid #e3e5ed;
}
.content-box-six h3{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
}
.content-box-six ul{
    margin:0;
    padding:0;
}
.content-box-six li{
    position: relative;
    list-style-type: none;
    padding:0 0 0 22px;
    margin:0 0 10px 0;
}
.content-box-six li img{
    position: absolute;
    left: 0;
    top: 5px;
}
.discount-warea{
    margin:30px 0;
}
.discount-warea h3{
    font-weight: 800;
    margin-top:10px;
    font-size: 35px;
    background: linear-gradient(135deg, #E72D64 0%, #2F57EF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

    .promo-banner {
            background: white;
            border: 2px solid #4d9180;
            border-radius: 16px;
            padding: 20px 30px;
            display: flex;
            margin:0 auto;
            justify-content: space-between;
            align-items: center;
            max-width: 550px;
            width: 100%;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
.promo-banner .continue-btn{
    margin:0 !important;
}
        .promo-text {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        .promo-label {
            color: #000;
            font-size: 15px;
            font-weight: 600;
        }

        .promo-timer {
            color: #01579b;
            font-size: 32px;
            font-weight: 700;
            line-height: 32px;
        }

        .promo-btn {
            background: #29b6f6;
            color: white;
            border: none;
            border-radius: 12px;
            padding: 15px 30px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(41, 182, 246, 0.3);
        }

        .promo-btn:hover {
            background: #039be5;
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(41, 182, 246, 0.4);
        }

        .comparison-container {
            margin:50px auto;
            background: white;
            border-radius: 16px;
            overflow: hidden;
            max-width: 550px;
            width: 100%;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
            border: 1px solid #ddd;
        }

        .tabs {
            display: grid;
            grid-template-columns: 1fr 1fr;
            background: #f5f5f5;
        }

        .tab {
            padding: 20px;
            text-align: center;
            font-size: 16px;
            font-weight: 600;
            color: #000;
            background: white;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .tab:first-child {
            border-right: 1px solid #e0e0e0;
        }

        .comparison-content img {
            width:100%;
        }

       

        @media (max-width: 600px) {
            .promo-banner {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }

            .promo-timer {
                font-size: 28px;
            }

            .tab {
                font-size: 14px;
                padding: 15px;
            }
        }
        .multi-row small{
            font-size: 16px;
            color:#2F57EF;
        }
         .multi-row small strike{
            font-size:14px;
            color:#999999;
         }
         .usp-text{
            text-align: center;
         }
         .usp-text .sml-txt{
font-size: 14px !important;
    color: #6B7385 !important;
    text-align: center !important;
    margin-bottom: 0 !important;
    line-height: 22px !important;
         }

         .call-btn{
            background-color: #C9EDE5;
    /* background-color: #FFD8E3; */
    border-radius: 40px;
    border: 2px solid #FFFFFF;
    font-size: 14px;
    color: #192335;
    text-align: center;
    padding: 10px 30px;
    display: inline-block;
    filter: drop-shadow(0px 10px 10px #f0f0f0);
    font-weight: 600;
    text-decoration: none;
         }
         .call-btn:hover {
    background-color: #66b1b157;
}
.certified_col{
    margin:40px 0;
}
.certified_col ul {
    display: grid;
    grid-template-columns: 2fr 2fr 2fr 2fr;;
    gap: 10px;
    padding:0;
}
.certified_col ul li {
    background: #fff;
    list-style: none;
    border-radius: 12px;
    padding: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transition: all 0.3s ease-in-out;
    border: 1px solid #ddd;
}
.certified_col ul li div {
    display: flex;
    align-items: center;
    gap: 7px;
}
.certified_col ul li div p {
    font-size: 14px;
    line-height: 1.2;
    padding: 0;
    margin: 0;
    font-weight: 500;
}

.marquee-container {
            width: 100%;
            overflow: hidden;
            background:linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 15px;
            padding: 30px 0;
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
            margin: 0px 0 20px;
        }

        .marquee {
            display: flex;
            animation: scroll 20s linear infinite;
            width: max-content;
        }

        .marquee:hover {
            animation-play-state: paused;
        }

        .marquee-item {
            display: inline-block;
            padding: 0 30px;
            font-size: 25px;
            font-weight: bold;
            color: white;
            white-space: nowrap;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .marquee-item::after {
            content: "•";
            margin-left: 40px;
            color: rgba(255, 255, 255, 0.5);
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        .title {
            color: white;
            font-size: 48px;
            font-weight: bold;
            text-align: center;
            margin-bottom: 30px;
            text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
        }

        .controls {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }
        
             /*privacy page css*/
        .tp-breadcrumb-space {
    background-position: top right;
    background-size: cover;
    position: relative;
    background-image: none !important;
    background-color: #4d91801f !important;
    padding-top: 30px;
    padding-bottom: 30px;
}
.tp-breadcrumb-title {
    font-size: 25px;
    margin-bottom: 0px;
    color: #000;
    text-align: left;
}
.tp-breadcrumb-list span {
    margin: 0 2px;
    display: inline-block;
    color: #000;
}
.tp-breadcrumb-list span.active a {
    color: #2F57EF;
    text-decoration: none;
}
.privacy-policy-area{
    padding:40px 0;
}
.text_based_cont ul {
    padding:0;
    margin: 15px 0 25px 25px;
}
.text_based_cont ul li {
    padding:0;
    list-style: decimal;
}
.text_based_cont h3 {
    font-size: 22px;    
    margin-bottom: 10px;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 30px;
}
.text_based_cont ul li>ul {
    margin: 2px 20px 5px;
}
.text_based_cont ul li>ul li {
    list-style: circle;
}
.footer-privacy{
    background-color: #f5f5f5;
}
.forthSlideRight.plan-direction {
    display: flex;
}