
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --blue: #00c6ff;
    --purple: #b24bff;
    --cyan: #00e5ff;
    --green: #39ff14;
    --white: #f0f4ff;
    --card-bg: rgba(10, 12, 30, 0.88);
    --body-bg: #07091a;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--body-bg);
    color: var(--white);
    min-height: 100vh;
    overflow-x: hidden;
}

/* ── NAVBAR ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 48px;
    background: rgba(7,9,26,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,198,255,0.1);
}

.nav-logo {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
}

    .nav-logo span {
        background: linear-gradient(90deg, var(--blue), var(--purple));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
    align-items: center;
}

    .nav-links a {
        color: rgba(220,230,255,0.75);
        text-decoration: none;
        font-size: 0.9rem;
        font-weight: 500;
        transition: color 0.2s;
    }

        .nav-links a:hover {
            color: var(--cyan);
        }

.nav-cta {
    background: linear-gradient(90deg, var(--blue), var(--purple));
    color: #fff !important;
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 700 !important;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

    .hamburger span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--white);
        border-radius: 2px;
        transition: all 0.3s;
    }

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 0;
    background: rgba(7,9,26,0.97);
    border-top: 1px solid rgba(0,198,255,0.1);
    position: fixed;
    top: 57px;
    left: 0;
    right: 0;
    z-index: 99;
    padding: 16px 0;
}

    .mobile-menu.open {
        display: flex;
    }

    .mobile-menu a {
        color: rgba(220,230,255,0.85);
        text-decoration: none;
        font-size: 1rem;
        font-weight: 500;
        padding: 14px 32px;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        transition: color 0.2s;
    }

        .mobile-menu a:hover {
            color: var(--cyan);
        }

    .mobile-menu .nav-cta {
        margin: 16px 32px 0;
        padding: 12px 20px;
        text-align: center;
        border-radius: 6px;
        border-bottom: none;
        background: linear-gradient(90deg, var(--blue), var(--purple));
        color: #fff;
        font-weight: 700;
    }

/* ── HERO ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 57px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 70% 40%, rgba(0,198,255,0.13) 0%, transparent 70%), radial-gradient(ellipse 40% 60% at 80% 60%, rgba(178,75,255,0.12) 0%, transparent 70%), linear-gradient(160deg, #07091a 0%, #0d1033 100%);
    z-index: 0;
}

    .hero-bg::after {
        content: '';
        position: absolute;
        top: 42%;
        left: 0;
        right: 0;
        height: 1.5px;
        background: linear-gradient(90deg, transparent 0%, #39ff14 40%, transparent 100%);
        opacity: 0.4;
    }

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 760px;
    padding: 64px 48px;
    background: var(--card-bg);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-radius: 0 20px 20px 0;
    border-right: 1px solid rgba(0,198,255,0.15);
    border-top: 1px solid rgba(178,75,255,0.1);
}

h1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(2rem, 5.5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

    h1 .qfs {
        background: linear-gradient(90deg, var(--blue), var(--purple));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.badge {
    display: inline-block;
    background: linear-gradient(90deg, #1a6fff, #7b2fff);
    color: #fff;
    font-style: italic;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 7px 18px;
    border-radius: 6px;
    margin-bottom: 26px;
}

.hero-body {
    font-size: 0.97rem;
    line-height: 1.8;
    color: rgba(220,230,255,0.85);
    margin-bottom: 14px;
}

    .hero-body .highlight {
        color: var(--purple);
        font-weight: 600;
    }

    .hero-body .highlight-blue {
        color: var(--blue);
        font-weight: 600;
    }

    .hero-body strong {
        color: var(--white);
        font-weight: 700;
    }

.future-line {
    color: var(--cyan);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 24px;
}

.features {
    list-style: none;
    margin-top: 8px;
}

    .features li {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 0.97rem;
        font-weight: 600;
        color: var(--white);
        padding: 10px 0;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }

        .features li:last-child {
            border-bottom: none;
        }

        .features li::before {
            content: '';
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--blue), var(--purple));
            flex-shrink: 0;
        }

.cta-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 38px;
    background: linear-gradient(90deg, var(--blue), var(--purple));
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.2s;
}

    .cta-btn:hover {
        opacity: 0.85;
        transform: translateY(-2px);
    }

/* ── TABLET ── */
@media (max-width: 900px) {
    nav {
        padding: 16px 24px;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-content {
        max-width: 100%;
        border-radius: 0;
        padding: 48px 32px;
        border-right: none;
        border-left: none;
    }
}

/* ── MOBILE ── */
@media (max-width: 600px) {
    nav {
        padding: 14px 20px;
    }

    .hero {
        padding-top: 53px;
    }

    .hero-content {
        padding: 36px 20px;
    }

    h1 {
        font-size: clamp(1.8rem, 8vw, 2.6rem);
        margin-bottom: 16px;
    }

    .badge {
        font-size: 0.85rem;
        padding: 6px 14px;
    }

    .hero-body {
        font-size: 0.92rem;
    }

    .features li {
        font-size: 0.9rem;
    }

    .cta-btn {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
    }
}

.hero-content {
    padding: 64px 48px 64px 80px; /* add more left padding */
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 57px;
    background-image: url('../../img/p.jpeg'); /* replace with your image */
    background-size: 50% auto;
    background-position: right center;
    background-repeat: no-repeat;
}

.hero {
    display: flex;
    align-items: stretch; /* change from center */
}

.hero-image {
    flex: 1;
    min-height: 100%;
    overflow: hidden;
}

    .hero-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
        display: block;
    }

