/* ===================== DOCS PAGE LAYOUT ===================== */

.docs-wrapper {
    display: flex;
    min-height: 100vh;
}

/* Sidebar */
.templora-sidebar {
    width: 260px;
    background: #0f172a;
    color: white;
    padding: 1.5rem;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    overflow-y: auto;
    z-index: 1000;
}

.sidebar-header i {
    color: #0d6efd;
}

.sidebar-links {
    list-style: none;
    padding-left: 0;
}

.sidebar-links li {
    margin-bottom: 10px;
}

.sidebar-links a {
    display: block;
    padding: 8px 12px;
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: 0.25s ease;
}

.sidebar-links a:hover,
.sidebar-links a.active {
    background: #1e293b;
    color: #fff;
}

/* Sidebar Toggle (Mobile) */
.sidebar-toggle {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1100;
    display: none;
}

/* Content Area */
.templora-content {
    flex-grow: 1;
    margin-left: 260px;
    padding: 3rem;
}

/* Responsive */
@media (max-width: 992px) {
    .templora-sidebar {
        left: -300px;
        transition: 0.3s ease;
    }

    .templora-sidebar.open {
        left: 0;
    }

    .templora-content {
        margin-left: 0;
        padding: 2rem;
    }

    .sidebar-toggle {
        display: block;
    }
}

.new-badge {
    background: #ff007f;
    color: #fff;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 6px;
    margin-left: 6px;
    font-weight: 700;
}

.pulse-new {
    animation: pulseGlow 1.3s infinite;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0px rgba(255, 0, 127, 0.6);
    }

    50% {
        box-shadow: 0 0 6px rgba(255, 0, 127, 1);
    }

    100% {
        box-shadow: 0 0 0px rgba(255, 0, 127, 0.6);
    }
}


.copy-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 6px 16px;
    border-radius: 8px;
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s ease;
}

/* Icon (clipboard symbol) */
.copy-btn::before {
    content: "📋";
    font-size: 14px;
    opacity: 0.9;
}

/* Hover effect */
.copy-btn:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.45);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}


.cyber-nav {
    width: 100%;
    padding: 18px 35px;
    background: rgba(10, 10, 10, 0.85);
    border: 2px solid #8f00ff;
    border-radius: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 0 35px #8f00ff55;
    position: relative;
    overflow: hidden;
}

/* Neon Accent Line */
.cyber-nav::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ff00e6, #00eaff, transparent);
    animation: scan 4s linear infinite;
}

@keyframes scan {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* Logo */
.glitch {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 0 10px #ff00e6, 0 0 20px #00eaff;
}

/* Nav Links */
.nav-links {
    display: flex;
    gap: 25px;
    list-style: none;
}

.nav-links a {
    color: #e0e0e0;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    transition: 0.3s ease;
}

.nav-links a:hover {
    color: #00eaff;
}

.nav-links a::after {
    content: "";
    width: 0%;
    height: 2px;
    background: #00eaff;
    position: absolute;
    left: 0;
    bottom: -4px;
    transition: 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Cyberpunk Button */
.cyber-btn {
    padding: 10px 24px;
    background: transparent;
    border: 2px solid #ff00e6;
    color: #fff;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cyber-btn:hover {
    background: #ff00e633;
    box-shadow: 0 0 18px #ff00e6;
}

.cyber-btn::before {
    content: "";
    width: 120%;
    height: 120%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 0, 230, 0.4),
            transparent);
    position: absolute;
    top: -100%;
    left: -20%;
    transform: rotate(25deg);
    animation: shine 2.5s infinite ease-in-out;
}

@keyframes shine {
    0% {
        top: -120%;
    }

    100% {
        top: 120%;
    }
}


.tilt-cards {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.tilt-card {
    width: 280px;
    padding: 40px 25px;
    border-radius: 20px;
    background: rgba(20, 20, 20, 0.8);
    border: 1.5px solid rgba(255, 0, 230, 0.25);
    position: relative;
    text-align: center;
    cursor: pointer;
    transition: 0.4s ease;
    color: #fff;
    overflow: hidden;
    box-shadow: 0 0 25px rgba(138, 0, 255, 0.3);
}

.card-glow {
    position: absolute;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, #ff00e6, transparent);
    border-radius: 50%;
    top: -60px;
    right: -40px;
    filter: blur(40px);
    opacity: 0.4;
    pointer-events: none;
}

.tilt-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    text-shadow: 0 0 10px rgba(255, 0, 230, 0.4);
}

