
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(135deg, #f3f4f6, #eef2ff);
    touch-action: manipulation;
}

/* 🔴 NEW ANIMATION - FADE SLIDE UP (PROFESSIONAL) */
@keyframes fadeSlideUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

body {
    animation: fadeSlideUp 1s ease-out;
}

/* 🔴 MENU FIX - BACKGROUND LOCK */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

/* ===== Header - Index Jaisa ===== */
.header-container {
    position: relative;
    width: 100%;
}

.header-bg {
    background: #e0e5ec;
    box-shadow: 5px 5px 10px #a3b1c6, -5px -5px 10px #ffffff;
    border-radius: 0 0 20px 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    z-index: 1;
}

.header-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 20px;
    height: 70px;
}

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

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    top: -10px;
    left: -10px;
}

.brand-text {
    font-size: 22px;
    font-weight: 800;
    color: #1e40af;
    text-shadow: 3px 3px 6px #a3b1c6, -3px -3px 6px #ffffff;
    white-space: nowrap;
    position: relative;
    top: -7px;
    left: -15px;
}

.menu-btn {
    width: 40px;
    height: 40px;
    background: #e0e5ec;
    border: none;
    border-radius: 10px;
    color: #4f46e5;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 5px 5px 10px #a3b1c6, -5px -5px 10px #ffffff;
    transition: 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    top: -7px;
    right: -8px;
    z-index: 3;
    padding: 0;
}

.menu-btn:active {
    box-shadow: inset 5px 5px 10px #a3b1c6, inset -5px -5px 10px #ffffff;
}

/* ===== Side Menu - Index Jaisa ===== */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 999;
    /* 🔴 OVERLAY FIX - NO CLICK */
    pointer-events: none;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
    /* 🔴 ACTIVE HONE PAR BHI CLICK NAHI HOGA */
    pointer-events: none;
}

.menu-container {
    position: fixed;
    top: 0%;
    right: -350px;
    width: 280px;
    background: #e0e5ec;
    transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1000;
    padding: 20px 15px;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
    border-radius: 25px 0 0 25px;
    max-height: 60vh;
    overflow-y: auto;
}

.menu-container.active {
    right: 0;
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.menu-box {
    background: #e0e5ec;
    border-radius: 12px;
    padding: 10px 15px;
    box-shadow: 3px 3px 6px #a3b1c6, -3px -3px 6px #ffffff;
    transition: 0.3s;
}

.menu-box.digital-box {
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.digital-title {
    font-size: 20px;
    font-weight: bold;
    color: #e67e22;
    text-shadow: 2px 2px 4px #a3b1c6, -2px -2px 4px #ffffff;
    white-space: nowrap;
}

.close-btn {
    width: 36px;
    height: 36px;
    background: #e0e5ec;
    border: none;
    border-radius: 10px;
    color: #ef4444;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 3px 3px 6px #a3b1c6, -3px -3px 6px #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.close-btn:active {
    box-shadow: inset 3px 3px 6px #a3b1c6, inset -3px -3px 6px #ffffff;
}

.menu-link {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    text-decoration: none;
    padding: 8px 5px;
    border-radius: 6px;
    transition: 0.2s;
}

.menu-link:hover {
    color: #e67e22;
    padding-left: 15px;
    background: #f0f3ff;
}

/* ===== HERO ===== */
.hero {
    text-align: center;
    padding: 40px 20px;
}

.hero h1 {
    font-size: 32px;
    margin-bottom: 10px;
    white-space: nowrap;
}

.line {
    width: 90px;
    height: 5px;
    background: #6366f1;
    margin: 12px auto 20px auto;
    border-radius: 10px;
}

.hero p {
    color: #6b7280;
    font-size: 18px;
    max-width: 500px;
    margin: auto;
    line-height: 1.6;
}

/* ===== CARDS ===== */
.card {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(14px);
    border-radius: 22px;
    margin: 30px 20px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    transition: all .8s ease;
}

.card.show {
    opacity: 1;
    transform: translateY(0);
}

.card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.card h2 {
    margin: 0;
    font-size: 26px;
}

.number {
    position: absolute;
    right: 25px;
    top: 20px;
    font-size: 60px;
    color: #e5e7eb;
    font-weight: 900;
}

.card p {
    margin-top: 15px;
    color: #6b7280;
}

.list {
    margin-top: 20px;
}

.item {
    display: flex;
    align-items: center;
    margin-bottom: 14px;
    font-size: 17px;
}

.check {
    color: #22c55e;
    font-size: 20px;
    margin-right: 12px;
}

/* ===== LEARN MORE BUTTON ===== */
.learn-more {
    text-align: center;
    padding: 70px 20px;
}

.learn-more h2 {
    color: #2563eb;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 25px;
}

.learn-more p {
    color: #6b7280;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 35px;
}

.details-btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    color: white;
    background: linear-gradient(90deg, #2563eb, #4f46e5);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: .4s;
    border: none;
}

.details-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(79,70,229,.4);
}

/* ===== NEW POPUP WITH FULL DETAILS ===== */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 2000;
    pointer-events: none;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.popup-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 90%;
    max-width: 500px;
    background: white;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    z-index: 2001;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.popup-container.active {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    visibility: visible;
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 2px solid #f0f0f0;
}

.popup-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.popup-close {
    width: 40px;
    height: 40px;
    background: #fee2e2;
    border: none;
    border-radius: 12px;
    color: #ef4444;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.popup-close:hover {
    background: #fecaca;
    transform: rotate(90deg);
}

.popup-content {
    padding: 25px;
    max-height: 70vh;
    overflow-y: auto;
    line-height: 1.8;
    color: #334155;
}

.popup-content::-webkit-scrollbar {
    width: 8px;
}

.popup-content::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 10px;
}

