@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700,800,900');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f5f5f5;
    color: #222;
}

/* Modal Background */
#disclaimerModal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Modal Box */
.disclaimer-content {
    background: #fff;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    padding: 30px 20px 20px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Icon at top */
.disclaimer-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

/* Scrollable Text */
.disclaimer-text {
    max-height: 400px;
    overflow-y: auto;
    text-align: justify;
    line-height: 1.6;
    margin-bottom: 20px;
    padding-right: 5px;
    /* space for hidden scrollbar */
}

/* Hide scrollbar */
.disclaimer-text::-webkit-scrollbar {
    display: none;
}

.disclaimer-text {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Paragraph spacing */
.disclaimer-text p {
    margin-bottom: 12px;
}

/* Accept Button */
#acceptDisclaimer {
    background: linear-gradient(90deg, #f0b429, #ffcc00);
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 12px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease;
}

#acceptDisclaimer:hover {
    transform: scale(1.05);
}

/* Hero Banner Container */
.hero-banner {
    background-color: #0d203b;
    color: #fff;
    padding: 200px 20px 60px 20px;
    width: 100%;
}

/* Hero Inner Flex */
.hero-inner {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 6vh;
}

/* Hero Left (Text) */
.hero-left {
    flex: 1 1 500px;
    max-width: 600px;
    text-align: center;
    /* ✅ Centered */
    margin: 0 auto;
    /* ✅ Center block */
}

/* Hero Title */
.hero-title {
    font-size: 60px;
    font-weight: 700;
    margin: 20px 0;
    background: linear-gradient(90deg, #FF9933, #FFFFFF, #138808);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    /* ensure proper clipping */
}

.rotating-word {
    display: inline-block;
    opacity: 1;
    transition: opacity 0.8s ease-in-out;
    background: inherit;
    /* inherit gradient from parent */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: 40px;
    font-weight: 700;
    min-height: 48px;
    margin-bottom: 30px;
}

.hero-subtitle span {
    color: #f0b429;
}


/* Fade Text */
.fade-text {
    transition: opacity 0.8s ease-in-out;
    opacity: 1;
    display: inline-block;
}


/* CTA Buttons Container */
.hero-cta {
    display: inline-block;
    /* ✅ Center buttons */
    margin-top: 10px;
}

.colorp{
    color: #f0b429;
}

/* CTA Buttons */
.hero-cta .btn {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    margin-right: 12px;
}

.btn-primary {
    background: linear-gradient(90deg, #f0b429, #ffcc00);
    color: #fff;
}

.btn-second {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.18);
}

/* Responsive Hero Adjustments */
@media (max-width: 900px) {
    .hero-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 30px;
    }

    .hero-cta .btn {
        margin-bottom: 10px;
    }
}

.hero-features {
    display: flex;
    justify-content: space-between;
    /* spread items evenly */
    width: 100%;
    /* full width of parent hero section */
    padding: 25px 40px;
    /* padding inside full-width container */
    background-color: white;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    margin-top: -40px;
    /* pull up into hero */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 5vh;
    /* gap between items */
}

.hero-features .feature-item {
    display: flex;
    align-items: center;
    margin-left: 80px;
    gap: 20px;
    flex: 1;
    /* items take equal width */
    min-width: 250px;
    /* prevent too small on smaller screens */
}

.hero-features .feature-item img.feature-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    flex-shrink: 0;

}

.hero-features .feature-text {
    flex-grow: 1;
}

.feature-title {
    margin: 0;
    padding: 0;
    color: red;
    font-size: 18px;
}

.feature-description {
    margin: 0;
    padding: 0;
    color: green;
}

.feature-text .hero-features .feature-text h3 .feature-title {
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 14px;
}

.hero-features .feature-text p.feature-description {
    font-size: 14px;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-features {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
        margin-top: 0;
        border-radius: 15px;
    }

    .hero-features .feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-left: 0px;
    }

    .hero-features .feature-item img.feature-img {
        margin-bottom: 10px;
    }
}


/* HERO SLIDER */
.hero-slider {
    margin-top: 50px;
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 20px 0;
    width: 100%;
    cursor: pointer;
    overflow-x: auto;
    scroll-behavior: smooth;

}

.hero-slider img {
    height: 350px;
    border-radius: 12px;
    transition: transform 0.3s ease;
    flex: 0 0 auto;
    /* default: multiple images visible on desktop */
}

.hero-slider img:hover {
    transform: scale(1.05);
}

.hero-slider::-webkit-scrollbar {
    display: none;
}

/* LIGHTBOX */
#lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

/* ----------------- MOBILE RESPONSIVE ONLY ----------------- */
@media (max-width: 768px) {
    .hero-slider {
        gap: 30px;
        padding: 10px 0;
        scroll-behavior: smooth;
        scroll-snap-type: x mandatory;
        /* one image at a time */
        -webkit-overflow-scrolling: touch;
        touch-action: pan-y;
        /* allow vertical scroll while horizontal swipe works */
    }

    .hero-slider img {
        flex: 0 0 100%;
        /* show one image at a time */
        width: 100%;
        /* fit screen width */
        height: auto;
        /* preserve aspect ratio */
        max-width: 35vw;
        /* never exceed viewport */
        overflow-x: auto;
        scroll-behavior: smooth;

    }
}