.tilt-card p {
    font-size: 15px;
    opacity: 0.8;
}

/* Hover Style */
.tilt-card:hover {
    box-shadow: 0 0 40px #ff00e666;
    border-color: #ff00e6;
}


.glass-slider {
    position: relative;
    width: 100%;
    max-width: 550px;
    margin: auto;
}

.slider-container {
    position: relative;
    overflow: hidden;
}

.slide {
    display: none;
    animation: fade 0.7s ease;
}

.slide.active {
    display: block;
}

/* Glass Card */
.glass-card {
    padding: 40px 25px;
    background: rgba(15, 6, 6, 0.536);
    border-radius: 18px;
    backdrop-filter: blur(12px);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.15);
}

.blob {
    position: absolute;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, #fcfcfc6c, transparent);
    border-radius: 50%;
    top: -50px;
    right: -40px;
    filter: blur(40px);
    opacity: 0.5;
}

.avatar {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    margin-bottom: 12px;
    border: 2px solid #ffffff55;
}

.glass-card h3 {
    font-size: 22px;
    color: #fff;
    margin-bottom: 5px;
}

.role {
    font-size: 14px;
    color: #d9d9d9;
    margin-bottom: 15px;
}

.feedback {
    font-size: 15px;
    color: #e6e6e6;
    margin-bottom: 15px;
}

.stars {
    color: #ffea00;
    font-size: 20px;
}

/* Arrows */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid #ffffff44;
    backdrop-filter: blur(10px);
    padding: 8px 14px;
    border-radius: 10px;
    cursor: pointer;
    color: #0e0e0e;
    font-size: 22px;
    transition: 0.3s;
}

.arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 15px #ffffff66;
}

.left {
    left: -55px;
}

.right {
    right: -55px;
}

/* Animation */
@keyframes fade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.premium-cta {
    width: 100%;
    padding: 60px;
    border-radius: 22px;
    background: radial-gradient(circle at 30% 20%, #6f00ff, #180026 60%);
    border: 2px solid rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
    text-align: center;
    color: white;
    animation: fadeInUp 1s ease forwards;
}

/* Glowing Animated Blobs */
.cta-blob {
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.6;
    animation: blobFloat 8s infinite ease-in-out alternate;
}

.b1 {
    background: #ff00e6;
    top: -60px;
    left: -50px;
}

.b2 {
    background: #00d9ff;
    bottom: -70px;
    right: -50px;
}

/* Content */
.cta-content h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
}

/* Buttons */
.cta-actions {
    display: flex;
    gap: 18px;
    justify-content: center;
}

.cta-btn {
    padding: 14px 32px;
    border-radius: 40px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.35s;
    border: none;
    font-weight: 600;
}

.cta-btn.primary {
    background: linear-gradient(135deg, #ff00e6, #6f00ff);
    box-shadow: 0 0 25px rgba(255, 0, 221, 0.5);
}

.cta-btn.primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 35px rgba(255, 0, 221, 0.7);
}

.cta-btn.glass {
    background: rgba(255, 255, 255, 0.12);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(12px);
    color: #fff;
}

.cta-btn.glass:hover {
    background: rgba(255, 255, 255, 0.22);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes blobFloat {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-40px);
    }
}


.premium-cta {
    width: 100%;
    padding: 60px;
    border-radius: 22px;
    background: radial-gradient(circle at 30% 20%, #6f00ff, #180026 60%);
    border: 2px solid rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
    text-align: center;
    color: white;
    animation: fadeInUp 1s ease forwards;
}

/* Glowing Animated Blobs */
.cta-blob {
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.6;
    animation: blobFloat 8s infinite ease-in-out alternate;
}

.b1 {
    background: #ff00e6;
    top: -60px;
    left: -50px;
}

.b2 {
    background: #00d9ff;
    bottom: -70px;
    right: -50px;
}

/* Content */
.cta-content h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
}