/* Hide image on mobile */
@media (max-width: 900px) {
    .hero-image {
        display: none;
    }
}

.hero-content {
    padding: 64px 48px 64px 80px;
    background: var(--card-bg);
    backdrop-filter: blur(18px);
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-img-col {
    min-height: 100vh;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.hero-img {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    object-fit: cover;
    object-position: center top;
    display: block;
}

@media (max-width: 768px) {
    .hero-img-col {
        display: none;
    }

    .hero-content {
        padding: 40px 20px;
        min-height: auto;
    }
}

.btn-signup {
    background: linear-gradient(90deg, var(--blue), #4f8fff);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    padding: 12px 36px;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
}

.btn-login {
    color: var(--cyan);
    font-weight: 700;
    font-size: 1rem;
    padding: 12px 36px;
    border-radius: 8px;
    border: 2px solid var(--cyan);
    text-decoration: none;
    text-align: center;
    background: transparent;
}

    .btn-login:hover {
        background: rgba(0,198,255,0.08);
        color: var(--cyan);
    }

.btn-signup:hover {
    opacity: 0.88;
}

.store-btn img {
    height: 44px;
    display: block;
    border-radius: 8px;
}

.finance-section {
    background: linear-gradient(160deg, #0e0900 0%, #1a1000 50%, #0e0900 100%);
    padding: 80px 0;
}

.finance-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #f0a500;
}

.finance-web3 {
    color: #e040fb;
}

.finance-sub {
    color: rgba(220,220,220,0.7);
    font-size: 0.97rem;
    line-height: 1.7;
    margin-top: 12px;
}

.finance-card {
    background: #1a1a1a;
    border-radius: 16px;
    padding: 36px 24px;
    height: 100%;
    border: 1px solid rgba(255,255,255,0.06);
    transition: transform 0.2s, border-color 0.2s;
}

    .finance-card:hover {
        transform: translateY(-4px);
        border-color: rgba(255,255,255,0.15);
    }

.finance-icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.finance-card-title {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.finance-card-text {
    color: rgba(210,210,210,0.75);
    font-size: 0.9rem;
    line-height: 1.7;
}

.qfs-section {
    background: #f5f5f5;
    padding: 80px 0;
}

.qfs-header-card {
    background: #111;
    color: #fff;
    border-radius: 16px;
    padding: 40px 36px;
}

    .qfs-header-card h2 {
        font-family: 'Rajdhani', sans-serif;
        font-size: clamp(1.6rem, 3.5vw, 2.4rem);
        font-weight: 700;
        margin-bottom: 16px;
    }

    .qfs-header-card p {
        font-size: 0.97rem;
        line-height: 1.75;
        color: rgba(255,255,255,0.82);
    }

.qfs-block {
    background: #fff;
    border-radius: 14px;
    padding: 28px 24px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    height: 100%;
}

    .qfs-block h5 {
        font-weight: 700;
        font-size: 1.05rem;
        color: #1a1a2e;
        margin-bottom: 10px;
    }

    .qfs-block p {
        font-size: 0.9rem;
        color: #444;
        line-height: 1.7;
        margin-bottom: 16px;
    }

.qfs-btn {
    display: inline-block;
    background: #e84118;
    color: #fff;
    font-size: 0.88rem;
    font-weight: 600;
    padding: 9px 20px;
    border-radius: 6px;
    text-decoration: none;
    margin-bottom: 18px;
    transition: opacity 0.2s;
}

    .qfs-btn:hover {
        opacity: 0.85;
        color: #fff;
    }

/* Video thumbnail with play overlay */
.qfs-media {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    background: #000;
}

    .qfs-media video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        pointer-events: none;
    }

.qfs-play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.38);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.qfs-media:hover .qfs-play-overlay {
    background: rgba(0,0,0,0.55);
}

.qfs-play-overlay span {
    font-size: 3rem;
    color: #fff;
    line-height: 1;
}

/* Features */
.qfs-feature h6 {
    font-weight: 700;
    font-size: 0.95rem;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.qfs-feature p {
    font-size: 0.88rem;
    color: #555;
    line-height: 1.7;
}

/* MODAL */
.qfs-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.88);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

    .qfs-modal.active {
        display: flex;
    }

.qfs-modal-inner {
    position: relative;
    width: 90%;
    max-width: 860px;
}

    .qfs-modal-inner video {
        width: 100%;
        aspect-ratio: 16/9;
        border-radius: 12px;
        background: #000;
    }

.qfs-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}

.staking-section {
    background: #0a0a0a;
    padding: 80px 0;
}

.staking-phone {
    max-width: 320px;
    width: 100%;
    height: auto;
    border-radius: 24px;
    filter: drop-shadow(0 0 40px rgba(255,255,255,0.08));
}

.staking-content {
    color: #fff;
}

.staking-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
}