.tcm-info {
    padding: 40px 10px;
    background-color: #f9f9f9;
    text-align: center;
    margin-bottom: 3vh;
}

.tcm-header {
    /* slightly smaller top space */
    text-align: center;
}

.tcm-content {
    max-width: 700px;
    margin: auto;
    text-align: justify;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
}

.tcm-content p {
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {

    .tcm-content {
        font-size: 1rem;
    }
}

.timeline-heading-container {

    /* slightly smaller top space */
    text-align: center;
}



.subscription-section {
    background-color: #0d203b;
    color: #fff;
    text-align: center;
    padding: 80px 20px;
    margin-top: 3vh;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: 700;
    background: linear-gradient(90deg, #00c3ff, #ffff1c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.plan-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.plan-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 30px;
    background: #555;
    color: #fff;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s ease;
    opacity: 0.8;
}

.plan-btn.active {
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.plan-btn.trail.active {
    background: black;
}

.plan-btn.bronze.active {
    background: #a0522d;
}

.plan-btn.silver.active {
    background: silver;
}

.plan-btn.gold.active {
    background: #ffd700;
    color: #333;
}

.plan-btn:hover {
    opacity: 1;
}

.plan-card.active-plan {
    border: 2px solid #28a745;
    box-shadow: 0 0 15px rgba(40,167,69,0.3);
}


.plan-btn .recommended {
    font-size: 0.8rem;
    background: #fff;
    color: #000;
    padding: 2px 6px;
    border-radius: 8px;
    margin-left: 5px;
}

/* Plan Cards */
.plan-cards {
    max-width: 800px;
    margin: 0 auto;
}

.plan-card {
    display: none;
    background: linear-gradient(145deg, #1c2541, #0d203b);
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
    padding: 40px 30px;
    text-align: left;
    position: relative;
    transition: 0.4s ease;
    margin-bottom: 5vh;
}

.plan-card.active {
    display: block;
}

.plan-header {
    text-align: center;
    margin-bottom: 20px;
}

.plan-header h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.plan-header h2 {
    font-size: 2.2rem;
    color: #00e6ff;
    margin: 0;
}


.plan-header h4{
    font-size: 2.5rem;
    color: #ffcc00;
    margin-bottom: 40px;
}



.plan-header h2 span {
    font-size: 1rem;
    color: #ffcc00;
}

.plan-header p {
    color: #ccc;
}


.plan-header .tag {
    display: inline-block;
    background: #ff9800;
    color: #fff;
    padding: 5px 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 8px;
}

.plan-desc {
    text-align: center;
    font-size: 1rem;
    color: #ddd;
    margin-bottom: 20px;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.plan-features li {
    margin: 8px 0;
    font-size: 1rem;
    color: #cce3ff;
    display: flex;
    align-items: center;
    gap: 30px;
}

.plan-features li img {
    width: 35px;
    height: 35px;
    margin-right: 8px;
    vertical-align: middle;
}


.btn-subscribe {
    display: block;
    text-align: center;
    background: linear-gradient(90deg, #f0b429, #ff9800);
    padding: 12px 25px;
    border-radius: 30px;
    color: white;
    font-weight: 600;
    text-decoration: none;
    margin: 0 auto;
    width: fit-content;
    transition: 0.3s;
}

.btn-subscribe:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px #f0b429;
    text-decoration: none;
    color: white;
}

.btn-subscribe-trail {
    display: block;
    text-align: center;
    background: linear-gradient(90deg, #f0b429, #ff9800);
    padding: 12px 25px;
    border-radius: 30px;
    color: white;
    font-weight: 600;
    text-decoration: none;
    margin: 0 auto;
    width: fit-content;
    transition: 0.3s;
}

.btn-subscribe-trail:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px #f0b429;
    text-decoration: none;
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .plan-buttons {
        flex-direction: column;
    }

    .plan-card {
        padding: 25px;
    }
}

/* Subscription Modal Overlay */
.subscription-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

/* Popup Box */
.subscription-box {
    background: linear-gradient(135deg, #10131a, #1a1f2e);
    color: white;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 450px;
    position: relative;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.3);
    animation: fadeIn 0.3s ease;
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

/* Form Groups */
.subscription-box .form-group {
    margin-bottom: 15px;
}

.subscription-box label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;

}

.subscription-box input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
}

/* Submit Button */
.btn-continue {
    background: linear-gradient(90deg, #f0b429, #ff9800);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: 0.3s ease;
}

.btn-continue:hover {
    transform: scale(1.05);
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ============================= */
/* ⚖ AGREEMENT MODAL STYLES */
/* ============================= */

.agreement-modal {
    display: none;
    /* hidden until opened */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(6px);
    z-index: 10000;
    /* always above everything */
    justify-content: center;
    align-items: center;
    overflow-y: auto;
    padding: 40px 15px;
    animation: fadeIn 0.3s ease-in-out;
}

/* Box Container */
.agreement-box {
    background: linear-gradient(135deg, #10131a, #1a1f2e);
    color: #fff;
    border-radius: 18px;
    max-width: 800px;
    width: 95%;
    padding: 25px 30px 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    position: relative;
    animation: slideUp 0.35s ease;
    overflow: hidden;
}

/* Title */
.agreement-title {
    text-align: center;
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: 0.4px;
    background: linear-gradient(90deg, #f0b429, #ffdd55);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

/* Close Button */
.agreement-box .close-btn {
    position: absolute;
    top: 14px;
    right: 20px;
    font-size: 22px;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}

.agreement-box .close-btn:hover {
    color: #f0b429;
}

/* Scrollable Content */
.agreement-scroll {
    max-height: 350px;
    overflow-y: auto;
    padding-right: 8px;
    border: 1px solid #2c3348;
    border-radius: 8px;
    background: #171c27;
    margin-bottom: 18px;
}

.agreement-scroll p,
.agreement-scroll blockquote {
    color: #e6e6e6;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

.agreement-scroll strong {
    color: #f0b429;
}

.agreement-scroll hr {
    border: 0;
    height: 1px;
    background: #2d3342;
    margin: 10px 0;
}

/* Scrollbar Styling */
.agreement-scroll::-webkit-scrollbar {
    width: 6px;
}

.agreement-scroll::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 4px;
}

.agreement-scroll::-webkit-scrollbar-thumb:hover {
    background: #666;
}

/* Checkbox Area */
.agreement-accept {
    text-align: left;
    margin: 12px 0 18px;
    font-size: 0.95rem;
    color: #dcdcdc;
}

.agreement-accept input[type="checkbox"] {
    accent-color: #f0b429;
    width: 18px;
    height: 18px;
    margin-right: 8px;
}

/* Signature Section */
.signature-section {
    border-top: 1px solid #333;
    padding-top: 12px;
    margin-top: 10px;
    text-align: right;
    font-size: 0.9rem;
    color: #ccc;
}

.signature-section strong {
    color: #f0b429;
}

/* Action Buttons */
.agreement-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.btn-cancel {
    background: #333a4a;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.btn-cancel:hover {
    background: #444b5a;
}

.btn-continue {
    background: linear-gradient(135deg, #f0b429, #ffca2b);
    color: #000;
    font-weight: 700;
    border: none;
    border-radius: 6px;
    padding: 10px 20px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    transition: all 0.3s ease;
}

.btn-continue:hover {
    background: linear-gradient(135deg, #ffd65a, #f0b429);
    box-shadow: 0px 4px 10px rgba(240, 180, 41, 0.4);
    transform: translateY(-2px);
}

.btn-continue:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ============================= */
/* ✨ ANIMATIONS */
/* ============================= */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ============================= */
/* 📱 RESPONSIVE */
/* ============================= */
@media (max-width: 768px) {
    .agreement-box {
        padding: 20px;
        width: 95%;
    }

    .agreement-scroll {
        max-height: 300px;
    }

    .agreement-title {
        font-size: 1.2rem;
    }

    .agreement-actions {
        flex-direction: column;
        gap: 10px;
    }

    .btn-cancel,
    .btn-continue {
        width: 100%;
        text-align: center;
    }
}


/* ============================= */
/* ✅ SUCCESS MODAL STYLES */
/* ============================= */

.success-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 11000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease-in-out;
}

.success-box {
    background: linear-gradient(135deg, #10131a, #1a1f2e);
    color: #fff;
    border-radius: 18px;
    padding: 35px 30px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.6);
    animation: slideUp 0.35s ease;
}

.success-box h3 {
    font-size: 1.4rem;
    margin: 15px 0 8px;
    background: linear-gradient(90deg, #f0b429, #ffdd55);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.success-box p {
    font-size: 0.95rem;
    color: #ccc;
    margin-bottom: 20px;
}

.checkmark-container {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.checkmark-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 5px solid #4CAF50;
    position: relative;
    animation: popIn 0.5s ease;
}

.checkmark-stem {
    position: absolute;
    width: 5px;
    height: 25px;
    background-color: #4CAF50;
    left: 36px;
    top: 20px;
    transform: rotate(45deg);
    animation: drawStem 0.3s ease forwards;
}

.checkmark-kick {
    position: absolute;
    width: 5px;
    height: 12px;
    background-color: #4CAF50;
    left: 24px;
    top: 33px;
    transform: rotate(-45deg);
    animation: drawKick 0.3s ease 0.2s forwards;
}

@keyframes popIn {
    from {
        transform: scale(0.5);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes drawStem {
    from {
        height: 0;
    }

    to {
        height: 25px;
    }
}

@keyframes drawKick {
    from {
        height: 0;
    }

    to {
        height: 12px;
    }
}

.success-box .btn-continue {
    background: linear-gradient(135deg, #f0b429, #ffca2b);
    color: #000;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    padding: 10px 22px;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s ease;
}

.success-box .btn-continue:hover {
    background: linear-gradient(135deg, #ffd65a, #f0b429);
    transform: translateY(-2px);
    box-shadow: 0px 4px 10px rgba(240, 180, 41, 0.3);
}