/* Buttons */
.cta-actions {
    display: flex;
    gap: 18px;
    justify-content: center;
}

.cta-btn {
    padding: 14px 32px;
    border-radius: 40px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.35s;
    border: none;
    font-weight: 600;
}

.cta-btn.primary {
    background: linear-gradient(135deg, #ff00e6, #6f00ff);
    box-shadow: 0 0 25px rgba(255, 0, 221, 0.5);
}

.cta-btn.primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 35px rgba(255, 0, 221, 0.7);
}

.cta-btn.glass {
    background: rgba(255, 255, 255, 0.12);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(12px);
    color: #fff;
}

.cta-btn.glass:hover {
    background: rgba(255, 255, 255, 0.22);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes blobFloat {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-40px);
    }
}


.futuristic-faq {
    width: 100%;
    max-width: 650px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* Question Box */
.faq-question {
    width: 100%;
    background: linear-gradient(90deg, #6f00ff, #ff00e6);
    padding: 16px 20px;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 0 18px #ff00e666;
    transition: 0.3s;
}

.faq-question:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 28px #ff00e699;
}

/* Arrow */
.arrow-icon {
    transition: 0.3s ease;
    font-size: 20px;
}

/* Answer Panel */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    padding: 0 20px;
    border-radius: 14px;
    transition: max-height 0.45s ease, padding 0.3s ease;
    color: #e8e8e8;
    line-height: 1.6;
}

/* Active State */
.faq-item.active .faq-answer {
    color: #0e0e0e;
    padding: 18px 20px;
    max-height: 200px;
}

.faq-item.active .arrow-icon {
    transform: rotate(180deg);
}

.apple-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.apple-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px 26px;
    text-align: center;
    border: 1px solid #e4e4e7;
    transition: 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.apple-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.icon-wrap {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #f1f1f5, #f9f9fa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    border: 1px solid #e8e8ea;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
}

.icon {
    font-size: 26px;
}

.apple-card h3 {
    margin-top: 20px;
    font-size: 20px;
    font-weight: 700;
    color: #111;
}

.apple-card p {
    margin-top: 10px;
    font-size: 15px;
    color: #555;
    line-height: 1.5;
}

.apple-demo {
    background: transparent !important;
    padding: 0 !important;
}

