/* ==== Container Layout ==== */
.video-section {
    display: flex;
    flex-wrap: wrap;
    height: 100vh;
    width: 100%;
    margin-top: 60px;
    padding-bottom: 90px;
    background-color: #000000;
    overflow: hidden; /* Prevent overflow during animation */
}

/* ==== Animation Keyframes ==== */
@keyframes slideFromLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ==== Text Section ==== */
.text-content {
    width: 30%;
    background-color: #ffffff;
    color: #000000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    overflow: hidden; /* Keep text hidden until it slides in */
   
}
.wantToWork-area {
    background-size: cover;
    background-position: center;
}

.risk-free {
    padding: 40px 0;
    text-align: center;
}

.guarantee-box {
    background: #2d2d2d;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(220, 38, 38, 0.3);
    border: 2px solid  #ff1313;
    max-width: 800px;
    margin: 0 auto;
}

.shield-icon {
    width: 64px;
    height: 64px;
    background: #ff1313;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: white;
    font-size: 24px;
    font-weight: bold;
}

.guarantee-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
}

.guarantee-box p {
    font-size: 1.125rem;
    color: #c0c0c0;
}


/* ==== Text Animation ==== */

.hero__caption span,
.hero__caption h1,
.hero__caption a {
   
    transform: translateX(-100%);
    opacity: 0;
    animation-name: slideFromLeft;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
}

/* Staggered delays */
.hero__caption span {
     color: rgb(9, 25, 60);
     font-size: 20px;
     animation-delay: 0.6s;
}

.hero__caption h1 {
    animation-delay: 0.6s;
    font-size: 50px;
    color: #ff1313;
}

#h1-span{
     font-size: 50px;
  color: rgb(9, 25, 60);
}
.hero__caption a {
    animation-delay: 0.9s;
}

/* ==== Video Section ==== */
.video-content {
    width: 70%;
    position: relative;
    overflow: hidden;
}