.staking-desc {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.8;
    margin-bottom: 24px;
}

.staking-tabs {
    display: flex;
    gap: 0;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.staking-tab {
    background: none;
    border: none;
    color: rgba(255,255,255,0.5);
    font-size: 0.92rem;
    font-weight: 600;
    padding: 10px 0;
    margin-right: 28px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: color 0.2s, border-color 0.2s;
}

    .staking-tab.active {
        color: #fff;
        border-bottom: 2px solid var(--blue);
    }

    .staking-tab:hover {
        color: #fff;
    }

.staking-tab-content p {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.8;
}

@media (max-width: 768px) {
    .staking-phone {
        max-width: 220px;
    }
}

.about-section {
    background: #0a0a0a;
    padding: 60px 20px;
}

.about-card {
    background: #111;
    border-radius: 20px;
    padding: 40px;
    max-width: 1300px;
    margin: 0 auto;
}

.about-label {
    color: #f0a500;
    font-size: 0.88rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-learn-btn {
    background: #f0a500;
    color: #000;
    font-weight: 700;
    font-size: 0.92rem;
    padding: 10px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: opacity 0.2s;
}

    .about-learn-btn:hover {
        opacity: 0.85;
        color: #000;
    }

.about-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.about-divider {
    border-color: rgba(255,255,255,0.1);
    margin: 24px 0;
}

.about-text {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
}

.about-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

@media (max-width: 768px) {
    .about-card {
        padding: 24px 16px;
    }

    .about-img {
        height: 200px;
    }
}

.about-divider {
    border-color: white;
    margin: 24px 0;
    border: 3px solid white;
}

.aboutus-section {
    background: #fff;
    padding: 80px 0;
}

.aboutus-phone {
    max-width: 340px;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.12));
}