.apple-stats {
    width: 100%;
    background: #ffffff;
    border-radius: 20px;
    padding: 32px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border: 1px solid #e6e6e9;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

.stat-box {
    flex: 1;
    text-align: center;
    padding: 12px;
    border-right: 1px solid #e6e6e9;
    cursor: pointer;
    transition: 0.3s ease;
}

.stat-box:last-child {
    border-right: none;
}

.stat-box h3 {
    font-size: 32px;
    font-weight: 800;
    color: #111;
}

.stat-box p {
    margin-top: 6px;
    font-size: 14px;
    color: #676767;
}

.stat-box:hover {
    transform: translateY(-4px);
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

.apple-stats-demo {
    background: transparent !important;
    padding: 0 !important;
}

/* Responsive */
@media (max-width: 768px) {
    .apple-stats {
        flex-direction: column;
        gap: 16px;
    }

    .stat-box {
        border-right: none;
        border-bottom: 1px solid #e6e6e9;
        padding-bottom: 16px;
    }

    .stat-box:last-child {
        border-bottom: none;
    }
}

.apple-pricing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    padding: 20px 0;
}

.pricing-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 32px 24px;
    border: 1px solid #e5e5e7;
    text-align: center;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
    transition: 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

.plan {
    font-size: 20px;
    font-weight: 700;
    color: #111;
}

.price {
    font-size: 38px;
    font-weight: 800;
    margin-top: 8px;
    color: #111;
}

.price span {
    font-size: 16px;
    color: #555;
    margin-left: 2px;
}

.features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.features li {
    font-size: 15px;
    color: #555;
    padding: 6px 0;
    border-bottom: 1px solid #f0f0f2;
}

.features li:last-child {
    border-bottom: none;
}

/* Buttons */
.pricing-btn {
    margin-top: 16px;
    padding: 12px 20px;
    width: 100%;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    background: #f5f5f7;
    color: #111;
    transition: 0.3s;
}

.pricing-btn:hover {
    background: #eaeaea;
}

/* Highlighted (popular plan) */
.popular {
    border: 1.5px solid #6f00ff;
    box-shadow: 0 0 0 3px rgba(111, 0, 255, 0.08);
}

.tag {
    background: #6f00ff;
    color: #fff;
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 12px;
}

.highlight {
    background: linear-gradient(90deg, #6f00ff, #ff00e6);
    color: #fff !important;
    box-shadow: 0 6px 24px rgba(111, 0, 255, 0.18);
}

.highlight:hover {
    opacity: 0.9;
}

.pricing-demo {
    background: transparent !important;
    padding: 0 !important;
}

/* Minimal Gradient Stats Blocks CSS */
.grad-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 18px;
    align-items: stretch;
    max-width: 1000px;
    margin: 0 auto;
}

/* Card base */
.stat-card {
    background: linear-gradient(180deg, #ffffff 0%, #fbfbfc 100%);
    border-radius: 14px;
    padding: 20px 18px;
    text-align: center;
    border: 1px solid #eef0f3;
    transition: transform 0.35s cubic-bezier(.2, .9, .2, 1), box-shadow 0.35s;
    cursor: default;
    box-shadow: 0 6px 20px rgba(15, 20, 30, 0.04);
}

/* subtle hover */
.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(15, 20, 30, 0.08);
}

/* Icon circle (soft gradient ring) */
.stat-icon {
    display: inline-flex;
    width: 56px;
    height: 56px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 22px;
    margin: 0 auto 12px;
    background: linear-gradient(135deg, rgba(111, 0, 255, 0.12), rgba(255, 0, 150, 0.06));
    color: #6f00ff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

/* Value */
.stat-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
    font-weight: 800;
    color: #0f1724;
    font-size: 28px;
}

.stat-value .num {
    display: inline-block;
    min-width: 36px;
    text-align: right;
}

.stat-value .suffix {
    font-size: 16px;
    color: #6b7280;
    font-weight: 700;
}

/* Label */
.stat-label {
    margin-top: 8px;
    color: #6b7280;
    font-size: 14px;
    font-weight: 600;
}

/* Micro animation for icon */
.stat-card .stat-icon {
    transition: transform 0.45s cubic-bezier(.2, .9, .2, 1);
}

.stat-card:hover .stat-icon {
    transform: translateY(-4px) scale(1.03);
}

/* light gradient accent under card (thin) */
.stat-card::after {
    content: "";
    display: block;
    height: 6px;
    margin-top: 14px;
    border-radius: 6px;
    background: linear-gradient(90deg, #6f00ff, #ff00b3);
    opacity: 0.06;
}

/* Responsive spacing */
@media (max-width:720px) {
    .stat-value {
        font-size: 22px;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}


/* Premium Footer CSS */
.premium-footer {
    padding: 50px 0 25px;
    border-top: 1px solid #ececf0;
    font-family: "Inter", sans-serif;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: auto;
}

.brand-name {
    font-weight: 800;
    font-size: 26px;
    color: #111;
}

.brand-text {
    margin-top: 6px;
    color: #444;
    font-size: 14px;
    line-height: 1.5;
}

.footer-social a {
    color: #333;
    margin-right: 12px;
    font-size: 18px;
    transition: 0.3s ease;
}

.footer-social a:hover {
    color: #6f00ff;
    transform: translateY(-3px);
}

.footer-links h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 14px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #555;
    text-decoration: none;
    font-size: 14px;
    transition: 0.25s;
}

.footer-links ul li a:hover {
    color: #6f00ff;
    margin-left: 4px;
}

/* Newsletter */
.newsletter-input {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.newsletter-input input {
    flex: 1;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid #dcdce0;
    font-size: 14px;
}

.newsletter-btn {
    background: #6f00ff;
    border: none;
    padding: 10px 18px;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s ease;
}

.newsletter-btn:hover {
    opacity: 0.9;
}

/* Bottom */
.footer-bottom {
    text-align: center;
    margin-top: 35px;
    padding-top: 20px;
    border-top: 1px solid #ececf0;
}

.footer-bottom p {
    color: #777;
    font-size: 13px;
}

/* Demo wrapper */
.footer-demo {
    background: transparent !important;
    padding: 0 !important;
}

/* How It Works Section */
.how-it-works {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    max-width: 1100px;
    margin: auto;
    padding: 40px 0;
}

.step-box {
    background: #ffffff;
    border: 1px solid #e9e9ee;
    padding: 28px 22px;
    border-radius: 16px;
    flex: 1;
    text-align: center;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
    transition: 0.3s ease;
    position: relative;
    z-index: 2;
}

.step-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.1);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6f00ff, #ff00c8);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: #fff;
    font-size: 26px;
    margin: 0 auto 14px;
    transition: 0.3s ease;
}

.step-box:hover .step-icon {
    transform: scale(1.08);
}

/* Step Line */
.step-line {
    position: absolute;
    top: 58px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #6f00ff, #ff00c8);
    opacity: 0.2;
    z-index: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .how-it-works {
        flex-direction: column;
        gap: 20px;
    }

    .step-line {
        display: none;
    }
}

/* Contact Box Area */
.contact-box-area {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 26px;
    max-width: 1100px;
    margin: auto;
    padding: 40px 0;
}

.contact-card {
    background: #ffffff;
    border: 1px solid #e9e9f0;
    border-radius: 16px;
    padding: 28px 22px;
    text-align: center;
    transition: 0.35s ease;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.contact-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

/* Icons */
.contact-icon {
    width: 62px;
    height: 62px;
    background: linear-gradient(135deg, #6f00ff, #ff00c8);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    margin: 0 auto 16px;
    transition: 0.35s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.09);
}

/* Titles */
.contact-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #111;
}

/* Details */
.contact-card p {
    color: #555;
    font-size: 14px;
    margin-bottom: 14px;
}

/* Button */
.contact-btn {
    display: inline-block;
    background: #6f00ff;
    color: #fff;
    padding: 10px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
}

.contact-btn:hover {
    opacity: 0.85;
}

/* ABOUT SECTION */
.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1100px;
    margin: auto;
    padding: 40px 0;
}

