/* For new page only */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

::-webkit-scrollbar {
    width: 0.5rem;
    height: 0.5rem;
}

/* ::-webkit-scrollbar-track {
    background: #FFF;
} */

::-webkit-scrollbar-thumb {
    background: #E3E3E3;
    border-radius: 10px;
}

/* Remove default focus style */
:focus {
    outline: 0;
}

:root {
    --Primary-blue: #034CAC;
    --Base-black: #231F20;
    --white: #fff;
    --Accent-Color: #FB411F;

    --font-x-large: 44px;
    --font-large: 24px;
    --font-medium: 20px;
    --font-body: 18px;
    --font-small: 16px;
    --font-x-small: 14px;
    --font-12: 12px;

    --font-mulish: 'Mulish', sans-serif;
    --font-caladea: 'Caladea', serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
span,
a {
    font-style: normal;
}

ul,
ol {
    margin-bottom: 0;
}

@media (min-width:1200px) {
    .w-xl-75 {
        width: 75% !important;
        margin: auto;
    }

    .w-xl-55 {
        width: 55% !important;
        margin: auto;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    background-image: url('../images/laugh-with-lg/hero-bg.png');
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: 1200px;
    padding-top: 30px;
    padding-bottom: 0;
    overflow: hidden;
}

.lg-heading {
    font-family: var(--font-caladea);
    font-size: var(--font-x-large);
    font-weight: 700;
    color: var(--Base-black);
    line-height: 1.25;
    margin-bottom: 2px;
}

.sub-heading {
    font-family: var(--font-mulish);
    font-size: var(--font-medium);
    font-weight: 700;
    color: var(--Base-black);
    line-height: 1.3;
    margin-bottom: 16px;
}

.para-text {
    color: var(--Base-black);
    font-family: var(--font-mulish);
    font-size: var(--font-body);
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.color-primary {
    color: var(--Primary-blue);
}

.color-accent {
    color: var(--Accent-Color);
}

.ff-mulish {
    font-family: var(--font-mulish);
}

.ff-caladea {
    font-family: var(--font-caladea);
}

.btn-subscribe {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--white);
    font-family: var(--font-mulish);
    font-size: var(--font-small);
    font-weight: 700;
    padding: 10px 14px 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--white);
    background: linear-gradient(180deg, #F44200 0%, #FF581A 102.38%);
    box-shadow: 0 4px 12px 0 rgba(246, 70, 4, 0.80);
}

.btn-subscribe:hover {
    color: var(--white);
    transform: translateY(-2px);
}

.hero-img-wrapper {
    position: relative;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
}

.hero-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}


/* Text Slider */
.text-slider {
    background: var(--Primary-blue);
    color: var(--white);
    font-family: var(--font-mulish);
    font-size: var(--font-body);
    font-weight: 600;
    line-height: 1.5;
    white-space: nowrap;
    overflow: hidden;
}

/* Slider Top Feature Strip Bar */
.slider-strip-bar {
    background: #021E47;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.slider-strip-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.slider-strip-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 24px;
    border-radius: 12px;
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    background-color: rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
}

.slider-strip-item:hover {
    border-color: #FFC700;
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.slider-strip-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.slider-strip-text {
    font-family: var(--font-mulish);
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    white-space: nowrap;
}

.text-slider .slide-track {
    display: flex;
    align-items: center;
    gap: 24px;
    width: max-content;
    animation: text-scroll 70s linear infinite;
}

.text-slider .slide {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.text-slider .slide h3 {
    font-family: var(--font-mulish);
    font-size: var(--font-body);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0;
    white-space: nowrap;
}

@keyframes text-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 991px) {
    .slider-strip-wrapper {
        gap: 12px;
    }

    .slider-strip-item {
        padding: 8px 18px;
        gap: 10px;
    }

    .slider-strip-text {
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .slider-strip-bar {
        padding: 14px 0;
    }

    .slider-strip-wrapper {
        gap: 8px;
    }

    .slider-strip-item {
        padding: 6px 12px;
        border-radius: 8px;
        gap: 6px;
    }

    .slider-strip-text {
        font-size: 12px;
    }

    .slider-strip-icon svg {
        width: 20px;
        height: 20px;
    }
}

/* Watch Video Section */
.watch-video-section {
    background-color: #113868;
    padding-top: 50px;
    padding-bottom: 65px;
    border-radius: 0 0 50px 50px;
    position: relative;
    z-index: 1;
}

.watch-video-section .lg-heading {
    color: var(--white);
    margin-bottom: 12px;
}

.watch-video-section .para-text {
    color: var(--white);
    opacity: 0.9;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

.video-card {
    background-color: var(--white);
    border-radius: 24px;
    padding: 16px;
    height: 100%;
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.video-thumb-box {
    position: relative;
    flex: 0 0 55%;
    max-width: 55%;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 16 / 9;
    background-color: #afafaf;
}

.video-thumb-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

.shorts-card iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
}

.video-thumb-box iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 16px;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-thumb-box:hover .video-play-btn {
    background: rgba(255, 255, 255, 0.7);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-play-btn svg {
    width: 18px;
    height: 18px;
    fill: var(--white);
    margin-left: 2px;
}

.video-card-content {
    flex: 1 1 45%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.demo-badge {
    display: inline-block;
    background-color: #F5B718;
    color: var(--Base-black);
    font-family: var(--font-mulish);
    font-size: var(--font-12);
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 10px;
}

.video-card-title {
    font-family: var(--font-caladea);
    font-size: var(--font-medium);
    font-weight: 700;
    color: var(--Base-black);
    line-height: 1.3;
    margin-bottom: 8px;
}

.video-card-desc {
    font-family: var(--font-mulish);
    font-size: var(--font-x-small);
    font-weight: 400;
    color: var(--Base-black);
    line-height: 1.45;
    margin-bottom: 0;
}

/* Global Icons Shorts Section */
.global-icons-section {
    padding-top: 70px;
    padding-bottom: 120px;
    border-radius: 0 0 50px 50px;
    background-color: var(--white);
}

.shorts-card {
    position: relative;
    width: 250px;
    height: 446px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shorts-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.shorts-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

.shorts-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.shorts-card:hover .shorts-play-btn {
    background: rgba(255, 255, 255, 0.75);
    transform: translate(-50%, -50%) scale(1.1);
}

.shorts-play-btn svg {
    width: 22px;
    height: 22px;
    fill: var(--white);
    margin-left: 3px;
}

/* Highlights Section */
.highlights-section {
    padding-top: 70px;
    padding-bottom: 70px;
}

.highlights-section .lg-heading {
    color: var(--Primary-blue);
    margin-bottom: 12px;
}

.highlights-section .sub-heading {
    color: var(--Base-black);
    font-size: var(--font-body);
    font-weight: 400;
    margin-bottom: 50px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    justify-content: start;
    gap: 16px;
}

.highlight-item:last-child {
    margin-bottom: 0;
}

.highlight-number {
    font-family: var(--font-mulish);
    font-size: var(--font-medium);
    font-weight: 700;
    color: var(--Primary-blue);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    line-height: 1.5;
}

.highlight-number::after {
    content: '';
    display: inline-block;
    width: 32px;
    height: 1px;
    background-color: #999999;
}

.highlight-text {
    font-family: var(--font-mulish);
    font-size: var(--font-body);
    font-weight: 400;
    color: var(--Base-black);
    line-height: 1.5;
    margin-bottom: 0;
    text-align: start;
    min-height: 50px;
}

.highlights-section .d-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Learn Exercises Section */
.learn-exercise-section {
    background-color: #113868;
    padding-top: 58px;
    padding-bottom: 70px;
    border-radius: 0 0 50px 50px;
    margin-top: -50px;
    overflow: hidden;
}

.learn-exercise-img {
    border-radius: 20px;
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.learn-exercise-content .lg-heading {
    color: var(--white);
    margin-bottom: 16px;
    font-size: 32px;
}

.learn-exercise-content p {
    color: var(--white);
    opacity: 0.9;
    font-family: var(--font-mulish);
    font-size: var(--font-body);
    line-height: 1.55;
    margin-bottom: 16px;
}

.learn-exercise-content p:last-child {
    margin-bottom: 0;
}

.program-sub-title {
    color: var(--white);
    font-family: var(--font-mulish);
    font-size: var(--font-medium);
    font-weight: 700;
    margin-top: 50px;
    margin-bottom: 45px;
}

/* Feature Cards */
.exercise-card-wrapper {
    margin-top: 20px;
}

.exercise-icon-wrap {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-color: var(--white);
    border: 3px solid #113868;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto -40px auto;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    overflow: hidden;
}

.exercise-card {
    background-color: var(--white);
    border-radius: 20px;
    padding: 50px 20px 10px 20px;
    height: calc(100% - 40px);
    text-align: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.exercise-card:hover {
    transform: translateY(-4px);
}

.exercise-card h4 {
    color: var(--Base-black);
    font-family: var(--font-caladea);
    font-size: var(--font-large);
    font-weight: 600;
    line-height: 1.45;
    margin-bottom: 8px;
    text-align: center;
}

.exercise-card p {
    color: var(--Base-black);
    font-family: var(--font-mulish);
    font-size: var(--font-small);
    font-weight: 600;
    line-height: 1.45;
    margin-bottom: 0;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .video-card {
        flex-direction: row;
        gap: 20px;
        padding: 16px;
    }

    .video-thumb-box {
        flex: 0 0 40%;
        max-width: 40%;
    }

    .video-card-content {
        flex: 1 1 60%;
    }

    .hero-section {
        padding-top: 40px;
    }

    :root {
        --font-x-large: 36px;
        --font-large: 22px;
    }

    .learn-exercise-section {
        padding-bottom: 30px;
        border-radius: 0 0 28px 28px;
    }

    .learn-exercise-content .lg-heading {
        margin-top: 20px;
        font-size: 24;
    }

    .program-sub-title {
        margin-top: 35px;
        margin-bottom: 35px;
    }

    .exercise-card-wrapper {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .highlights-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .highlights-section .sub-heading {
        margin-bottom: 30px;
    }

    :root {
        --font-x-large: 32px;
        --font-large: 20px;
        --font-medium: 18px;
        --font-body: 16px;
        --font-small: 14px;
        --font-x-small: 12px;
    }

    .highlight-number::after {
        width: 20px;
    }

    .highlight-text {
        min-height: auto;
    }

    .highlights-section .d-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 576px) {
    :root {
        --font-x-large: 26px;
        --font-large: 18px;
        --font-medium: 16px;
        --font-body: 14px;
        --font-small: 12px;
        --font-x-small: 12px;
    }
    .watch-video-section {
        padding-top: 40px;
        padding-bottom: 20px;
        border-radius: 0 0 32px 32px;
    }

    .video-card {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        padding: 14px;
    }

    .video-thumb-box {
        flex: 0 0 auto;
        width: 100%;
        max-width: 100%;
    }

    .video-card-content {
        flex: 0 0 auto;
        width: 100%;
    }

    .global-icons-section {
        padding-top: 40px;
        padding-bottom: 100px;
        border-radius: 0 0 28px 28px;
    }

    .shorts-card {
        width: 240px;
        height: 428px;
    }

    .hero-section {
        padding-top: 30px;
        background-size: 220%;
    }

    .hero-main-heading {
        margin-bottom: 12px;
    }

    .hero-sub-heading {
        margin-bottom: 12px;
    }

    .hero-desc {
        margin-bottom: 20px;
    }

    .btn-subscribe {
        padding: 8px 12px 8px 20px;
    }
}

/* Daily Health Tips & Inspirational Quotes Section */
.health-tips-quotes-section {
    background: linear-gradient(180deg, #F3FAFC 0%, #FFFFFF 100%);
    padding-top: 70px;
    padding-bottom: 70px;
}

.health-tips-quotes-section .lg-heading {
    color: var(--Primary-blue);
    margin-bottom: 16px;
}

.health-tips-quotes-section .sub-heading {
    color: var(--Base-black);
    font-size: var(--font-body);
    font-weight: 400;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
}

/* Ticker Container & Floating Pill Badge */
.guidance-container-wrapper {
    position: relative;
    margin-top: 30px;
    margin-bottom: 60px;
}

.guidance-pill-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #057A85;
    color: var(--white);
    font-family: var(--font-mulish);
    font-size: var(--font-body);
    font-weight: 600;
    padding: 8px 28px;
    border-radius: 50px;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(5, 122, 133, 0.25);
    white-space: nowrap;
}

.guidance-ticker-box {
    background-color: var(--white);
    border-radius: 100px;
    padding: 30px 0px 24px 0px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    position: relative;
    border: 1px solid #E8F5F7;
}

.guidance-swiper .swiper-wrapper {
    transition-timing-function: linear !important;
}

.guidance-topic-item {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 6px 16px;
    white-space: nowrap;
    width: auto !important;
}

.guidance-icon-badge {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #E2F7F9;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.guidance-topic-text {
    font-family: var(--font-mulish);
    font-size: var(--font-body);
    font-weight: 700;
    color: var(--Base-black);
    margin-bottom: 0;
}

/* Quotes Swiper Slider */
.quotes-swiper-wrapper {
    position: relative;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 60px;
}

.swiper-slide {
    height: auto;
}

.quote-card {
    background-color: var(--Primary-blue);
    border-radius: 24px;
    padding: 45px 50px;
    color: var(--white);
    text-align: center;
    box-shadow: 0 10px 30px rgba(3, 76, 172, 0.2);
    height: 100%;
}

.quote-text {
    font-family: var(--font-mulish);
    font-size: 22px;
    font-weight: 600;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 24px;
    color: var(--white);
}

.quote-author {
    font-family: var(--font-caladea);
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 0;
    color: var(--white);
}

/* Custom Swiper Buttons for Quotes */
.quotes-swiper-wrapper .quotes-btn-prev,
.quotes-swiper-wrapper .quotes-btn-next {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: var(--Primary-blue);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(3, 76, 172, 0.3);
    transition: all 0.3s ease;
}

.quotes-swiper-wrapper .quotes-btn-prev {
    left: 0;
}

.quotes-swiper-wrapper .quotes-btn-next {
    right: 0;
}

.quotes-swiper-wrapper .quotes-btn-prev:hover,
.quotes-swiper-wrapper .quotes-btn-next:hover {
    background-color: #023a85;
    transform: translateY(-50%) scale(1.08);
}

.quotes-swiper-wrapper .quotes-pagination {
    position: relative;
    bottom: auto;
    margin-top: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.quotes-swiper-wrapper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #CBD5E1;
    opacity: 1;
    border-radius: 50%;
    transition: all 0.3s ease;
    margin: 0 !important;
}

.quotes-swiper-wrapper .swiper-pagination-bullet-active {
    width: 28px;
    border-radius: 10px;
    background-color: var(--Primary-blue);
}

@media (max-width: 767px) {
    .health-tips-quotes-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .guidance-ticker-box {
        border-radius: 24px;
        padding: 35px 12px 20px 12px;
    }

    .guidance-pill-badge {
        font-size: 14px;
        padding: 6px 18px;
    }

    .quotes-swiper-wrapper {
        padding: 0;
    }

    .quote-card {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .quote-text {
        font-size: 17px;
    }

    .quote-author {
        font-size: 20px;
    }

    .quotes-swiper-wrapper .quotes-btn-prev,
    .quotes-swiper-wrapper .quotes-btn-next {
        display: none;
    }
}

/* Benefits Section */
.benefits-section {
    padding-top: 70px;
    padding-bottom: 70px;
    background-color: var(--white);
}

.benefits-section .lg-heading {
    color: var(--Primary-blue);
    margin-bottom: 12px;
}

.benefits-section .sub-heading {
    color: var(--Base-black);
    font-size: var(--font-body);
    font-weight: 400;
    margin-bottom: 50px;
}

.benefit-card {
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.benefit-card-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    border-radius: 20px 20px 0 0;
}

.benefit-card-body {
    padding: 16px 20px 20px 20px;
    border-radius: 20px;
    margin-top: -20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.benefit-card-title {
    font-family: var(--font-mulish);
    font-size: var(--font-body);
    font-weight: 700;
    margin-bottom: 6px;
}

.benefit-card-desc {
    font-family: var(--font-mulish);
    font-size: var(--font-small);
    font-weight: 400;
    color: var(--Base-black);
    margin-bottom: 0;
}

/* Individual Card Accent Color Schemes */
.benefit-card-yellow .benefit-card-body {
    background-color: #FFF9E6;
    border: 2px solid #D9A74A;
}

.benefit-card-yellow .benefit-card-title {
    color: #855F0D;
}

.benefit-card-teal .benefit-card-body {
    background-color: #E6FAF7;
    border: 2px solid #14B8A6;
}

.benefit-card-teal .benefit-card-title {
    color: #0F766E;
}

.benefit-card-pink .benefit-card-body {
    background-color: #FFEAEA;
    border: 2px solid #F87171;
}

.benefit-card-pink .benefit-card-title {
    color: #DC2626;
}

.benefit-card-blue .benefit-card-body {
    background-color: #EBF2FF;
    border: 2px solid #3B82F6;
}

.benefit-card-blue .benefit-card-title {
    color: #1D4ED8;
}

.benefit-card-purple .benefit-card-body {
    background-color: #FDE8FF;
    border: 2px solid #D946EF;
}

.benefit-card-purple .benefit-card-title {
    color: #A21CAF;
}

.benefit-card-green .benefit-card-body {
    background-color: #EBFEEB;
    border: 2px solid #22C55E;
}

.benefit-card-green .benefit-card-title {
    color: #15803D;
}

@media (max-width: 767px) {
    .benefits-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .benefits-section .sub-heading {
        margin-bottom: 30px;
    }
}

/* What The Program Includes Section */

.program-includes-section .lg-heading {
    color: var(--Primary-blue);
    margin-bottom: 12px;
}

.program-includes-section .sub-heading {
    color: var(--Base-black);
    font-size: var(--font-body);
    font-weight: 400;
    margin-bottom: 50px;
}

.program-includes-card {
    background: #F3F8FF;
    border-radius: 16px;
    padding: 20px;
    padding-left: 60px;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 0 22px;
}

.program-includes-section .row>div:nth-child(even) .program-includes-card {
    margin-right: 0;
}

.program-includes-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(3, 76, 172, 0.08);
}

.program-includes-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 15px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid #B8D6FF;
    background: #1D5397;
    /*#E8F1FF;*/
    color: var(--white);
}

.program-includes-content {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.program-includes-title {
    font-family: var(--font-mulish);
    font-size: var(--font-body);
    font-weight: 700;
    color: var(--Primary-blue);
    margin-bottom: 4px;
}

.program-includes-desc {
    font-family: var(--font-mulish);
    font-size: var(--font-small);
    font-weight: 400;
    color: var(--Base-black);
    margin-bottom: 0;
}

@media (max-width: 767px) {

    .program-includes-card {
        padding: 15px;
        padding-left: 50px;
        margin-left: 30px;
        margin-right: unset;
    }

    .program-includes-icon {
        width: 65px;
        height: 65px;
    }
}

/* Choose Your Joy Plan Section */
.joy-plan-section {
    background-color: #113868;
    border-radius: 60px;
    padding-top: 70px;
    padding-bottom: 70px;
    text-align: center;
}

.joy-plan-section .lg-heading {
    color: var(--white);
    margin-bottom: 12px;
}

.joy-plan-section .sub-heading {
    color: var(--white);
    opacity: 0.9;
    font-size: var(--font-body);
    font-weight: 400;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
}

.plan-card {
    background-color: #1D5397;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 24px;
    padding: 12px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.plan-card-header {
    background-color: #153C6C;
    border-radius: 16px;
    padding: 16px;
    text-align: left;
}

.plan-name {
    font-family: var(--font-mulish);
    font-size: var(--font-large);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.plan-subtitle {
    font-family: var(--font-mulish);
    font-size: var(--font-x-small);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.plan-card-body {
    padding: 20px 12px 12px 12px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.plan-price-wrap {
    margin-bottom: 6px;
}

.plan-price {
    font-family: var(--font-caladea);
    font-size: 32px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 2px;
}

.price-period {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.85;
}

.plan-usd {
    font-family: var(--font-mulish);
    font-size: var(--font-x-small);
    color: rgba(255, 255, 255, 0.75);
    font-weight: 400;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: 18px;
    flex-grow: 1;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    font-family: var(--font-mulish);
    font-size: var(--font-small);
    color: var(--white);
}

.plan-features li:last-child {
    border-bottom: none;
}

.check-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    stroke: var(--white);
}

.btn-plan {
    display: block;
    width: max-content;
    text-align: center;
    padding: 8px 20px;
    border-radius: 50px;
    font-family: var(--font-mulish);
    font-size: var(--font-small);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.btn-plan-outline {
    border-radius: 42px;
    border: 1px solid var(--Primary-color, #1F60B6);
    background: var(--White, #FFF);
    box-shadow: 0 2px 0 0 #003780;
    color: var(--Primary-blue, #034CAC);
}

.btn-plan-outline:hover {
    background-color: #e6f0fa;
    color: #113868;
    transform: translateY(-2px);
}

.btn-plan-solid {
    color: var(--white);
    border-radius: 42px;
    border: 1px solid var(--Primary-color, #1F60B6);
    background: linear-gradient(180deg, #034CAC 0%, #034CAC 102.38%);
    box-shadow: 0 2px 0 0 #003780;
}

.btn-plan-solid:hover {
    background-color: #0b2649;
    color: var(--white);
    transform: translateY(-2px);
}

/* Most Popular Plan Styling */
.plan-card-popular-wrap {
    background-color: #FF4A00;
    border-radius: 28px;
    padding: 14px 10px 10px 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(255, 74, 0, 0.35);
}

.popular-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--white);
    font-family: var(--font-mulish);
    font-size: var(--font-body);
    font-weight: 700;
    padding-bottom: 10px;
}

.plan-card-white {
    background-color: var(--white);
    border: none;
    border-radius: 22px;
    height: calc(100% - 32px);
}

.plan-card-white .header-peach {
    background-color: #FFEFE8;
}

.plan-card-white .header-peach .plan-name {
    color: var(--Base-black);
}

.plan-card-white .plan-usd,
.plan-card-white .header-peach .plan-subtitle {
    color: #666666;
}

.plan-card-white .plan-price {
    color: var(--Base-black);
}

.plan-card-white .plan-features li {
    color: var(--Base-black);
    border-bottom-color: #EAEAEA;
}

.plan-card-white .check-icon {
    stroke: var(--Base-black);
}

@media (max-width: 767px) {
    .joy-plan-section {
        padding-top: 40px;
        padding-bottom: 40px;
        border-radius: 24px;
    }

    .joy-plan-section .sub-heading {
        margin-bottom: 30px;
    }
}

/* What if Your Day Feels Too Heavy Section */
.heavy-day-section {
    padding-top: 80px;
    padding-bottom: 20px;
    background-color: var(--white);
}

.heavy-day-img {
    width: 100%;
    height: 100%;
    max-height: 372px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.heavy-day-title {
    font-family: var(--font-caladea);
    font-size: var(--font-large);
    font-weight: 700;
    color: var(--Base-black);
    line-height: 1.25;
    margin-bottom: 16px;
}

.heavy-day-subtitle {
    font-family: var(--font-mulish);
    font-size: var(--font-body);
    font-weight: 400;
    color: var(--Base-black);
    line-height: 1.5;
    margin-bottom: 28px;
}

.heavy-day-callout {
    border-radius: 24px;
    background: #F8E2BB;
    padding: 18px;
    margin-bottom: 32px;
}

.callout-title {
    font-family: var(--font-caladea);
    font-size: var(--font-large);
    font-weight: 700;
    color: var(--Base-black);
    margin-bottom: 8px;
}

.callout-desc {
    font-family: var(--font-mulish);
    font-size: var(--font-small);
    font-weight: 400;
    color: var(--Base-black);
    line-height: 1.5;
    margin-bottom: 0;
}

.btn-subscribe {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: var(--Accent-Color);
    color: var(--white);
    font-family: var(--font-mulish);
    font-size: var(--font-body);
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(251, 65, 31, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.btn-subscribe:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(251, 65, 31, 0.4);
    background-color: #e23516;
}


@media (max-width: 991px) {
    .heavy-day-section {
        padding-top: 50px;
    }

    .heavy-day-img {
        min-height: 300px;
        margin-bottom: 30px;
    }

    .heavy-day-title {
        font-size: 28px;
    }

    .heavy-day-callout {
        padding: 20px;
    }
}

/* Real People. Real Joy. Section */
.real-people-joy-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

.real-people-joy-section .lg-heading {
    color: var(--Primary-blue);
    margin-bottom: 12px;
}

.real-people-joy-section .sub-heading {
    color: var(--Base-black);
    font-size: var(--font-body);
    font-weight: 400;
    margin-bottom: 50px;
}

.real-joy-swiper-wrapper {
    position: relative;
    padding: 0 64px;
    max-width: 1060px;
    margin: 0 auto;
}

.real-joy-card {
    border: 2px solid var(--Primary-blue);
    padding: 42px;
    box-shadow: 0 10px 30px rgba(3, 76, 172, 0.05);
    height: 100%;
    border-radius: 24px;
    border-bottom: 5px solid var(--Primary-blue, #034CAC);
    background: var(--White, #FFF);
}

.real-joy-card-top {
    display: flex;
    gap: 30px;
    margin-bottom: 35px;
    align-items: flex-start;
}

.real-joy-quote-icon {
    flex-shrink: 0;
}

.real-joy-quote-text {
    font-family: var(--font-mulish);
    font-size: var(--font-body);
    font-weight: 400;
    color: #222222;
    line-height: 1.65;
    margin-bottom: 0;
}

.real-joy-card-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.real-joy-author-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.real-joy-avatar {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    object-fit: cover;
    background-color: #BDE3FF;
    flex-shrink: 0;
}

.author-name {
    font-family: var(--font-mulish);
    font-size: var(--font-medium);
    font-weight: 700;
    color: var(--Primary-blue);
    margin-bottom: 4px;
}

.author-role {
    font-family: var(--font-mulish);
    font-size: var(--font-x-small);
    font-weight: 400;
    color: var(--Base-black);
    margin-bottom: 0;
}

.real-joy-date {
    font-family: var(--font-mulish);
    font-size: var(--font-x-small);
    font-weight: 400;
    color: #888888;
}

.real-joy-btn-prev,
.real-joy-btn-next {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--Primary-blue);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(3, 76, 172, 0.25);
}

.real-joy-btn-prev {
    left: 0;
}

.real-joy-btn-next {
    right: 0;
}

.real-joy-btn-prev:hover,
.real-joy-btn-next:hover {
    background-color: #02367B;
    transform: translateY(-50%) scale(1.08);
}

.real-joy-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 35px;
}

.real-joy-pagination .swiper-pagination-bullet {
    width: 32px;
    height: 8px;
    border-radius: 10px;
    background-color: #C3DAF8;
    opacity: 1;
    transition: all 0.3s ease;
    margin: 0 !important;
}

.real-joy-pagination .swiper-pagination-bullet-active {
    width: 44px;
    background-color: var(--Primary-blue);
}

@media (max-width: 991px) {
    .real-people-joy-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .real-joy-swiper-wrapper {
        padding: 0;
    }

    .real-joy-card {
        padding: 30px 24px;
    }

    .real-joy-card-top {
        gap: 16px;
        margin-bottom: 24px;
    }

    .real-joy-quote-icon svg {
        width: 36px;
        height: 30px;
    }

    .real-joy-card-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .real-joy-btn-prev,
    .real-joy-btn-next {
        top: unset;
        bottom: -18px;
        transform: unset;
    }

    .real-joy-btn-prev {
        left: 10%;
    }

    .real-joy-btn-next {
        right: 10%;
    }

    .real-joy-btn-prev:hover,
    .real-joy-btn-next:hover {
        transform: unset;
    }
}

/* Laughter Yoga with Laughter Guru Section */
.ly-guru-section {
    padding-top: 40px;
    padding-bottom: 40px;
    background-color: var(--white);
}

.ly-guru-heading {
    font-family: var(--font-caladea);
    font-size: var(--font-x-large);
    font-weight: 700;
    color: var(--Base-black);
    line-height: 1.25;
    margin-bottom: 20px;
}

.ly-guru-lead {
    font-family: var(--font-mulish);
    font-size: var(--font-body);
    font-weight: 400;
    color: var(--Base-black);
    line-height: 1.6;
    margin-bottom: 14px;
}

.ly-guru-desc {
    font-family: var(--font-mulish);
    font-size: var(--font-body);
    font-weight: 400;
    color: var(--Base-black);
    line-height: 1.6;
    margin-bottom: 14px;
}

.ly-guru-pill-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ly-guru-pill {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border-radius: 18px;
    font-family: var(--font-mulish);
    font-size: var(--font-body);
    font-weight: 700;
    color: var(--Base-black);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ly-guru-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.ly-guru-pill.pill-yellow {
    background-color: #FEF5D6;
}

.ly-guru-pill.pill-pink {
    background-color: #FFE5E7;
}

.ly-guru-pill.pill-teal {
    background-color: #D4F6F4;
}

.ly-guru-pill-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ly-guru-main-img {
    width: 100%;
    height: auto;
    max-width: 1000px;
    display: block;
    margin: 0 auto;
}

.ly-guru-badge {
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #FEF5D6;
    border: 2px solid #D9A74A;
    border-radius: 16px;
    padding: 16px 36px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    width: max-content;
    max-width: 90%;
    z-index: 2;
    text-align: center;
}

.ly-guru-badge-title {
    font-family: var(--font-caladea);
    font-size: var(--font-large);
    font-weight: 700;
    color: var(--Base-black);
    margin-bottom: 4px;
}

.ly-guru-badge-sub {
    font-family: var(--font-mulish);
    font-size: var(--font-small);
    font-weight: 400;
    color: var(--Base-black);
    margin-bottom: 0;
}

@media (max-width: 767px) {

    .ly-guru-badge {
        bottom: -60px;
        padding: 8px 14px;
        max-width: 100%;
    }
}

/* Auto-Sliding Media Logos Section */
.media-logos-section {
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: var(--white);
    overflow: hidden;
}

.media-logos-swiper .swiper-wrapper {
    transition-timing-function: linear !important;
}

.media-logo-item {
    width: 215px !important;
    height: auto;
    flex-shrink: 0;
}

.media-logo-card {
    background-color: var(--white);
    border-radius: 8px;
    border: 0.8px solid #D5D4D4;
    padding: 20px 16px;
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.media-logo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.media-logo-box {
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.media-logo-quote {
    font-family: var(--font-mulish);
    font-size: 12px;
    font-style: italic;
    color: #666666;
    margin-bottom: 0;
    line-height: 1.45;
}

@media (max-width: 767px) {
    .media-logos-section {
        padding-top: 75px;
        padding-bottom: 20px;
    }

    .media-logo-item {
        width: 180px !important;
    }

    .media-logo-card {
        height: 165px;
        padding: 16px 12px;
    }

    .media-logo-quote {
        font-size: 11px;
    }
}

/* Join The Program Section */
.join-program-section {
    padding-top: 40px;
    padding-bottom: 30px;
    background-color: var(--white);
}

.join-program-card {
    border-radius: 24px;
    overflow: hidden;
    background-color: #113868;
}

.join-card-left {
    background-color: #113868;
    padding: 45px 35px;
}

.personal-note-title {
    font-family: var(--font-caladea);
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
}

.note-video-thumb-box {
    cursor: pointer;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16 / 8;
    width: 100%;
}

.note-video-thumb-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

.note-video-thumb-box iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 16px;
}

.note-video-thumb-box .video-play-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #113868;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.note-video-thumb-box:hover .video-play-badge {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: var(--white);
}

.note-check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    font-family: var(--font-mulish);
    font-size: var(--font-small);
    font-weight: 400;
    color: var(--white);
}

.note-check-list li:last-child {
    border-bottom: none;
}

.note-check-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    stroke: var(--white);
}

.join-card-right {
    border-radius: 24px;
    background: #D9E9FF;
    padding: 40px;
}

.join-program-form .form-label {
    font-family: var(--font-mulish);
    font-size: var(--font-small);
    font-weight: 700;
    color: var(--Base-black);
    margin-bottom: 8px;
}

.join-input {
    background-color: var(--white) !important;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 12px 18px;
    font-family: var(--font-mulish);
    font-size: var(--font-small);
    color: var(--Base-black);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
    transition: all 0.25s ease;
}

.join-input:focus {
    border-color: var(--Primary-blue);
    box-shadow: 0 0 0 3px rgba(3, 76, 172, 0.12);
    outline: none;
}

/* Custom Country Phone Picker with Flag Icons */
.custom-country-phone-wrap {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.country-picker-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 14px;
    background-color: var(--white) !important;
    border: 1px solid #E2E8F0;
    border-right: none;
    border-top-left-radius: 14px;
    border-bottom-left-radius: 14px;
    cursor: pointer;
    transition: all 0.25s ease;
    height: 48px;
    flex-shrink: 0;
}

.country-picker-btn:hover {
    background-color: #F8FAFC !important;
}

.flag-icon-badge {
    width: 30px;
    height: 26px;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.flag-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.selected-country-code {
    font-family: var(--font-mulish);
    font-size: 14px;
    font-weight: 700;
    color: var(--Base-black);
    line-height: 1;
    margin-left: 2px;
}

.dropdown-caret {
    transition: transform 0.25s ease;
}

.custom-country-phone-wrap.active .dropdown-caret {
    transform: rotate(180deg);
}

.phone-number-input {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    height: 48px;
    flex: 1;
}

/* Floating Country Dropdown Card */
.country-dropdown-card {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    max-width: 360px;
    background-color: var(--white);
    border-radius: 16px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.08);
    z-index: 1050;
    display: none;
    overflow: hidden;
    animation: countryDropdownFade 0.2s ease forwards;
}

.custom-country-phone-wrap.active .country-dropdown-card {
    display: block;
}

@keyframes countryDropdownFade {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.country-search-box {
    padding: 10px 12px;
    border-bottom: 1px solid #F1F5F9;
    background-color: #FAFAFA;
}

.country-search-input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    font-family: var(--font-mulish);
    font-size: 14px;
    outline: none;
}

.country-search-input:focus {
    border-color: var(--Primary-blue);
}

.country-list-ul {
    list-style: none;
    padding: 6px 0;
    margin: 0;
    max-height: 245px;
    overflow-y: auto;
}

.country-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    font-family: var(--font-mulish);
    font-size: 14px;
    color: var(--Base-black);
}

.country-list-item:hover,
.country-list-item.selected {
    background-color: #F1F5F9;
}

.country-item-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.country-item-name {
    font-weight: 600;
}

.country-item-code {
    font-weight: 700;
    color: #64748B;
    font-size: 13px;
}

.country-no-results {
    padding: 16px;
    text-align: center;
    font-family: var(--font-mulish);
    font-size: 14px;
    color: #94A3B8;
}

/* Radio Plan Cards Selection in Form */
.form-plan-card {
    display: block;
    position: relative;
    cursor: pointer;
    margin-bottom: 0;
    height: 100%;
}

.form-plan-radio {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.form-plan-card-inner {
    background-color: var(--white);
    border: 1.5px solid #CBD5E1;
    border-radius: 16px;
    padding: 12px 14px;
    position: relative;
    transition: all 0.25s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.form-plan-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    margin-bottom: 2px;
}

.form-plan-name {
    font-family: var(--font-mulish);
    font-size: 15px;
    font-weight: 700;
    color: var(--Base-black);
    line-height: 1.2;
}

/* Custom Radio Circle */
.custom-radio-circle {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #94A3B8;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.custom-radio-circle::after {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--Primary-blue);
    transform: scale(0);
    transition: transform 0.2s ease;
}

/* Checked State */
.form-plan-radio:checked+.form-plan-card-inner {
    border-color: var(--Primary-blue);
    box-shadow: 0 4px 14px rgba(3, 76, 172, 0.15);
    background-color: #F4F8FF;
}

.form-plan-radio:checked+.form-plan-card-inner .custom-radio-circle {
    border-color: var(--Primary-blue);
}

.form-plan-radio:checked+.form-plan-card-inner .custom-radio-circle::after {
    transform: scale(1);
}

.form-plan-sub {
    font-family: var(--font-mulish);
    font-size: 12px;
    font-weight: 600;
    color: #64748B;
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.form-plan-price {
    font-family: var(--font-mulish);
    font-size: 18px;
    font-weight: 800;
    color: var(--Primary-blue);
    line-height: 1;
}

/* Highlighted Popular Card */
.form-plan-card.popular-highlight .form-plan-card-inner {
    border: 2px solid #F59E0B;
    background-color: #FFFDF5;
}

.form-plan-popular-badge {
    position: absolute;
    top: -10px;
    right: 12px;
    background: linear-gradient(135deg, #FCD966 0%, #FCCD34 100%);
    color: #000000;
    font-family: var(--font-mulish);
    font-size: 10px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.form-plan-radio:checked+.form-plan-card-inner.popular-highlight,
.form-plan-card.popular-highlight .form-plan-radio:checked+.form-plan-card-inner {
    border-color: var(--Primary-blue);
    background-color: #F4F8FF;
}

.timezone-note {
    font-family: var(--font-mulish);
    font-size: var(--font-x-small);
    font-weight: 700;
    color: var(--Primary-blue);
}

.payment-security-text {
    font-family: var(--font-mulish);
    font-size: 13px;
    font-weight: 400;
    color: #666666;
}

@media (max-width: 991px) {

    .join-card-left {
        padding: 30px 20px;
    }

    .join-card-right {
        padding: 30px 20px;
    }

    .note-check-list li {
        padding: 9px 0;
    }
}

/* Frequently Asked Questions Section */
.faq-section {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: var(--white);
}

.faq-tab-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 45px;
}

.btn-faq-tab {
    font-family: var(--font-mulish);
    font-size: var(--font-small);
    font-weight: 600;
    padding: 10px 26px;
    border-radius: 50px;
    border: 1.5px solid #555555;
    background-color: transparent;
    color: var(--Base-black);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-faq-tab:hover {
    border-color: var(--Primary-blue);
    color: var(--Primary-blue);
}

.btn-faq-tab.active {
    background-color: var(--Primary-blue);
    border-color: var(--Primary-blue);
    color: var(--white);
}

.faq-wrapper {
    max-width: 960px;
    margin: 0 auto;
}

.faq-accordion-item {
    border: 1.5px solid #B5B5B5;
    border-radius: 16px;
    background-color: var(--white);
    margin-bottom: 16px;
    overflow: hidden;
    transition: border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-accordion-item.active {
    border: 2px solid var(--Primary-blue);
    background-color: #F0F6FF;
}

.faq-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 28px;
    cursor: pointer;
    user-select: none;
}

.faq-question {
    font-family: var(--font-mulish);
    font-size: 18px;
    font-weight: 700;
    color: var(--Base-black);
    margin-bottom: 0;
}

.faq-toggle-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #EBF1F9;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 20px;
    font-weight: 400;
    color: var(--Base-black);
    transition: all 0.3s ease;
    padding-bottom: 5px;
}

.faq-accordion-item.active .faq-toggle-icon {
    background-color: #DCE5F2;
}

.faq-body {
    padding: 0 28px 24px 28px;
    display: none;
}

.faq-accordion-item.active .faq-body {
    display: block;
}

.faq-answer {
    font-family: var(--font-mulish);
    font-size: 16px;
    font-weight: 400;
    color: var(--Base-black);
    line-height: 1.65;
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .faq-section {
        padding-top: 50px;
        padding-bottom: 150px;
    }

    .faq-tab-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .btn-faq-tab {
        width: 100%;
        max-width: 280px;
        padding: 8px 20px;
        font-size: 14px;
    }

    .faq-header {
        padding: 16px 20px;
    }

    .faq-question {
        font-size: 16px;
    }

    .faq-body {
        padding: 0 20px 18px 20px;
    }

    .faq-answer {
        font-size: 14px;
    }
}

/* New */
.eclips-on-left,
.eclips-on-start,
.eclips-on-end {
    position: relative;
    overflow-x: clip;
}

.eclips-on-left>div,
.eclips-on-start>div,
.eclips-on-end>div {
    position: relative;
    z-index: 1;
}

.eclips-on-left::after,
.eclips-on-start::before,
.eclips-on-end::after {
    content: "";
    border-radius: 405px;
    background: rgba(251, 65, 31, 0.12);
    filter: blur(100px);
    position: absolute;
    bottom: -50px;
    left: -100px;
    width: 405px;
    height: 405px;
    z-index: 0;
}

.eclips-on-start::before {
    bottom: unset;
    left: unset;
    top: -50px;
    right: -100px;
}

.eclips-on-left.green::after,
.eclips-on-start.green::before,
.eclips-on-end.green::after {
    background-color: #F7FFDF;
}

.eclips-on-left.blue::after,
.eclips-on-start.blue::before,
.eclips-on-end.blue::after {
    background-color: #E8F2FF;
}

/* .eclips-on-left.yellow::after, */
.eclips-on-start.yellow::before,
.eclips-on-end.yellow::after {
    background-color: #FEF6DF;
}

.eclips-on-left::after {
    bottom: unset;
    right: unset;
    left: -100px;
    top: -50px;
}

/* Sticky Bottom Auto-Sliding Plan Bar */
.sticky-plan-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--Primary-blue);
    padding: 10px 0;
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, visibility 0.4s ease;
}

.sticky-plan-bar.visible {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.sticky-bar-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

/* Rounded Light Blue Pill Box for Swiper */
.sticky-plans-pill-box {
    background-color: #EBF3FF;
    border-radius: 50px;
    padding: 8px 24px;
    flex: 1 1 540px;
    max-width: 600px;
    overflow: hidden;
}

.sticky-plans-swiper {
    width: 100%;
}

.sticky-plan-item {
    text-align: center;
    padding: 2px 10px;
    border-right: 1.5px solid rgba(3, 76, 172, 0.18);
}

.swiper-slide:last-child .sticky-plan-item {
    border-right: none;
}

.sticky-plan-name {
    font-family: var(--font-mulish);
    font-size: 13px;
    font-weight: 700;
    color: var(--Base-black);
    line-height: 1.2;
    margin-bottom: 3px;
    white-space: nowrap;
}

.sticky-plan-price-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-mulish);
    white-space: nowrap;
}

.sticky-price-main {
    font-size: 18px;
    font-weight: 800;
    color: var(--Primary-blue);
    line-height: 1;
}

.sticky-price-old {
    font-size: 13px;
    font-weight: 500;
    color: #778899;
    text-decoration: line-through;
}

.sticky-price-save {
    font-size: 12px;
    font-weight: 700;
    color: var(--Base-black);
    opacity: 0.9;
}

/* Timezone Box */
.sticky-timezone-box {
    display: flex;
    align-items: center;
    gap: 18px;
    color: var(--white);
    font-family: var(--font-mulish);
    white-space: nowrap;
}

.sticky-tz-item {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.sticky-tz-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    opacity: 0.88;
    line-height: 1.2;
}

.sticky-tz-value {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
}

.sticky-tz-divider {
    width: 1px;
    height: 32px;
    background-color: rgba(255, 255, 255, 0.35);
}

.sticky-bar-cta .btn-subscribe {
    padding: 10px 22px;
    font-size: 15px;
    white-space: nowrap;
}

/* Responsive */
@media (max-width: 1199px) {
    .sticky-plans-pill-box {
        max-width: 450px;
    }

    .sticky-tz-label {
        font-size: 10px;
    }

    .sticky-tz-value {
        font-size: 13px;
    }
}

@media (max-width: 991px) {
    .sticky-timezone-box {
        display: none;
    }

    .sticky-plans-pill-box {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .sticky-plan-bar {
        padding: 8px 0;
    }

    .sticky-plans-pill-box {
        padding: 6px 8px;
        border-radius: 12px;
    }

    .sticky-plan-name {
        font-size: 10px;
    }

    .sticky-price-main {
        font-size: 12px;
    }

    .sticky-price-old,
    .sticky-price-save {
        font-size: 10px;
    }

    .sticky-plan-price-row {
        gap: 6px;
    }

    .sticky-plan-item {
        border-right: unset;
    }

    .sticky-bar-cta .btn-subscribe {
        padding: 8px;
        gap: 6px;
        font-size: 12px;
    }

    .sticky-bar-cta .btn-subscribe svg {
        width: 18px;
        height: 18px;
    }

    .country-code-select {
        flex: 0 0 120px;
        max-width: 120px;
        padding-left: 10px;
        padding-right: 22px !important;
        font-size: 13px;
    }
}

/* New End */

.emoji-btn {
    position: fixed;
    bottom: 74px;
    right: 40px;
    z-index: 9999;
    transform: translateY(280px);
    transition: all 0.5s ease-in-out;
}

.emoji-btn.near-footer {
    bottom: 170px;
}

.emoji-btn.show-emoji {
    transform: translateY(0px);
}

.emoji-btn img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes rotateLoop {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.emoji-btn img.text-img {
    animation: rotateLoop 12s linear infinite;
}

@media(max-width:1024px) {
    .emoji-btn {
        bottom: 144px;
        right: 0;
    }
}

@media(max-width:568px) {
    .emoji-btn {
        bottom: 56px;
    }
}

/* Modern & Premium CTA Section */
.premium-cta-section {
    padding-top: 46px;
    padding-bottom: 16px;
}

.premium-cta-card {
    background: linear-gradient(135deg, #023880 0%, #034CAC 55%, #0860D3 100%);
    border-radius: 28px;
    box-shadow: 0 20px 50px rgba(3, 76, 172, 0.25);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    position: relative;
}

.cta-glow-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 1;
}

.cta-glow-circle.circle-1 {
    width: 320px;
    height: 320px;
    background: rgba(251, 65, 31, 0.25);
    top: -80px;
    left: -80px;
}

.cta-glow-circle.circle-2 {
    width: 380px;
    height: 380px;
    background: rgba(252, 205, 52, 0.2);
    bottom: -100px;
    right: -100px;
}

.cta-tag-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 6px 20px;
    border-radius: 50px;
    font-family: var(--font-mulish);
    font-size: 14px;
    font-weight: 700;
    color: #FFE600;
    letter-spacing: 0.3px;
}

.premium-cta-heading {
    font-family: var(--font-caladea);
    font-size: 38px;
    font-weight: 700;
    line-height: 1.25;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

.premium-cta-desc {
    font-family: var(--font-mulish);
    font-size: 17px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 680px;
}

.cta-feature-item {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 8px 18px;
    font-family: var(--font-mulish);
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.cta-feature-item:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.22);
}

.btn-cta-primary {
    background: linear-gradient(135deg, #FB411F 0%, #E02B09 100%);
    color: var(--white);
    font-family: var(--font-mulish);
    font-size: 16px;
    font-weight: 700;
    padding: 14px 34px;
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(251, 65, 31, 0.4);
    transition: all 0.3s ease;
    border: none;
}

.btn-cta-primary:hover {
    background: linear-gradient(135deg, #FF5537 0%, #FB411F 100%);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(251, 65, 31, 0.55);
}

.btn-cta-primary svg {
    transition: transform 0.3s ease;
}

.btn-cta-primary:hover svg {
    transform: translateX(4px);
}

@media (max-width: 767px) {
    .premium-cta-section {
        padding-bottom: 60px;
    }

    .premium-cta-card {
        border-radius: 20px;
    }

    .premium-cta-heading {
        font-size: 26px;
    }

    .premium-cta-desc {
        font-size: 15px;
    }

    .cta-feature-item {
        font-size: 13px;
        padding: 6px 14px;
    }

    .btn-cta-primary {
        width: 100%;
        font-size: 15px;
        padding: 12px 24px;
    }

    .cta-glow-circle.circle-1,
    .cta-glow-circle.circle-2 {
        width: 180px;
        height: 180px;
    }
}

/* Video Card Modal Styling */
.watch-video-section .video-card {
    cursor: pointer;
}

.video-card-modal-content {
    border-radius: 24px;
    border: none;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    background-color: var(--white);
}

.modal-video-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background-color: #000;
    border-radius: 16px;
    overflow: hidden;
}

.modal-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 16px;
}

.modal-video-card-content .video-card-title {
    font-family: var(--font-mulish);
    font-size: 22px;
    font-weight: 700;
    color: var(--Base-black);
    line-height: 1.35;
}

.modal-video-card-content .video-card-desc {
    font-family: var(--font-mulish);
    font-size: 15px;
    font-weight: 400;
    color: #555555;
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works-section {
    background: linear-gradient(180deg, #F3FAFC 0%, #FFFFFF 100%);
    padding-top: 80px;
    padding-bottom: 28px;
    position: relative;
    z-index: 2;
}

.how-it-works-header {
    margin-bottom: 50px;
}

.how-it-works-badge {
    display: inline-block;
    background: rgba(3, 76, 172, 0.08);
    color: var(--Primary-blue);
    font-family: var(--font-mulish);
    font-size: var(--font-x-small);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.how-it-works-header .lg-heading {
    margin-bottom: 12px;
}

.how-it-works-header .sub-heading {
    color: #4B5563;
    font-size: var(--font-body);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
}

.how-it-works-grid-wrapper {
    position: relative;
}

.how-it-works-track-line {
    position: absolute;
    top: 82px;
    left: 12%;
    right: 12%;
    height: 50%;
    z-index: 1;
    width: 80%;
    border: 2px dashed #93C5FD;
    border-left: 0;
}

@media(min-width:992px) {
    .how-it-works-track-line {
        border-bottom: 0;
    }
}

@media(max-width: 576px) {
    .how-it-works-track-line {
        width: 2px;
        height: 80%;
    }

}

.how-it-works-card {
    background: var(--white);
    border: 1px solid #E5EBF4;
    border-radius: 24px;
    padding: 30px 24px;
    height: 100%;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(3, 76, 172, 0.05);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease;
    display: flex;
    flex-direction: column;
}

.how-it-works-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(3, 76, 172, 0.12);
    border-color: #93C5FD;
}

.how-it-works-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.how-it-works-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: #023880;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(2, 56, 128, 0.15);
}

.how-it-works-card:hover .how-it-works-icon {
    transform: scale(1.06);
    background: #034CAC;
    box-shadow: 0 6px 16px rgba(2, 56, 128, 0.25);
}

.how-it-works-step-num {
    font-family: var(--font-caladea);
    font-size: 28px;
    font-weight: 700;
    color: #CBD5E1;
    line-height: 1;
    transition: color 0.3s ease;
}

.how-it-works-card:hover .how-it-works-step-num {
    color: var(--Primary-blue);
}

.how-it-works-title {
    font-family: var(--font-caladea);
    font-size: 21px;
    font-weight: 700;
    color: var(--Primary-blue);
    margin-bottom: 10px;
    line-height: 1.35;
}

.how-it-works-text {
    font-family: var(--font-mulish);
    font-size: 15px;
    font-weight: 400;
    color: #4B5563;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .how-it-works-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .how-it-works-card {
        padding: 24px 20px;
    }

    .how-it-works-title {
        font-size: 19px;
    }
}

@media (max-width: 576px) {
    .how-it-works-section {
        padding-top: 45px;
        padding-bottom: 45px;
    }

    .how-it-works-header {
        margin-bottom: 35px;
    }

    .how-it-works-badge {
        font-size: 12px;
        padding: 5px 14px;
    }

    .how-it-works-icon {
        width: 50px;
        height: 50px;
        border-radius: 14px;
    }

    .how-it-works-icon svg {
        width: 26px;
        height: 26px;
    }

    .how-it-works-step-num {
        font-size: 24px;
    }

    .how-it-works-title {
        font-size: 18px;
    }

    .how-it-works-text {
        font-size: 14px;
    }
}

/* Who Is This For Section */
.who-is-this-for-section {
    padding-top: 42px;
    padding-bottom: 80px;
    position: relative;
    z-index: 2;
}

.who-is-this-for-header {
    margin-bottom: 50px;
}

.who-is-this-for-badge {
    display: inline-block;
    background: rgba(3, 76, 172, 0.08);
    color: var(--Primary-blue);
    font-family: var(--font-mulish);
    font-size: var(--font-x-small);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.who-is-this-for-header .lg-heading {
    margin-bottom: 12px;
}

.who-is-this-for-header .sub-heading {
    color: #4B5563;
    font-size: var(--font-body);
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
}

.who-card {
    position: relative;
    background: transparent;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.who-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.who-card-img-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    background: #0f172a;
}

.who-card-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 20%, rgba(2, 28, 64, 0.6) 60%, rgba(0, 0, 0, 0.9) 100%);
    transition: background 0.35s ease;
    z-index: 2;
}

.who-card:hover .who-card-img-wrap::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 15%, rgba(2, 28, 64, 0.7) 55%, rgba(0, 0, 0, 0.94) 100%);
}

.who-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.who-card:hover .who-card-img {
    transform: scale(1.08);
}

.who-card-body {
    position: relative;
    z-index: 3;
    padding: 24px 22px;
    margin-top: auto;
}

.who-card-title {
    font-family: var(--font-caladea);
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.who-card-text {
    font-family: var(--font-mulish);
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.55;
    margin-bottom: 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

@media (max-width: 991px) {
    .who-is-this-for-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .who-card {
        height: 350px;
    }

    .who-card-body {
        padding: 20px 18px;
    }

    .who-card-title {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .who-is-this-for-section {
        padding-top: 45px;
        padding-bottom: 45px;
    }

    .who-is-this-for-header {
        margin-bottom: 30px;
    }

    .who-card {
        height: 330px;
    }

    .who-card-title {
        font-size: 19px;
    }

    .who-card-text {
        font-size: 14px;
    }
}

.streaming-online-badge {
    background-color: rgb(249 226 226);
    color: red;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 4px 12px;
    border-radius: 50px;
    font-weight: 600;
    font-size: var(--font-small);
    font-family: var(--font-mulish);
    margin-bottom: 10px;
}
.streaming-online-badge .streaming-online-badge-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: red;
    display: inline-block;
    animation: pulse 1s infinite;
}
@keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.1;
    }
    100% {
        opacity: 1;
    }
}

/* Time Schedule Section */
.time-schedule-section {
    /* background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%); */
    padding-top: 50px;
    padding-bottom: 60px;
    position: relative;
    z-index: 2;
}

.time-schedule-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(3, 76, 172, 0.08);
    color: var(--Primary-blue);
    font-family: var(--font-mulish);
    font-size: var(--font-x-small);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.time-schedule-header .lg-heading {
    margin-bottom: 12px;
}

.time-schedule-header .sub-heading {
    color: #4B5563;
    font-size: var(--font-body);
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 35px;
}

/* Timezone Live Detection Banner */
.timezone-detect-banner {
    max-width: 820px;
    margin: 0 auto 40px auto;
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
    border: 1px solid #BFDBFE;
    border-radius: 18px;
    padding: 14px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    box-shadow: 0 4px 16px rgba(3, 76, 172, 0.06);
}

.timezone-detect-left {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
}

.timezone-globe-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #023880;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 38px;
}

.timezone-detect-title {
    font-family: var(--font-mulish);
    font-size: 14px;
    font-weight: 700;
    color: #023880;
    margin-bottom: 2px;
}

.timezone-detect-subtitle {
    font-family: var(--font-mulish);
    font-size: 13px;
    color: #4B5563;
    margin-bottom: 0;
}

.user-tz-pill-badge {
    background: var(--white);
    color: #023880;
    border: 1px solid #93C5FD;
    padding: 6px 16px;
    border-radius: 50px;
    font-family: var(--font-mulish);
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(3, 76, 172, 0.08);
}

/* Schedule Columns & Card Design */
.schedule-group-card {
    background: var(--white);
    border: 1px solid #E2EDFA;
    border-radius: 24px;
    padding: 28px 24px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(3, 76, 172, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.schedule-group-card:hover {
    box-shadow: 0 16px 36px rgba(3, 76, 172, 0.1);
}

.schedule-group-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 18px;
    border-bottom: 1px solid #EDF2F7;
    margin-bottom: 20px;
    text-align: left;
}

.schedule-group-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 48px;
}

.schedule-group-icon.morning {
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    color: #D97706;
}

.schedule-group-icon.evening {
    background: linear-gradient(135deg, #EDE9FE 0%, #DDD6FE 100%);
    color: #7C3AED;
}

.schedule-group-title {
    font-family: var(--font-caladea);
    font-size: 22px;
    font-weight: 700;
    color: #023880;
    margin-bottom: 2px;
}

.schedule-group-subtitle {
    font-family: var(--font-mulish);
    font-size: 13px;
    color: #64748B;
    margin-bottom: 0;
}

/* Individual Slot Rows */
.schedule-slot-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.schedule-slot-row {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transition: all 0.25s ease;
}

.schedule-slot-row:hover {
    background: #FFFFFF;
    border-color: #93C5FD;
    box-shadow: 0 6px 18px rgba(3, 76, 172, 0.08);
    transform: translateY(-2px);
}

.schedule-slot-time-block {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.schedule-slot-label {
    font-family: var(--font-mulish);
    font-size: 11.5px;
    font-weight: 700;
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.schedule-slot-ist {
    font-family: var(--font-mulish);
    font-size: 15.5px;
    font-weight: 700;
    color: #1E293B;
}

.schedule-slot-arrow {
    color: #94A3B8;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 24px;
}

.schedule-slot-local-block {
    text-align: right;
}

.schedule-slot-local-badge {
    display: inline-block;
    background: #023880;
    color: #FFFFFF;
    padding: 6px 14px;
    border-radius: 10px;
    font-family: var(--font-mulish);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.2px;
    white-space: nowrap;
    box-shadow: 0 2px 6px rgba(2, 56, 128, 0.2);
}

.schedule-slot-duration {
    font-family: var(--font-mulish);
    font-size: 11.5px;
    color: #64748B;
    margin-top: 3px;
}

.schedule-bottom-note {
    margin-top: 35px;
    background: #FFFFFF;
    border: 1px dashed #CBD5E1;
    border-radius: 14px;
    padding: 14px 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #475569;
    font-family: var(--font-mulish);
    font-size: 14px;
}

@media (max-width: 991px) {
    .time-schedule-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .timezone-detect-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .user-tz-pill-badge {
        align-self: flex-start;
    }
}

@media (max-width: 576px) {
    .time-schedule-section {
        padding-top: 45px;
        padding-bottom: 45px;
    }

    .time-schedule-header .sub-heading {
        margin-bottom: 25px;
    }

    .schedule-group-card {
        padding: 20px 16px;
    }

    .schedule-slot-row {
        padding: 14px 12px;
        flex-wrap: wrap;
    }

    .schedule-slot-ist {
        font-size: 14px;
    }

    .schedule-slot-arrow {
        display: none;
    }

    .schedule-slot-local-block {
        text-align: left;
        width: 100%;
        margin-top: 4px;
    }

    .schedule-slot-local-badge {
        font-size: 13px;
        padding: 4px 10px;
    }

    .schedule-bottom-note {
        font-size: 13px;
        padding: 12px 14px;
    }
}

/* Schedule Table Styling */
.schedule-table-card {
    background: var(--white);
    border: 1px solid #E2EDFA;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(3, 76, 172, 0.05);
    overflow: hidden;
}

.schedule-table {
    margin-bottom: 0;
    width: 100%;
}

.schedule-table thead th {
    background: #023880;
    color: var(--white);
    font-family: var(--font-mulish);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.3px;
    padding: 16px 20px;
    border: none;
    text-align: center;
    white-space: nowrap;
}

.schedule-table tbody td {
    padding: 16px 20px;
    font-family: var(--font-mulish);
    font-size: 14.5px;
    color: #334155;
    border-bottom: 1px solid #F1F5F9;
    text-align: center;
    vertical-align: middle;
    transition: background-color 0.2s ease;
    background: transparent;
}
.morning-row{
    background: #fffbed;
}
.evening-row{
    background: #f6f3ff;
}

/* .schedule-table tbody tr:hover td {
    background-color: #F8FAFC;
} */

.schedule-table tbody tr:last-child td {
    border-bottom: none;
}

.table-period-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12.5px;
    font-weight: 700;
}

.table-period-badge.morning {
    background: #FEF3C7;
    color: #B45309;
}

.table-period-badge.evening {
    background:#e4deff;
    color: #6D28D9;
}

.table-ist-time {
    font-weight: 600;
    color: #475569;
}

.table-local-badge {
    display: inline-block;
    background: #023880;
    color: #FFFFFF;
    padding: 6px 14px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13.5px;
    box-shadow: 0 2px 6px rgba(2, 56, 128, 0.15);
}

.table-duration-pill {
    background: #F1F5F9;
    color: #475569;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12.5px;
    font-weight: 600;
}

.table-status-pill {
    background: #ECFDF5;
    color: #059669;
    border: 1px solid #A7F3D0;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .schedule-table thead th {
        font-size: 12.5px;
        padding: 12px 14px;
    }
    .schedule-table tbody td {
        font-size: 13px;
        padding: 12px 14px;
    }
    .table-local-badge {
        font-size: 12px;
        padding: 4px 10px;
    }
}
@media (min-width:1024px){
    .dr-kataria-why-section .lg-heading{
        font-size: 38px;
    }
}
.dr-kataria-why-section .main-title {
    color: var(--Base-black, #231F20);
    font-family: Mulish;
    font-size: 58px;
    font-style: normal;
    font-weight: 800;
    line-height: 140%;
    /* 126px */
    text-transform: uppercase;
    text-wrap: nowrap;
    position: relative;
}

.dr-kataria-why-section .text-green {
    color: #28ae60;
}

@media (min-width: 992px) {
    .dr-kataria-why-section .dr-img {
        transform: scale(1.1);
        margin-left: 40px;
        /* margin-bottom: -37px; */
    }
}

@media (max-width: 992px) {
    .dr-kataria-why-section .main-title {
        font-size: 45px;
    }
    .dr-kataria-why-section .main-title {
        text-wrap: wrap;
    }
}
@media (max-width: 468px) {
    .dr-kataria-why-section .main-title {
        font-size: 30px;
    }
    .eclips-on-left::after, .eclips-on-start::before, .eclips-on-end::after {
        width: 200px;
        height: 200px;
    }
}
.position-relative .image-bg {
    position: absolute;
    top: 0;
    right: 0px;
    width: 100%;
    height: 350px;
    border-radius: 504px;
    opacity: 0.45;
    background: var(--Colors-Green, #34C759);
    filter: blur(281px);
    z-index: -1;
    pointer-events: none;
}



/* ==========================================================================
   Landing Form Steps UI (OTP, Payment, Success)
   ========================================================================== */

.landing-step-card {
    background: #FFFFFF;
    border-radius: 24px;
    border: 1px solid rgba(3, 76, 172, 0.08);
    box-shadow: 0 16px 40px -8px rgba(3, 76, 172, 0.12), 0 4px 12px rgba(0, 0, 0, 0.03);
    padding: 36px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: stepCardFadeIn 0.35s ease-out;
}

@keyframes stepCardFadeIn {
    from {
        opacity: 0;
        transform: translateY(12px) scale(0.99);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.step-card-top-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #034CAC 0%, #F44200 100%);
}

.step-accent-success {
    background: linear-gradient(90deg, #10B981 0%, #059669 100%) !important;
}

.step-badge {
    display: flex;
    justify-content: center;
}

.step-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 14px;
    border-radius: 50px;
    background: rgba(3, 76, 172, 0.08);
    color: var(--Primary-blue);
    font-family: var(--font-mulish);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.step-badge-payment {
    background: rgba(244, 66, 0, 0.09);
    color: #F44200;
}

.step-badge-success {
    background: rgba(16, 185, 129, 0.12);
    color: #059669;
}

.step-icon-badge {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    transition: transform 0.3s ease;
}

.landing-step-card:hover .step-icon-badge {
    transform: scale(1.05);
}

.step-card-title {
    font-family: var(--font-caladea);
    font-size: 26px;
    font-weight: 700;
    color: var(--Base-black);
    line-height: 1.25;
}

.step-card-subtitle {
    font-family: var(--font-mulish);
    font-size: 14px;
    color: #64748B;
    line-height: 1.5;
}

.otp-target-email {
    color: var(--Primary-blue);
    word-break: break-all;
}

/* 6-box OTP Inputs */
.otp-boxes-wrapper {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 20px 0 24px;
}

.otp-box-input {
    width: 48px;
    height: 56px;
    border-radius: 14px;
    border: 2px solid #E2E8F0;
    background-color: #FFFFFF !important;
    text-align: center;
    font-family: var(--font-mulish);
    font-size: 22px;
    font-weight: 800;
    color: var(--Base-black);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
    transition: all 0.2s ease-in-out;
    padding: 0;
    -moz-appearance: textfield;
}

.otp-box-input::-webkit-outer-spin-button,
.otp-box-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.otp-box-input:focus {
    border-color: #F44200 !important;
    box-shadow: 0 0 0 4px rgba(244, 66, 0, 0.15) !important;
    background-color: #FFF9F6 !important;
    outline: none;
    transform: translateY(-2px);
}

.otp-box-input.filled {
    border-color: var(--Primary-blue);
    background-color: #F8FAFC !important;
}

@media (max-width: 420px) {
    .otp-boxes-wrapper {
        gap: 6px;
    }
    .otp-box-input {
        width: 40px;
        height: 50px;
        font-size: 18px;
        border-radius: 10px;
    }
}

/* Payment Order Summary Box */
.payment-order-summary {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
}

.pay-plan-badge {
    background: #FFFFFF;
    color: var(--Base-black);
    border: 1px solid #E2E8F0;
    border-radius: 50px;
    padding: 5px 14px;
    font-family: var(--font-mulish);
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.pay-amount-highlight {
    font-family: var(--font-mulish);
    font-size: 22px;
    font-weight: 800;
    color: #F44200;
}

.payment-trust-footer {
    font-family: var(--font-mulish);
    font-size: 12px;
    color: #64748B;
}

/* Success Credential Box */
.success-credential-box {
    background: #F0FDF4;
    border: 1px solid #BBF7D0;
    border-radius: 14px;
}

.success-mini-check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #10B981;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
    flex-shrink: 0;
}

/* ==========================================================================
   Submit Button Action Popover (Notice/Error Popup Around Submit Button)
   ========================================================================== */
.submit-btn-wrapper {
    position: relative;
}

.btn-action-popover {
    position: absolute;
    bottom: calc(100% + 16px);
    left: 50%;
    transform: translateX(-50%);
    width: min(440px, calc(100% + 20px));
    max-width: 95vw;
    background: #FFFFFF;
    border: 1.5px solid #FED7AA;
    border-radius: 16px;
    padding: 16px 18px 16px 18px;
    box-shadow: 0 16px 36px -4px rgba(244, 66, 0, 0.18), 0 6px 16px -2px rgba(0, 0, 0, 0.08);
    z-index: 1050;
    text-align: left;
    box-sizing: border-box;
    animation: popoverBounceIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes popoverBounceIn {
    0% {
        opacity: 0;
        transform: translate(-50%, 12px) scale(0.96);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, 0) scale(1);
    }
}

/* Speech arrow pointing down at submit button */
.btn-action-popover::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 9px 9px 0 9px;
    border-style: solid;
    border-color: #FFFFFF transparent transparent transparent;
    z-index: 2;
}

.btn-action-popover::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 10.5px 10.5px 0 10.5px;
    border-style: solid;
    border-color: #FED7AA transparent transparent transparent;
    z-index: 1;
}

/* Error variant for form failures */
.btn-action-popover.popover-error {
    border-color: #FECACA;
    box-shadow: 0 16px 36px -4px rgba(220, 38, 38, 0.18), 0 6px 16px -2px rgba(0, 0, 0, 0.08);
}

.btn-action-popover.popover-error::before {
    border-color: #FECACA transparent transparent transparent;
}

.btn-action-popover.popover-error .popover-icon-badge {
    background: #FEE2E2;
    color: #DC2626;
}

.btn-action-popover.popover-error .popover-title {
    color: #DC2626;
}

.popover-icon-badge {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #FFEDD5;
    color: #EA580C;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.popover-title {
    font-family: var(--font-mulish);
    font-weight: 800;
    font-size: 15px;
    color: #9A3412;
    letter-spacing: -0.01em;
}

.popover-close-btn {
    background: transparent;
    border: none;
    font-size: 20px;
    height: fit-content;
    color: #94A3B8;
    cursor: pointer;
    padding: 0 4px;
    border-radius: 4px;
    transition: color 0.15s ease, background-color 0.15s ease;
}

.popover-close-btn:hover {
    color: #0F172A;
    background: #F1F5F9;
}

.popover-body-text {
    font-family: var(--font-mulish);
    font-size: 13.5px;
    line-height: 1.5;
    color: #475569;
    font-weight: 500;
}

.btn-popover-action {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-mulish);
    font-size: 12.5px;
    font-weight: 700;
    padding: 7px 14px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-popover-primary {
    background: linear-gradient(135deg, #F44200 0%, #FF6B35 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(244, 66, 0, 0.25);
}

.btn-popover-primary:hover {
    color: #FFFFFF;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(244, 66, 0, 0.35);
}

.btn-popover-secondary {
    background: #F1F5F9;
    color: #334155;
    border: 1px solid #CBD5E1;
}

.btn-popover-secondary:hover {
    background: #E2E8F0;
    color: #0F172A;
    text-decoration: none;
}

.btn-popover-dismiss {
    background: #F8FAFC;
    color: #64748B;
    border: 1px solid #E2E8F0;
}

.btn-popover-dismiss:hover {
    background: #F1F5F9;
    color: #1E293B;
}

/* Plan card select pulse animation when user selects Paid Plan from popover */
.plan-select-highlight {
    animation: planHighlightPulse 1.4s ease;
}

@keyframes planHighlightPulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(244, 66, 0, 0.4); }
    40% { transform: scale(1.03); box-shadow: 0 0 0 10px rgba(244, 66, 0, 0); }
    100% { transform: scale(1); box-shadow: none; }
}

button:disabled
{
    opacity: 0.4 !important;
}