.aboutus-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.aboutus-text {
    font-size: 0.92rem;
    color: #444;
    line-height: 1.85;
    margin-bottom: 20px;
}

.aboutus-mission-title {
    font-weight: 700;
    font-size: 1rem;
    color: #1a1a1a;
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .aboutus-phone {
        max-width: 260px;
    }
}

.whyus-section {
    background: #f5f5f5;
    padding: 80px 0;
}

.whyus-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.whyus-sub {
    font-size: 0.95rem;
    color: #666;
}

.whyus-item {
    padding: 10px 20px;
}

.whyus-icon {
    font-size: 2rem;
    margin-bottom: 14px;
}

.whyus-item-title {
    font-weight: 700;
    font-size: 1rem;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.whyus-item-text {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .whyus-item {
        padding: 10px 0;
    }
}

.journey-section {
    background: #2979d9;
    padding: 70px 0;
}

.journey-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.journey-sub {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.85);
    max-width: 700px;
    margin: 0 auto;
}

.journey-card {
    border: 1.5px solid rgba(255,255,255,0.4);
    border-radius: 10px;
    padding: 28px 16px;
    color: #fff;
}

.journey-icon {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.journey-number {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 6px;
}

.journey-label {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.85);
}

@media (max-width: 576px) {
    .journey-card {
        padding: 20px 10px;
    }
}

.services-section {
    background: #fff;
    padding: 80px 0;
}

.services-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.services-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 700;
    color: #1a1a1a;
}

.srv-card {
    background: #fff;
    border-radius: 14px;
    padding: 30px 24px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.09);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: background 0.25s, color 0.25s, transform 0.2s;
    cursor: default;
}

    .srv-card:hover {
        background: #111;
        transform: translateY(-4px);
    }

        .srv-card:hover .srv-card-title,
        .srv-card:hover .srv-card-text {
            color: #fff;
        }

.srv-card--dark {
    background: #111;
}

    .srv-card--dark .srv-card-title {
        color: #fff;
    }

    .srv-card--dark .srv-card-text {
        color: rgba(255,255,255,0.75);
    }

.srv-icon {
    font-size: 2rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.srv-card-title {
    font-weight: 700;
    font-size: 1rem;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.srv-card-text {
    font-size: 0.88rem;
    color: #555;
    line-height: 1.75;
    flex: 1;
    margin-bottom: 20px;
}

.srv-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #f0a500;
    border: none;
    color: #111;
    font-size: 1.6rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    margin-top: auto;
}

    .srv-arrow:hover {
        background: #d4900a;
        transform: scale(1.1);
    }

/* SERVICE MODAL */
.srv-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

    .srv-modal-overlay.active {
        display: flex;
    }

.srv-modal-box {
    background: #fff;
    border-radius: 16px;
    padding: 40px 36px;
    max-width: 520px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    position: relative;
    text-align: center;
}

.srv-modal-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: #555;
    line-height: 1;
}

.srv-modal-icon {
    font-size: 2.4rem;
    margin-bottom: 16px;
}

.srv-modal-title {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: #1a1a1a;
    margin-bottom: 14px;
}

.srv-modal-text {
    font-size: 0.93rem;
    color: #555;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .srv-modal-box {
        padding: 28px 20px;
    }
}
.qfsready-section {
    background: #fff;
    padding: 80px 0;
}

/* Video */
.qfsready-video-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    background: #000;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.qfsready-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

/* Feature items */
.qfsready-item {
    background: #f9f9f9;
    border-radius: 12px;
    padding: 20px 16px;
    height: 100%;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: background 0.25s, transform 0.2s;
}

    .qfsready-item:hover {
        background: #111;
        transform: translateY(-3px);
    }

        .qfsready-item:hover h6,
        .qfsready-item:hover p {
            color: #fff;
        }