/* IMAGE */
.about-image img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.02);
}

/* CONTENT */
.about-content h3 {
    font-size: 28px;
    font-weight: 800;
    color: #111;
    margin-bottom: 12px;
}

.about-content p {
    color: #555;
    margin-bottom: 18px;
    line-height: 1.6;
}

/* HIGHLIGHT POINTS */
.about-points {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.about-points li {
    font-size: 15px;
    color: #444;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.about-points i {
    color: #6f00ff;
    font-size: 18px;
}

/* BUTTON */
.about-btn {
    display: inline-block;
    background: #6f00ff;
    color: #fff;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.about-btn:hover {
    opacity: 0.9;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .about-section {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-points li {
        justify-content: center;
    }
}


/* Premium Announcement Ribbon */
.announcement-ribbon {
    background: linear-gradient(90deg, #6f00ff, #ff00c8);
    padding: 14px 26px;
    border-radius: 14px;
    display: inline-block;
    transform: skew(-8deg);
    box-shadow: 0 8px 25px rgba(111, 0, 255, 0.25),
        0 0 22px rgba(255, 0, 200, 0.20);
    transition: 0.35s ease;
    cursor: pointer;
    position: relative;
}

.announcement-ribbon:hover {
    transform: skew(-8deg) translateY(-6px);
    box-shadow: 0 12px 32px rgba(111, 0, 255, 0.35),
        0 0 28px rgba(255, 0, 200, 0.35);
}

.ribbon-text {
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.5px;
    display: inline-block;
    transform: skew(8deg);
}

/* Subtle shine effect */
.announcement-ribbon::after {
    content: "";
    position: absolute;
    top: 0;
    left: -40%;
    width: 40%;
    height: 100%;
    background: rgba(255, 255, 255, 0.25);
    transform: skew(8deg);
    filter: blur(10px);
    opacity: 0;
    transition: 0.4s ease;
}

.announcement-ribbon:hover::after {
    left: 110%;
    opacity: 1;
}

/* Center demo wrapper */
.ribbon-demo {
    padding: 20px 0 !important;
}


/* Modern Notification Bar */
.notif-bar {
    width: 100%;
    background: linear-gradient(90deg, #6f00ff, #ff00c8);
    color: #fff;
    padding: 12px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 0 0 14px 14px;
    box-shadow: 0 6px 18px rgba(111, 0, 255, 0.28);
    position: relative;
    transform: translateY(-110%);
    opacity: 0;
    animation: slideDown 0.7s ease forwards;
    z-index: 999;
}

.notif-text {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .3px;
}

.notif-close {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #fff;
    padding: 6px 8px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.25s;
}

.notif-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Slide animation */
@keyframes slideDown {
    0% {
        transform: translateY(-110%);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Hide animation */
.hide-notif {
    animation: slideUp 0.5s ease forwards;
}

@keyframes slideUp {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(-110%);
        opacity: 0;
    }
}

/* Demo wrapper */
.notif-demo {
    padding: 0 !important;
}


/* SEARCH SECTION */
.search-wrapper {
    max-width: 650px;
    margin: 20px auto;
    position: relative;
}

/* Search Box */
.search-box {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 16px;
    padding: 12px 18px;
    box-shadow: 0 10px 25px rgba(111, 0, 255, 0.10);
    border: 1px solid #e8e0ff;
    transition: 0.3s ease;
}

.search-box:hover {
    box-shadow: 0 14px 35px rgba(111, 0, 255, 0.18);
}

/* Icon */
.search-icon {
    font-size: 20px;
    color: #6f00ff;
    margin-right: 12px;
}

/* Input */
.search-box input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 15px;
    color: #222;
    background: transparent;
}

/* Search Button */
.search-btn {
    background: #6f00ff;
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: 0.25s ease;
}

.search-btn:hover {
    opacity: 0.85;
}

/* Suggestions Box */
.search-suggestions {
    list-style: none;
    padding: 12px 0;
    margin: 10px 0 0;
    background: #fff;
    border-radius: 14px;
    border: 1px solid #ece0ff;
    box-shadow: 0 12px 30px rgba(111, 0, 255, 0.12);
    display: none;
    animation: fadeIn 0.25s ease;
}

.search-suggestions li {
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    cursor: pointer;
    transition: 0.2s;
}

.search-suggestions li:hover {
    background: #f6f0ff;
    color: #6f00ff;
}

/* Icons in suggestions */
.search-suggestions li i {
    font-size: 18px;
    color: #6f00ff;
}

/* Fade animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* TEAM CARDS */
.team-area {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: auto;
    padding: 40px 0;
}

/* Card */
.team-card {
    background: #fff;
    border-radius: 18px;
    padding: 24px 20px;
    text-align: center;
    border: 1px solid #eee;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.07);
    transition: 0.35s ease;
    position: relative;
    cursor: pointer;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(111, 0, 255, 0.25);
    border-color: #6f00ff;
}

/* Image */
.team-image img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 12px;
    transition: 0.3s ease;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.team-card:hover .team-image img {
    transform: scale(1.08);
}

/* Name */
.team-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin-bottom: 6px;
}

/* Role */
.team-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 16px;
}

/* Social Icons */
.team-social a {
    margin: 0 6px;
    font-size: 18px;
    color: #6f00ff;
    transition: 0.25s ease;
}

.team-social a:hover {
    color: #ff00c8;
    transform: translateY(-3px);
}

/* NAVBAR WRAPPER */
.advanced-navbar {
    width: 100%;
    padding: 14px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* LOGO */
.nav-logo {
    font-size: 22px;
    font-weight: 800;
    color: #111;
}

/* LINKS */
.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    font-weight: 600;
    color: #333;
    position: relative;
    transition: 0.3s ease;
}

/* Underline animation */
.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background: #6f00ff;
    transition: 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* ACTION BUTTON RIGHT */
.nav-btn {
    background: linear-gradient(135deg, #6f00ff, #ff00c8);
    border: none;
    color: white;
    padding: 10px 18px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.25s ease;
}

.nav-btn:hover {
    opacity: 0.85;
}

/* SEARCH ICON */
.nav-search {
    font-size: 22px;
    margin-right: 18px;
    cursor: pointer;
    color: #6f00ff;
}

/* MOBILE MENU ICON */
.mobile-menu-icon {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

/* MOBILE MENU STYLE */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: #fff;
    box-shadow: -6px 0 20px rgba(0, 0, 0, 0.1);
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: 0.3s ease;
    z-index: 999;
}

.mobile-menu a {
    font-size: 18px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
}

.mobile-btn {
    background: linear-gradient(135deg, #6f00ff, #ff00c8);
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
}

.close-menu {
    font-size: 26px;
    align-self: flex-end;
    margin-bottom: 10px;
    cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 820px) {
    .nav-links {
        display: none;
    }

    .nav-btn {
        display: none;
    }

    .mobile-menu-icon {
        display: block;
    }
}

/* Grid Layout */
.reveal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 26px;
    max-width: 1100px;
    margin: auto;
    padding: 40px 0;
}

/* Card */
.reveal-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    transition: 0.35s ease;
    height: 260px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

.reveal-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.35s ease;
}

/* Expand effect on hover */
.reveal-card:hover {
    transform: scale(1.06);
}

.reveal-card:hover img {
    filter: brightness(40%);
}

/* Hidden content */
.reveal-content {
    position: absolute;
    bottom: 0;
    padding: 20px;
    color: #fff;
    opacity: 0;
    transform: translateY(25px);
    transition: 0.35s ease;
}

/* Reveal on hover */
.reveal-card:hover .reveal-content {
    opacity: 1;
    transform: translateY(0px);
}

.reveal-content h3 {
    margin: 0 0 6px;
    font-size: 20px;
    font-weight: 700;
}

.reveal-content p {
    font-size: 14px;
    opacity: 0.9;
}


/* Reaction Box */
.reaction-box {
    position: relative;
    display: inline-block;
}

.react-btn {
    padding: 10px 18px;
    background: #6f00ff;
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
}

/* Reaction Strip */
.reaction-strip {
    position: absolute;
    top: -70px;
    left: 50%;
    transform: translateX(-50%) scale(0.7);
    background: #fff;
    padding: 10px 14px;
    display: flex;
    gap: 12px;
    border-radius: 40px;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.15);
    opacity: 0;
    pointer-events: none;
    transition: 0.25s ease;
}

/* Show on hover */
.reaction-box:hover .reaction-strip {
    opacity: 1;
    transform: translateX(-50%) scale(1);
    pointer-events: auto;
}

/* Emoji Style */
.emoji {
    font-size: 26px;
    cursor: pointer;
    transition: 0.25s ease;
    transform: translateY(10px);
    opacity: 0;
}

/* Pop Animation WITH DELAY */
.reaction-box:hover .emoji {
    transform: translateY(0px);
    opacity: 1;
}

.emoji:nth-child(1) {
    transition-delay: 0.05s;
}

.emoji:nth-child(2) {
    transition-delay: 0.10s;
}

.emoji:nth-child(3) {
    transition-delay: 0.15s;
}

.emoji:nth-child(4) {
    transition-delay: 0.20s;
}

.emoji:nth-child(5) {
    transition-delay: 0.25s;
}

.emoji:nth-child(6) {
    transition-delay: 0.30s;
}

/* Hover Grow */
.emoji:hover {
    transform: scale(1.4);
}


/* Container */
.multistep-form {
    max-width: 450px;
    margin: auto;
    font-family: "Poppins", sans-serif;
}

/* Progress Steps */
.progress-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 26px;
}

