﻿@import url("https://use.typekit.net/ewv8cei.css");
.hand { cursor: hand; cursor: pointer; }
.color1 {color:#000000;}
.color2 {color:#06afef;}
.ac1 {color:#f79221;} 
.ac2 {color:#41bbc0;} 
.ac3 {color:#308998;} 
.ac4 {color:#e96032;} 
.ac5 {color:#a81d5f;} 
.ac6 {color:#abcf25;} 
.ac7 {color:#7ec28c;} 
.ac8 {color:#e6cd00;} 
.ac9 {color:#7f449b;} 
.ac10 {color:#56bdef;} 
.ac11 {color:#dd1363;} 

.myriad_pro_bold {
    font-family: myriad-pro,sans-serif;
    font-weight: 700;
    font-style: normal;
}

.myriad_pro_semibold {
    font-family: myriad-pro,sans-serif;
    font-weight: 600;
    font-style: normal;
}

.myriad_pro {
    font-family: myriad-pro,sans-serif;
    font-weight: 400;
    font-style: normal;
}

.myriad_pro_light {
    font-family: myriad-pro,sans-serif;
    font-weight: 300;
    font-style: normal;
}

.myriad_pro_italic {
    font-family: myriad-pro, sans-serif;
    font-weight: 400;
    font-style: italic;
}


.top-banner {
    background: linear-gradient(to right, #00CDC1, #007CE9);
    color: white;
    text-align: center;
    padding: 15px 10px;
    font-weight: 600;
    width: 100%;
    font-size:19px;
}

.price-strike {
    color: #ff0000;
    font-weight: bold;
    text-decoration: line-through;
}

.header-section {
    text-align: center;
    padding: 1.5rem 1rem;
}

.header-title {
    font-size: 43px;
    font-weight: 700;
    margin-bottom: 1rem;
    color:black;
}

.joyful-text {
    background: linear-gradient(to right, #00CDC1, #007CE9);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: bold;
}

.header-subtitle {
    font-size: 21px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
    color:black;
}

@media (max-width: 768px) {
    .header-title {
        font-size: 2rem;
    }
}

.golden-button {
    background: linear-gradient(45deg, #b9a257, #dec87b);
    border: none;
    border-radius: 10px;
    color: white;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: rockSideways 2s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    width: 90%;
    max-width: 400px;
}

@keyframes rockSideways {
    0%, 100% {
        transform: rotate(-2deg);
    }

    50% {
        transform: rotate(2deg);
    }
}

.golden-button:hover {
    background: linear-gradient(45deg, #b9a257, #dec87b);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.shine-button {
    background: linear-gradient(45deg, #b9a257, #dec87b);
    border: none;
    border-radius: 10px;
    color: white;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    width: 90%;
    max-width: 470px;
    position: relative;
    overflow: hidden;
}

    .shine-button::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 50%;
        height: 100%;
        background: linear-gradient( 120deg, transparent, rgba(255, 255, 255, 0.3), transparent );
        animation: shine 3s infinite linear;
    }

@keyframes shine {
    0% {
        left: -100%;
    }

    20% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

.subscriber-count {
    margin-top: 20px;
    font-size: 23px;
    color: #000; 
}

.logos-section {
    padding: 10px 0;
    overflow: hidden;
    position: relative;
}





.slider-container {
    position: relative;
    padding: 0px 0px; 
    width: 100%;
}

.slide-track {
    display: flex;
    width: calc(175px * 16); /* Adjusted for 5 unique slides + 5 duplicate slides */
    animation-duration: 30s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.slide-track-right {
    animation-name: scroll-right;
}

.slide-track-left {
    animation-name: scroll-left;
}

@keyframes scroll-right {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-175px * 8)); /* Adjusted for 5 slides */
    }
}

@keyframes scroll-left {
    from {
        transform: translateX(calc(-175px * 9)); /* Adjusted for 5 slides */
    }

    to {
        transform: translateX(0);
    }
}

.slide {
    flex: 0 0 175px;
    padding: 0px;
    margin:0px;
}

    .slide img {

        width: 100%;
        height: 80px;
        object-fit: contain;
        filter: grayscale(100%) brightness(0%); /* Changed this line */ 
        transition: all 0.3s ease;
    }

        .slide img:hover {
            filter: grayscale(0%) brightness(0%); /* Changed this line */
            opacity: 1;
        }

.journey-section {
    padding: 20px 0;
    position: relative;

}

.fade-section {
    background-image: url("../../../assets/images/bg.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
} 



.phase-number {
    position: absolute;
    left: -60px;
    font-size: 3.5rem;
    font-weight: 700;
    color: #000;
    opacity: 0.1;
    line-height: 1;
}

@media (max-width: 768px) {
    .timeline-line {
        left: 30px;
        transform: none;
    }

    .phase-number {
        left: -40px;
        font-size: 2.5rem;
    }

    .timeline-item {
        padding-left: 50px;
    }
}

.border-black {
    border: 2px solid black !important;
}


.testimonial-slider {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.testimonial-track {
    display: flex;
    width: calc(400px * 10); /* Adjust based on number of images */
    animation: testimonialScroll 50s linear infinite;
}

.testimonial-card {
    flex: 0 0 350px;
    margin: 0 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    overflow: hidden; /* Keep image within rounded corners */
}

.testimonial-image {
    width: 100%;
    height: 300px; /* Fixed height for consistency */
    object-fit: cover; /* Maintain aspect ratio */
    display: block;
}

.testimonial-card:hover {
    transform: scale(1.05);
    z-index: 1;
}

@keyframes testimonialScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-400px * 5)); /* Half of total width */
    }
}

.testimonial-track:hover {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .testimonial-card {
        flex: 0 0 300px;
        margin: 0 15px;
    }

    .testimonial-image {
        height: 350px; /* Slightly smaller on mobile */
    }
}

.offer-section {
    padding: 60px 0;
    position: relative;
}

.offer-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

 

.offer-title { 
    font-weight: 700;
    margin-bottom: 1rem;
}

.offer-subtitle {
    max-width: 900px;
    margin: 0 auto; 
}

.offer-card {
    background: linear-gradient(45deg, #100434, #142854);
    color: white;
    padding: 40px;
    box-shadow: 10px 10px 10px rgba(0,0,0,0.2);
    margin-bottom: 35px; 
    position: relative;
    overflow: visible; /* Changed from hidden to visible */
}

    .offer-card::before {
        content: '';
        position: absolute;
        top: -4px;
        right: -4px;
        bottom: -4px;
        left: -4px;
        background: linear-gradient(45deg, #00CDC1, #007CE9, #9cfc9c);
        z-index: -1;
    }

@media (max-width: 768px) {
    .offer-card {
        padding: 20px;
        margin: 0 4px 30px 4px; /* Added horizontal margin */
    }
}

.offer-features {
    margin-top: 20px;
}

.feature-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.check-mark {
    color: #00CDC1;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.delivery-tag {
    font-size: 1rem;
    font-weight: normal;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .offer-title {
        font-size: 2rem;
    }

    .offer-card {
        padding: 20px;
    }
}

.gradient-divider-container {
    position: relative;
    height: 2px;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    overflow: hidden;
}

.gradient-divider {
    height: 100%;
    width: 100%;
    background: linear-gradient(to right, rgba(0,205,193,0), rgba(0,205,193,1) 20%, rgba(0,124,233,1) 80%, rgba(0,124,233,0));
}

.as-seen-title {
    font-size:36px;
}

.vertical-line {
    max-width:135px !important;
}

.text01 {
    font-size: 28px;
}


.text02 {
    font-size: 44px;
}

.text03 {
    font-size: 32px;
}

.text04 {
    font-size: 18px;
}

.text05 {
    font-size: 46px;
}

.text06 {
    font-size: 29px;
}

.text07 {
    font-size: 44px;
}
.text08 {
    font-size: 19px;
}

.text09 {
    font-size: 32px;
}
.text10 {
    font-size: 20px;
}

.text11 {
    font-size:25px;
}

.text12 {
    font-size:48px;
}

.text13 {
    font-size: 19px;
    color: #7a88a8;
}

.text14 {
    font-size:12px;
}

.text15 {
    font-size: 48px;
}
.text16 {
    font-size: 36px;
}

.text17 {
    font-size: 18px;
}

.text18 {
    font-size: 30px;
}

.text19 {
    font-size: 59px;
}

.text20 {
    font-size: 25px;
}

.text21{
    font-size:30px;
}

.text22 {
    font-size: 22px;
}

.text23 {
    font-size: 35px;
}

.text-alert-color {
    color: #fd0808;
}

.accordion-button:not(.collapsed) {
    background-color: white !important;
    color: #000 !important; /* optional: change text color for better contrast */
}

.accordion-button:focus {
    box-shadow: none !important; 
    border-color: transparent !important; 
    outline: none !important; 
}



.text-size-1t {font-size:50px; line-height:50px;} 
.text-size-2t {font-size:30px; line-height:1.2em; }
.text-size-3t {font-size:32px; line-height:1.1em;}
.text-size-4t {font-size:28px; line-height:1.1em; max-width:300px;}
.text-size-5t {font-size:24px; line-height:1.1em; margin-left:20px; margin-right:20px; padding:10px;}
.text-size-6t {font-size:24px; line-height:1.2em;}
.text-size-7t {font-size:12px; line-height:1.1em; padding-top:12px; padding-right:2em;}
.text-size-8t {font-size:28px; line-height:1.1em;  }
.gap0t {margin-top:10px;}
.gap1t {margin-top:50px;}
.gap2t {margin-top:35px;}
.envelop { width:130px;} 

@media (min-width: 350px) and (max-width:575.98px) {

}

@media (min-width: 576px) and (max-width:767.98px) {
        .text-size-1t {font-size:60px; line-height:60px;} 
    .text-size-1t {font-size:60px; line-height:60px;} 
    .text-size-2t {font-size:35px; line-height:1.2em; }
    .text-size-3t {font-size:55px; line-height:1.1em;}
    .text-size-4t {font-size:36px; line-height:1.1em; max-width:760px;}
    .text-size-5t {font-size:24px; line-height:1.1em; margin-left:20px; margin-right:20px; padding:10px;}
    .text-size-6t {font-size:24px; line-height:1.2em;  }
    .text-size-7t {font-size:11px; line-height:1.1em; padding-top:12px;}
    .text-size-8t {font-size:18px; line-height:1.1em;}
 
    .gap0t {margin-top:10px;}
    .gap1t {margin-top:50px;}
    .ebookt { width:448px;}
}

@media (min-width: 768px) and (max-width:991.98px) {
    .text-size-1t {font-size:80px; line-height:80px;} 
    .text-size-2t {font-size:40px; line-height:1.2em; }
    .text-size-3t {font-size:60px; line-height:1.1em;}
    .text-size-4t {font-size:40px; line-height:1.1em; max-width:991px;}
    .text-size-5t {font-size:28px; line-height:1.1em; margin-left:40px; margin-right:40px; padding:20px;}
    .text-size-6t {font-size:28px; line-height:1.2em; padding-top:14px;}
    .text-size-7t {font-size:16px; line-height:1.1em; padding-top:9px;}
    .text-size-8t {font-size:24px; line-height:1.1em;} 
    .gap0t {margin-top:20px;}
    .gap1t {margin-top:50px;}
    .gap2t {margin-top:28px;}
    .ebookt { width:548px;}
    .envelop { width:auto;}
}

@media (min-width: 992px) and (max-width:1199.98px) {
        .text-size-1t {font-size:90px; line-height:90px;} 
    .text-size-2t {font-size:45px; line-height:1.2em; }
    .text-size-3t {font-size:74px; line-height:1.1em;}
    .text-size-4t {font-size:48px; line-height:1.1em; max-width:1199px;}
    .text-size-5t {font-size:35px; line-height:1.1em; margin-left:100px; margin-right:100px; padding:25px;}
    .text-size-6t {font-size:35px; line-height:1.2em; padding-top:34px;}
     .text-size-7t {font-size:22px; line-height:1.1em; padding-top:12px;}
    .text-size-8t {font-size:31px; line-height:1.1em;} 
    .gap0t {margin-top:25px;}
    .gap1t {margin-top:60px;}
    .gap2t {margin-top:30px;}
    .ebookt { width:648px;}
    .envelop { width:auto;}
}

@media (min-width: 1200px) {
    .text-size-1t {font-size:100px; line-height:100px;} 
    .text-size-2t {font-size:55px; line-height:1.2em; }
    .text-size-3t {font-size:89px; line-height:1.1em;}
    .text-size-4t {font-size:58px; line-height:1.1em; max-width:1200px;}
    .text-size-5t {font-size:42px; line-height:1.1em; margin-left:60px; margin-right:60px; padding:25px;}
    .text-size-6t {font-size:42px; line-height:1.2em; padding-top:48px;}
    .text-size-7t {font-size:26px; line-height:1.1em; padding-top:15px;}
    .text-size-8t {font-size:38px; line-height:1.1em;} 
    .gap0t {margin-top:30px;}
    .gap1t {margin-top:70px;}
    .gap2t {margin-top:40px;}
    .ebookt { width:748px;}
    .envelop { width:auto;}
}