.video-content video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==== Responsive Design ==== */
@media screen and (max-width: 768px) {
    .video-section {
        flex-direction: column-reverse;
        height: auto;
      padding-top: 70px;
    }

   .main-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}


    .text-content,
    .video-content {
        width: 100%;
    }

    .text-content {
        padding: 30px 20px;
        text-align: center;
    }

    .video-content {
        height: 300px;
    }

    /* Disable animation on mobile */
    .hero__caption span,
    .hero__caption h1,
    .hero__caption a {
        animation: none;
        transform: none;
        opacity: 1;
    }
}

 .features {
           
            flex-wrap: wrap;
            gap: 24px;
        }

        .feature {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .check-icon {
            width: 20px;
            height: 20px;
            background: #ff1313;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 12px;
        }

        .feature span {
            color: #655e5e;
        }


         /* Purchase Options */
        .purchase {
            padding: 80px 0;
            background: #f8f9fa;
            color: #333;
        }

        .purchase-title {
            text-align: center;
            margin-bottom: 48px;
        }

        .purchase-title h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 16px;
            color: #1a1a1a;
        }

        .purchase-title p {
            font-size: 1.25rem;
            color: #6b7280;
        }

        .plans {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 32px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .plan {
            background: white;
            border: 2px solid #e5e7eb;
            border-radius: 12px;
            padding: 32px;
            text-align: center;
            position: relative;
            transition: all 0.3s ease;
        }

        .plan:hover {
            border-color: #ff1313;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }

        .plan.popular {
            border-color: #ff1313;
            transform: scale(1.05);
        }

        .popular-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: #ff1313;
            color: white;
            padding: 6px 16px;
            border-radius: 9999px;
            font-size: 12px;
            font-weight: 600;
        }

        .plan-header {
            margin-bottom: 32px;
        }

        .plan h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 8px;
            color: #1a1a1a;
        }

        .price {
            font-size: 2.5rem;
            font-weight: 700;
            color:  #ff1313;
            margin-bottom: 8px;
        }

        .plan-description {
            color: #6b7280;
            margin-bottom: 8px;
        }

        .savings {
            color: #ff1313;
            font-weight: 600;
            font-size: 14px;
        }

        .features-list {
            list-style: none;
            margin-bottom: 32px;
        }

        .features-list li {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-bottom: 12px;
        }

        .cta-button {
            width: 100%;
            background: #ff1313;
            color: white;
            border: none;
            padding: 16px 32px;
            border-radius: 8px;
            font-size: 1.125rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .cta-button:hover {
            background: #ff1313;
        }

        .plan-note {
            font-size: 14px;
            color: #6b7280;
            margin-top: 8px;
        }

        /* Testimonials */
        .testimonials {
            padding: 80px 0;
            background: #1a1a1a;
            color: white;
        }

        .testimonials .section-title {
            color: white;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
        }

        .testimonial {
            background: #2d2d2d;
            padding: 24px;
            border-radius: 12px;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
            border: 1px solid #404040;
        }

        .stars {
            display: flex;
            gap: 2px;
            margin-bottom: 16px;
        }

        .star {
            width: 16px;
            height: 16px;
            background: #fbbf24;
            clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
        }

        .testimonial p {
            color: #c0c0c0;
            margin-bottom: 16px;
        }

        .testimonial-author {
            font-weight: 600;
            margin-bottom: 4px;
            color: white;
        }

        .testimonial-result {
            font-size: 14px;
            color: #c0c0c0;
        }

        /* Final CTA */
        .final-cta {
            padding: 80px 0;
            background: #ff1313;
            color: white;
            text-align: center;
        }

        .final-cta h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 24px;
        }

        .final-cta p {
            font-size: 1.25rem;
            margin-bottom: 32px;
            opacity: 0.9;
        }

        .final-cta-buttons {
            display: flex;
            flex-direction: column;
            gap: 16px;
            align-items: center;
        }

        .final-cta-button {
            padding: 16px 32px;
            border: none;
            border-radius: 8px;
            font-size: 1.125rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            min-width: 280px;
        }

        .final-cta-button.primary {
            background: white;
            color: #ff1313;
        }

        .final-cta-button.primary:hover {
            background: #f3f4f6;
        }

        .final-cta-button.secondary {
            background: #1a1a1a;
            color: white;
            border: 2px solid #c0c0c0;
        }

        .final-cta-button.secondary:hover {
            background: #2d2d2d;
        }

        .final-cta-button.tertiary {
            background: #c0c0c0;
            color: #1a1a1a;
        }

        .final-cta-button.tertiary:hover {
            background: #a0a0a0;
        }

        .guarantee-text {
            font-size: 14px;
            margin-top: 16px;
            opacity: 0.75;
        }

                /* Carousel Styles */
        .carousel-section {
            padding: 80px 0;
            background: #f8f9fa;
            color: #333;
        }

        .carousel-section .section-title {
            color: #1a1a1a;
            margin-bottom: 48px;
        }

        .carousel-wrapper {
            max-width: 950px;
            overflow: hidden;
            position: relative;
            margin: 0 auto;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(.55, .03, .17, .94);
        }

        .carousel-slide {
            min-width: 300px;
            flex: 0 0 100%;
            margin: 0 8px;
        }

        .carousel-slide img {
            width: 100%;
            height: 540px;
            object-fit: cover;
            border-radius: 14px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.09);
        }

        .carousel-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 2;
            background:  #ff1313;
            border: none;
            width: 2.2rem;
            height: 2.2rem;
            border-radius: 50%;
            cursor: pointer;
            transition: background 0.15s;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            font-weight: bold;
            user-select: none;
            color: white;
        }

        .carousel-button:hover {
            background:  #ff1313;
        }

        .carousel-button.prev {
            left: 14px;
        }

        .carousel-button.next {
            right: 14px;
        }

        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin: 16px 0 0 0;
        }

        .carousel-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #e5e7eb;
            border: none;
            cursor: pointer;
            transition: background 0.2s;
        }

        .carousel-dot.active {
            background:  #ff1313;
        }

        /* Scroll-to-end button */
        .scroll-bottom-btn {
            position: fixed;
            top: 18px;
            right: 26px;
            z-index: 200;
            background:  #ff1313;
            color: #fff;
            border: none;
            padding: 12px 24px;
            border-radius: 9999px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            box-shadow: 0 3px 12px rgba(220, 38, 38, 0.3);
            transition: background 0.18s;
        }

        .scroll-bottom-btn:hover {
            background:   #ff1313;
        }

    .member_stories {
    width: 500px;
    height: 200px;
    object-fit: contain;       /* Show full image without cropping */
    display: block;
    margin: 0 auto;
    border-radius: 10px;
    background-color: #d47e7e;    /* Optional: fills empty space */
}


@media (max-width: 576px) {
    .member_stories {
        height: 150px; /* slightly shorter for small screens */
         width: 100%;
        height: auto;
        background-color: transparent;
        border-radius: 0;
    }
}