.step {
    width: 38px;
    height: 38px;
    background: #eae6ff;
    color: #6f00ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: 0.3s;
}

.step.active {
    background: #6f00ff;
    color: #fff;
}

/* Form wrapper */
.form-wrapper {
    overflow: hidden;
    position: relative;
    height: 290px;
}

/* Individual steps */
.form-step {
    position: absolute;
    width: 100%;
    top: 0;
    left: 100%;
    opacity: 0;
    transform: translateX(40px);
    transition: 0.4s ease;
}

.form-step.active {
    left: 0;
    opacity: 1;
    transform: translateX(0px);
}

/* Inputs */
.form-step input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border-radius: 10px;
    border: 1px solid #d6d6ea;
}

/* Buttons */
.next-btn,
.back-btn,
.submit-btn {
    background: #6f00ff;
    color: #fff;
    padding: 10px 20px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

.back-btn {
    background: #999;
}

.btn-row {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}


/* Wrapper */
.hotspot-wrapper {
    position: relative;
    max-width: 900px;
    margin: auto;
}

/* Image */
.hotspot-image {
    width: 100%;
    border-radius: 16px;
    display: block;
}

/* Hotspot Dot */
.hotspot {
    position: absolute;
    width: 16px;
    height: 16px;
    background: #6f00ff;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 0 6px rgba(111, 0, 255, 0.25);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(111, 0, 255, 0.5);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(111, 0, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(111, 0, 255, 0);
    }
}