.qfsready-item--dark {
    background: #111;
}

    .qfsready-item--dark h6 {
        color: #fff;
    }

    .qfsready-item--dark p {
        color: rgba(255,255,255,0.75);
    }

.qfsready-item-icon {
    font-size: 1.5rem;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #f0a500, #e040fb, #00c6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.qfsready-item h6 {
    font-weight: 700;
    font-size: 0.92rem;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.qfsready-item p {
    font-size: 0.82rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Right content */
.qfsready-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #f0a500;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.qfsready-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.qfsready-quote {
    border-left: 4px solid #f0a500;
    padding-left: 20px;
    font-size: 0.92rem;
    color: #555;
    line-height: 1.8;
    margin: 0;
}

.qfsready-btn {
    background: #f0a500;
    color: #111;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 32px;
    border-radius: 50px;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.2s;
}

    .qfsready-btn:hover {
        opacity: 0.85;
        transform: translateY(-2px);
        color: #111;
    }

.qfsready-login {
    color: #f0a500;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: opacity 0.2s;
}

    .qfsready-login:hover {
        opacity: 0.75;
        color: #f0a500;
    }

@media (max-width: 768px) {
    .qfsready-item {
        padding: 16px 12px;
    }
}
.proven-section {
    background: #fff;
    padding: 80px 0;
}

.proven-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 18px;
    line-height: 1.2;
}

.proven-text {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.85;
    margin-bottom: 24px;
}

.proven-checklist {
    list-style: none;
    padding: 0;
    margin-bottom: 28px;
}

    .proven-checklist li {
        font-size: 0.9rem;
        color: #444;
        padding: 6px 0;
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .proven-checklist li::before {
            content: '☑';
            color: #1a1a1a;
            font-size: 1rem;
            flex-shrink: 0;
        }

.proven-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.proven-stat-number {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a1a;
}

.proven-stat-label {
    font-size: 0.85rem;
    color: #777;
}

/* Video */
.proven-video-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 12px 40px rgba(0,0,0,0.18);
}

.proven-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    pointer-events: none;
}

.proven-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s;
}

.proven-video-wrap:hover .proven-overlay {
    background: rgba(0,0,0,0.5);
}

.proven-play-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2.5px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
    padding-left: 4px;
    transition: transform 0.2s, background 0.2s;
}

.proven-video-wrap:hover .proven-play-btn {
    transform: scale(1.1);
    background: rgba(255,255,255,0.15);
}

@media (max-width: 768px) {
    .proven-stats {
        gap: 24px;
    }
}
.proven-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.88);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

    .proven-modal-overlay.active {
        display: flex;
    }

.proven-modal-box {
    position: relative;
    width: 90%;
    max-width: 900px;
}

    .proven-modal-box video {
        width: 100%;
        aspect-ratio: 16/9;
        border-radius: 12px;
        background: #000;
        display: block;
    }

.proven-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}
.process-section {
    background: #f5f5f5;
    padding: 80px 0;
}

.process-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.process-sub {
    font-size: 0.92rem;
    color: #666;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.7;
}

.process-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.process-icon-wrap {
    position: relative;
    width: 80px;
    height: 80px;
    background: #111;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: transform 0.2s;
}

    .process-icon-wrap:hover {
        transform: scale(1.08);
    }

.process-icon {
    font-size: 1.8rem;
    filter: grayscale(1) brightness(10);
}