.popup-content::-webkit-scrollbar-thumb {
    background: #94a3b8;
    border-radius: 10px;
}

.popup-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    margin: 25px 0 15px;
}

.popup-content p {
    margin-bottom: 15px;
    font-size: 16px;
}

.popup-content .step-list {
    margin: 20px 0;
    padding-left: 20px;
}

.popup-content .step-list li {
    margin-bottom: 12px;
    font-size: 16px;
}

.popup-content .feature-list {
    list-style: none;
    margin: 20px 0;
}

.popup-content .feature-list li {
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
}

.popup-content .feature-list li::before {
    content: "✅";
    position: absolute;
    left: 0;
    color: #10b981;
    font-size: 18px;
}

.founder-section {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px dashed #e2e8f0;
    text-align: center;
}

.founder-name {
    font-size: 22px;
    font-weight: 700;
    color: #4f46e5;
    margin-bottom: 5px;
}

.founder-title {
    font-size: 14px;
    color: #64748b;
}

.join-text {
    margin-top: 25px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 20px;
    text-align: center;
    font-weight: 600;
    color: #1e293b;
    border: 1px solid #e2e8f0;
}

/* ===== START EARNING SECTION ===== */
.start-earning-section {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    color: white;
}

.start-earning-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 800;
}

.start-earning-section p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.6;
    opacity: 0.95;
}

.start-btn {
    display: inline-block;
    padding: 18px 50px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 700;
    color: #2563eb;
    background: white;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    transition: all 0.4s;
    border: none;
    text-decoration: none;
}

.start-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

/* ===== FOOTER ===== */
.footer {
    background: #0f172a;
    color: #e2e8f0;
    padding: 60px 20px 40px;
    text-align: center;
}

.footer h2 {
    font-size: 36px;
    margin-bottom: 12px;
    font-weight: 800;
    color: white;
}

.footer .tagline {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.6;
    opacity: 0.9;
}

.footer .section-title {
    font-size: 24px;
    font-weight: 700;
    margin: 40px 0 20px;
    color: #60a5fa;
    position: relative;
    display: inline-block;
}

.footer .section-title::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: #60a5fa;
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer li {
    margin: 14px 0;
    font-size: 17px;
}

.footer a {
    color: #cbd5e1;
    text-decoration: none;
    transition: 0.3s;
}

.footer a:hover {
    color: #60a5fa;
    padding-left: 8px;
}

.footer .bottom {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #334155;
    font-size: 15px;
    opacity: 0.8;
}

/* Remove Android tap highlight */
* {
    -webkit-tap-highlight-color: transparent;
}

.box,
.menu-btn,
.menu-text,
button,
a,
div {
    -webkit-tap-highlight-color: transparent;
    outline: none;
    user-select: none;
    -webkit-user-select: none;
}

.box:focus,
.box:active,
button:focus,
button:active,
a:focus,
a:active {
    outline: none;
}