/* Tooltip */
.hotspot-tooltip {
    position: absolute;
    bottom: 20px;
    left: 20px;
    max-width: 260px;
    background: #ffffff;
    padding: 14px 16px;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: 0.3s;
}

.hotspot-tooltip h4 {
    margin: 0 0 6px;
    font-size: 15px;
}

.hotspot-tooltip p {
    margin: 0;
    font-size: 13px;
    color: #555;
}

/* Show tooltip */
.hotspot-tooltip.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}


/* OTP Wrapper */
.otp-box {
    display: flex;
    justify-content: center;
    gap: 12px;
}

/* OTP Input */
.otp-input {
    width: 48px;
    height: 56px;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    border-radius: 12px;
    border: 1px solid #dcdcf2;
    outline: none;
    transition: 0.25s;
    background: #fff;
}

/* Focus State */
.otp-input:focus {
    border-color: #6f00ff;
    box-shadow: 0 0 0 2px rgba(111, 0, 255, 0.15);
}

/* Filled State */
.otp-input:not(:placeholder-shown) {
    background: #f6f3ff;
}


/* Open Button */
.open-command-btn {
    padding: 10px 16px;
    background: #6f00ff;
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
}

/* Overlay */
.command-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 120px;
    opacity: 0;
    pointer-events: none;
    transition: 0.25s;
    z-index: 9999;
}