.process-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 22px;
    height: 22px;
    background: #111;
    border: 2px solid #f5f5f5;
    border-radius: 50%;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-item-title {
    font-weight: 700;
    font-size: 0.97rem;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.process-item-text {
    font-size: 0.87rem;
    color: #666;
    line-height: 1.7;
    max-width: 200px;
    margin: 0 auto;
}

@media (max-width: 576px) {
    .process-icon-wrap {
        width: 66px;
        height: 66px;
    }

    .process-icon {
        font-size: 1.4rem;
    }
}
.medbed-section {
    background: #fff;
    padding: 80px 0;
}

.medbed-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.medbed-sub {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.8;
    max-width: 780px;
    margin: 0 auto;
}

.medbed-media-wrap {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.medbed-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.medbed-media-wrap:hover .medbed-img {
    transform: scale(1.04);
}

.medbed-video-wrap {
    position: relative;
    cursor: pointer;
}

.medbed-play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.medbed-video-wrap:hover .medbed-play-overlay {
    background: rgba(0,0,0,0.6);
}

.medbed-play-overlay span {
    font-size: 2.4rem;
    color: #fff;
}

/* Modal */
.medbed-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.88);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

    .medbed-modal-overlay.active {
        display: flex;
    }

.medbed-modal-box {
    position: relative;
    width: 90%;
    max-width: 900px;
}

    .medbed-modal-box video {
        width: 100%;
        aspect-ratio: 16/9;
        border-radius: 12px;
        background: #000;
        display: block;
    }

.medbed-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}

@media (max-width: 576px) {
    .medbed-img {
        height: 160px;
    }
}
.testimonial-section {
    background: #f9f9f9;
    padding: 80px 0;
}

.testimonial-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.testimonial-sub {
    font-size: 0.92rem;
    color: #666;
    max-width: 680px;
    margin: 0 auto;
}

.testimonial-slider-wrap {
    position: relative;
    overflow: hidden;
    padding: 0 10px;
}

.tslider-track {
    display: flex;
    gap: 24px;
    transition: transform 0.4s ease;
}

.tslider-card {
    background: #fff;
    border-radius: 14px;
    padding: 28px 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    flex: 0 0 calc(33.333% - 16px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 240px;
}

.tslider-text {
    font-size: 0.9rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 20px;
    flex: 1;
}

.tslider-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.tslider-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.tslider-name {
    font-weight: 700;
    font-size: 0.92rem;
    color: #1a1a1a;
}

.tslider-role {
    font-size: 0.8rem;
    color: #888;
}

.tslider-stars {
    color: #f0a500;
    font-size: 0.95rem;
    letter-spacing: 2px;
}

/* Arrows */
.tslider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #111;
    color: #fff;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
}

    .tslider-arrow:hover {
        background: #f0a500;
        transform: translateY(-50%) scale(1.08);
    }

.tslider-prev {
    left: -16px;
}

.tslider-next {
    right: -16px;
}

/* Dots */
.tslider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}

.tslider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    border: none;
    transition: background 0.2s, transform 0.2s;
}

    .tslider-dot.active {
        background: #111;
        transform: scale(1.2);
    }

/* Responsive */
@media (max-width: 900px) {
    .tslider-card {
        flex: 0 0 calc(50% - 12px);
    }
}

@media (max-width: 576px) {
    .tslider-card {
        flex: 0 0 100%;
    }

    .tslider-prev {
        left: 0;
    }

    .tslider-next {
        right: 0;
    }
}


.simple-footer {
    background: #111;
    padding: 50px 0 20px;
    color: rgba(255,255,255,0.6);
}

.footer-logo {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

    .footer-logo span {
        color: #00c6ff;
    }

.footer-tagline {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
}

.footer-heading {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #fff;
    margin-bottom: 14px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links li {
        margin-bottom: 8px;
    }

    .footer-links a {
        color: rgba(255,255,255,0.5);
        text-decoration: none;
        font-size: 0.87rem;
        transition: color 0.2s;
    }

        .footer-links a:hover {
            color: #00c6ff;
        }

.footer-contact-text {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 8px;
}

    .footer-contact-text a {
        color: rgba(255,255,255,0.5);
        text-decoration: none;
        transition: color 0.2s;
    }

        .footer-contact-text a:hover {
            color: #00c6ff;
        }

.footer-hr {
    border-color: rgba(255,255,255,0.08);
    margin: 30px 0 16px;
}

.footer-copy {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.3);
    text-align: center;
    margin: 0;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .nav-logo img {
        height: 45px;
        width: auto;
    }

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-top {
    font-size: 14px;
    font-weight: 500;
}

.logo-bottom {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
}