.command-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* Command Box */
.command-box {
    width: 100%;
    max-width: 520px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    font-family: "Poppins", sans-serif;
}

/* Input */
.command-input {
    width: 100%;
    padding: 14px 16px;
    border: none;
    border-bottom: 1px solid #eee;
    font-size: 15px;
    outline: none;
}

/* List */
.command-list {
    list-style: none;
    margin: 0;
    padding: 6px;
    max-height: 280px;
    overflow-y: auto;
}

.command-item {
    padding: 12px 14px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px;
    transition: 0.2s;
}

/* Hover & Active */
.command-item:hover,
.command-item.active {
    background: #f3e9ff;
    color: #6f00ff;
}


/* Container */
.compare-container {
    position: relative;
    max-width: 900px;
    margin: auto;
    height: 500px;
    border-radius: 18px;
    overflow: hidden;
    cursor: ew-resize;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
}

/* Images */
.compare-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.compare-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Before full */
.compare-image.before {
    z-index: 1;
}

/* After clipped */
.compare-image.after {
    z-index: 2;
    width: 50%;
    overflow: hidden;
}

/* Handle */
.compare-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: #ffffff;
    z-index: 3;
    transform: translateX(-50%);
}

.compare-handle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 36px;
    height: 36px;
    background: #6f00ff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 6px rgba(111, 0, 255, 0.25);
}

/*scroll triggered section*/
.story-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: auto;
}

/* Sticky Visual */
.story-visual {
    position: sticky;
    top: 120px;
    height: 260px;
    background: #f6f3ff;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
}

/* Screens */
.story-screen {
    display: none;
}

.story-screen.active {
    display: block;
}

/* Content Steps */
.story-content {
    display: flex;
    flex-direction: column;
    gap: 120px;
}

.story-step {
    font-size: 18px;
    line-height: 1.6;
    padding: 80px 0;
    color: #333;
}

/* Responsive */
@media (max-width: 768px) {
    .story-wrapper {
        grid-template-columns: 1fr;
    }

    .story-visual {
        position: relative;
        top: 0;
    }
}