﻿:root {
    --bg: #060607;
    --panel: #0f1113;
    --muted: #a6adb3;
    --white: #ffffff;
    --logo-orange-1: #ff7a00;
    --logo-orange-2: #ffb347;
    --glass: rgba(255,255,255,0.02);
    --accent-glow: rgba(255,122,0,0.12);
    --radius: 12px;
    --maxw: 1200px;
    --mono: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

* {
    box-sizing: border-box
}

html, body {
    height: 100%
}

body {
    margin: 0;
    font-family: var(--mono);
    background: radial-gradient(1200px 600px at 10% 10%, rgba(255,122,0,0.02), transparent 6%), radial-gradient(800px 400px at 90% 90%, rgba(255,179,71,0.01), transparent 6%), var(--bg);
    color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding: 28px;
    display: flex;
    justify-content: center;
}

.wrap {
    width: 100%;
    max-width: var(--maxw)
}

/* HEADER */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit
}

.logo {
    width: 54px;
    height: 54px;
    border-radius: 10px;
    background: linear-gradient(135deg,var(--logo-orange-1),var(--logo-orange-2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #0b0b0b;
    box-shadow: 0 6px 18px rgba(0,0,0,0.6);
    flex-shrink: 0;
}

header nav {
    display: flex;
    gap: 18px;
    align-items: center
}

nav a {
    color: var(--muted);
    text-decoration: none;
    font-weight: 600
}

    nav a:hover {
        color: var(--white)
    }

.cta {
    background: linear-gradient(90deg,var(--logo-orange-1),var(--logo-orange-2));
    padding: 10px 14px;
    border-radius: 10px;
    color: #071018;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 6px 24px var(--accent-glow);
}

/* LAYOUT */
.hero {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 26px;
    align-items: start;
}

/* HERO LEFT */
.panel {
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
    border-radius: var(--radius);
    padding: 22px;
    border: 1px solid rgba(255,255,255,0.03);
    box-shadow: 0 8px 40px rgba(2,6,23,0.6);
}

.eyebrow {
    color: var(--logo-orange-1);
    font-weight: 700;
    font-size: 0.85rem
}

h1 {
    margin: 8px 0 10px 0;
    font-size: 2.05rem;
    line-height: 1.02
}

.lead {
    color: var(--muted);
    margin-bottom: 18px
}

.metrics {
    display: flex;
    gap: 12px
}

.metric {
    flex: 1;
    padding: 12px;
    border-radius: 10px;
    background: rgba(255,255,255,0.01);
    border: 1px solid rgba(255,255,255,0.02)
}

    .metric h3 {
        margin: 0;
        font-size: 1.15rem
    }

    .metric p {
        margin: 6px 0 0 0;
        color: var(--muted);
        font-size: 0.86rem
    }

.actions {
    display: flex;
    gap: 12px;
    margin-top: 16px
}

.btn {
    padding: 11px 14px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.04);
    background: transparent;
    color: var(--logo-orange-2);
    font-weight: 700;
    cursor: pointer
}

    .btn.primary {
        background: linear-gradient(90deg,var(--logo-orange-1),var(--logo-orange-2));
        color: #071018;
        border: none;
        box-shadow: 0 8px 36px rgba(255,122,0,0.14)
    }

/* RIGHT COLUMN */
.aside {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.mini-panel {
    padding: 12px;
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(255,255,255,0.015), transparent);
    border: 1px solid rgba(255,255,255,0.03)
}

.balance {
    display: flex;
    justify-content: space-between;
    align-items: center
}

    .balance .amount {
        font-weight: 800;
        font-size: 1.3rem
    }

.gain {
    color: var(--logo-orange-1);
    font-weight: 800
}

/* TICKER */
.ticker {
    overflow: hidden;
    border-radius: 10px;
    padding: 8px 12px;
    background: #070809;
    border: 1px solid rgba(255,255,255,0.02);
    display: flex;
    gap: 22px;
    align-items: center
}

.ticker-item {
    display: flex;
    gap: 8px;
    align-items: center;
    color: var(--muted);
    font-weight: 600
}

.price-up {
    color: #7ef6a4
}

.price-down {
    color: #ff8a7a
}

.chart-card {
    height: 220px;
    padding: 12px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: linear-gradient(180deg, rgba(255,255,255,0.015), rgba(255,255,255,0.01));
    border: 1px solid rgba(255,255,255,0.03)
}

.chart-legend {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.sparkline {
    flex: 1
}

/* SECTIONS */
section {
    margin-top: 28px
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 16px;
    margin-top: 12px
}

.service {
    padding: 18px;
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(255,255,255,0.01), transparent);
    border: 1px solid rgba(255,255,255,0.02)
}

    .service h4 {
        margin: 0 0 8px 0
    }

    .service p {
        margin: 0;
        color: var(--muted)
    }

footer {
    margin-top: 26px;
    color: var(--muted);
    text-align: center;
    padding: 12px
}

/* MODAL */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(2,6,23,0.6);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 1200
}

.modal {
    width: 100%;
    max-width: 520px;
    background: var(--panel);
    padding: 18px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.03)
}

/* TICKER ANIMATION */
.ticker-track {
    display: flex;
    gap: 36px;
    animation: scroll-left 18s linear infinite
}

@keyframes scroll-left {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

/* RESPONSIVE */
@media (max-width:1000px) {
    .hero {
        grid-template-columns: 1fr
    }

    .grid-3 {
        grid-template-columns: repeat(2,1fr)
    }

    .aside {
        order: -1
    }
}

@media (max-width:640px) {
    header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px
    }

    nav {
        display: flex;
        flex-wrap: wrap;
        gap: 10px
    }

    .grid-3 {
        grid-template-columns: 1fr
    }
}

.muted {
    color: var(--muted)
}

.small {
    font-size: 0.85rem
}

}
/* ===========================================
   RESPONSIVE DESIGN (NO HTML CHANGE NEEDED)
   =========================================== */

/* ---------- TABLET (max-width: 992px) ---------- */
@media (max-width: 992px) {

    body {
        padding: 16px;
    }

    .hero {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .aside {
        order: -1; /* dashboard cards move on top in mobile/tablet */
    }

    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    header nav {
        gap: 12px;
        flex-wrap: wrap;
    }
}

/* ---------- MOBILE (max-width: 768px) ---------- */
@media (max-width: 768px) {

    header {
        flex-direction: column;
        text-align: center;
    }

        header nav {
            justify-content: center;
            flex-wrap: wrap;
        }

    .hero {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 1.6rem;
    }

    .metrics {
        flex-direction: column;
    }

    .actions {
        flex-direction: column;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }

    #about {
        grid-template-columns: 1fr !important;
    }
}

/* ---------- SMALL MOBILE (max-width: 480px) ---------- */
@media (max-width: 480px) {

    .panel,
    .mini-panel {
        padding: 14px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .brand {
        flex-direction: column;
    }

    footer {
        font-size: 0.85rem;
    }
}
/* ====================================================
   GLOBAL RESET + RESPONSIVE BASE
   ==================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden;
    font-family: Arial, sans-serif;
}

img {
    max-width: 100%;
    height: auto;
}

/* ====================================================
   LAYOUT RESPONSIVE WRAPPERS
   ==================================================== */
.container,
.wrapper,
.section,
.page,
.content {
    width: 100%;
    padding: 10px;
}

/* ====================================================
   RESPONSIVE GRID FIX
   ==================================================== */
.row, .grid {
    display: flex;
    flex-wrap: wrap;
}

.col, .column, [class*="col-"] {
    flex: 1 1 100%;
    margin-bottom: 15px;
}

/* ====================================================
   BUTTONS
   ==================================================== */
.btn {
    padding: 12px 18px;
    border: none;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    width: auto;
}

    .btn.full {
        width: 100%;
    }

/* ====================================================
   SIDEBAR (Desktop + Mobile Support)
   ==================================================== */
.sidebar {
    width: 260px;
    min-height: 100vh;
    background: #111;
    color: #fff;
    position: fixed;
    left: 0;
    top: 0;
    padding: 20px;
    transition: all 0.3s ease;
}

.content-area {
    margin-left: 260px;
    padding: 20px;
    transition: all 0.3s ease;
}

/* ====================================================
   MOBILE BREAKPOINTS
   ==================================================== */

/* ---------------------- MOBILE ---------------------- */
@media (max-width: 480px) {

    /* Headings */
    h1, h2, h3 {
        font-size: 1.4rem;
        text-align: center;
    }

    p {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    /* Make buttons full-width */
    .btn {
        width: 100%;
        font-size: 1rem;
    }

    /* STACK columns */
    .col, .column, [class*="col-"] {
        flex: 1 1 100%;
    }

    /* SIDEBAR collapses */
    .sidebar {
        width: 0;
        padding: 0;
        opacity: 0;
        visibility: hidden;
    }

    .content-area {
        margin-left: 0;
    }

    /* Add mobile top spacing */
    .content-area {
        padding-top: 20px;
    }
}

/* ---------------------- TABLET ---------------------- */
@media (max-width: 768px) {

    .col, .column {
        flex: 1 1 100%;
    }

    .btn {
        padding: 10px 16px;
    }

    .sidebar {
        width: 180px;
    }

    .content-area {
        margin-left: 180px;
    }
}

/* ---------------------- SMALL LAPTOP ---------------------- */
@media (max-width: 1024px) {

    .sidebar {
        width: 200px;
    }

    .content-area {
        margin-left: 200px;
    }
}
/* =========================================================
   ASIDE (Dashboard Preview) – Responsive Fix
   ========================================================= */

/* Desktop default — no change needed */
.aside {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ===== Tablet & Small Laptop ===== */
@media (max-width: 992px) {
    .aside {
        order: -1; /* moves aside above hero */
        width: 100%;
    }

    .mini-panel,
    .chart-card {
        width: 100%;
    }
}

/* ===== Mobile (portrait) ===== */
@media (max-width: 768px) {

    .aside {
        width: 100%;
        margin-top: 10px;
    }

    .chart-card {
        height: auto; /* auto height for small screens */
        padding: 14px;
    }

    .balance {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .sparkline {
        height: 50px;
    }

    .ticker {
        flex-direction: row;
        overflow: hidden;
    }

    .ticker-item {
        font-size: 0.85rem;
    }
}

/* ===== Small Mobile (480px and below) ===== */
@media (max-width: 480px) {

    .chart-card,
    .mini-panel {
        padding: 12px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .ticker {
        padding: 6px;
        gap: 10px;
    }

    .ticker-track {
        gap: 20px;
    }
}
/* =========================================================
   HERO SECTION – RESPONSIVE FIXES
   ========================================================= */

/* Base hero (desktop, no change) */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

    .hero .panel {
        max-width: 620px;
    }

/* ================= TABLET (992px and below) ================= */
@media (max-width: 992px) {

    .hero {
        padding: 50px 20px;
    }

        .hero h1 {
            font-size: 2rem; /* reduce large heading */
            line-height: 1.25;
        }

    .metrics {
        gap: 20px;
    }
}

/* ================= MOBILE (768px and below) ================= */
@media (max-width: 768px) {

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }

        .hero .panel {
            width: 100%;
        }

    .lead {
        font-size: 1rem;
        margin-top: 8px;
    }

    .metrics {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 14px;
        margin-top: 18px;
        width: 100%;
    }

    .metric h3 {
        font-size: 1.25rem;
    }

    .actions {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 25px;
        width: 100%;
    }

        .actions .btn {
            width: 100%; /* full width buttons */
        }
}

/* =============== SMALL MOBILE (480px and below) =============== */
@media (max-width: 480px) {

    .hero h1 {
        font-size: 1.6rem;
    }

    .metric h3 {
        font-size: 1.1rem;
    }

    .small.muted {
        font-size: 0.8rem;
    }

    .panel {
        padding: 0 5px;
    }
}
/* ============================================
   RESPONSIVE NAV MENU (SAFE FOR EXISTING THEME)
   ============================================ */

/* MOBILE MENU BUTTON */
.menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1000;
}

    .menu-btn span {
        width: 26px;
        height: 3px;
        background: var(--white);
        border-radius: 3px;
        transition: 0.3s;
    }

/* NAV DESKTOP */
#mainNav {
    display: flex;
    gap: 20px;
    align-items: center;
}

/* ========== MOBILE VIEW ========== */
@media (max-width: 768px) {

    /* Show hamburger */
    .menu-btn {
        display: flex;
    }

    /* Convert nav into dropdown */
    #mainNav {
        display: none;
        flex-direction: column;
        width: 100%;
        background: var(--panel);
        padding: 15px;
        border-radius: 10px;
        margin-top: 10px;
        animation: fadeIn 0.25s ease;
    }

        #mainNav.open {
            display: flex;
        }

        #mainNav a {
            padding: 10px 0;
            width: 100%;
            text-align: center;
            border-bottom: 1px solid rgba(255,255,255,0.06);
        }

            #mainNav a:last-child {
                border-bottom: none;
            }
}

/* HAMBURGER ANIMATION */
.menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}

.menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
}

/* Fade animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}
/* --- MENU BUTTON --- */
.menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1000;
}

    .menu-btn span {
        width: 26px;
        height: 3px;
        background: var(--white);
        border-radius: 3px;
        transition: 0.3s;
    }

/* Desktop nav */
#mainNav {
    display: flex;
    gap: 20px;
    align-items: center;
}

/* --- MOBILE MODE --- */
@media (max-width: 768px) {

    .menu-btn {
        display: flex;
    }

    /* hide menu */
    #mainNav {
        display: none;
        flex-direction: column;
        width: 100%;
        background: var(--panel);
        padding: 15px;
        border-radius: 10px;
        margin-top: 10px;
    }

        /* show menu when opened */
        #mainNav.open {
            display: flex;
        }

        #mainNav a {
            padding: 12px 0;
            text-align: center;
            width: 100%;
            border-bottom: 1px solid rgba(255,255,255,0.06);
        }
}

/* Button animation */
.menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}

.menu-btn.active span:nth-child(2) {
    opacity: 0;
}
/* ===== DESKTOP ONLY PADDING FIX ===== */
@media (min-width: 1025px) {
    .panel {
        padding: 40px; /* change value as you want */
    }

    .hero {
        padding-top: 20px; /* optional */
        padding-bottom: 20px;
    }

    .metrics .metric {
        padding: 18px; /* optional */
    }
}

.menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
}

.demo-wrapper {
    padding: 30px;
    background: #060607;
    color: #fff;
    font-family: Arial, sans-serif;
}

    /* Demo Form Box Specific */
    .demo-wrapper .container {
        max-width: 480px;
        margin: auto;
        background: #0f1113;
        padding: 25px;
        border-radius: 12px;
        border: 1px solid rgba(255,255,255,0.1);
        box-shadow: 0 0 25px rgba(0,0,0,0.6);
    }

    .demo-wrapper h2 {
        margin-top: 0;
        color: #ff7a00;
    }

    /* Inputs */
    .demo-wrapper input,
    .demo-wrapper textarea {
        width: 100%;
        padding: 12px;
        margin-top: 10px;
        border-radius: 8px;
        border: 1px solid rgba(255,255,255,0.2);
        background: #0b0c0d;
        color: #fff;
        font-size: 15px;
    }

    /* Button */
    .demo-wrapper button {
        width: 100%;
        background: linear-gradient(90deg,#ff7a00,#ffb347);
        padding: 12px;
        border: none;
        margin-top: 14px;
        border-radius: 8px;
        color: #000;
        font-weight: bold;
        font-size: 16px;
        cursor: pointer;
        box-shadow: 0 6px 22px rgba(255,122,0,0.2);
    }

    /* Success box */
    .demo-wrapper .success-box {
        display: none;
        background: #072a0f;
        border-left: 4px solid #00e676;
        padding: 12px;
        margin-top: 15px;
        border-radius: 8px;
        color: #B6FFCE;
    }

/* dropdoun css-sneha*/
/* ======================
   DROPDOWN THEME
   ====================== */

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-btn {
    background: var(--panel);
    color: var(--white);
    padding: 10px 16px;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.08);
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.35);
    transition: 0.2s;
}

    .dropdown-btn:hover {
        background: rgba(255,255,255,0.05);
    }

/* MENU BOX */
.dropdown-menu {
    position: absolute;
    top: 46px;
    right: 0;
    background: var(--panel);
    border-radius: var(--radius);
    min-width: 180px;
    padding: 8px 0;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 10px 30px rgba(0,0,0,0.55);
    display: none;
    overflow: hidden;
    animation: fadeIn 0.2s ease-out;
}

    .dropdown-menu a {
        display: block;
        padding: 12px 16px;
        color: var(--muted);
        text-decoration: none;
        font-weight: 600;
        font-size: 0.95rem;
        transition: 0.15s;
    }

        .dropdown-menu a:hover {
            background: rgba(255,255,255,0.06);
            color: var(--white);
        }

/* SHOW MENU */
.dropdown.show .dropdown-menu {
    display: block;
}

/* SMOOTH FADE */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/*new css -sneha */
/* HERO MAIN WRAPPER */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    /* CHANGE HERO HEIGHT HERE */
    min-height: 650px; /* Increase or decrease section height */
    padding: 60px 40px; /* Space around whole section */
}

/* LEFT PANEL SECTION */
.panel {
    flex: 1;
    /* CHANGE PANEL WIDTH */
    max-width: 600px; /* Change width of left content section */
    padding: 30px 20px; /* Inner padding */
    /* OPTIONAL BACKGROUND */
    /* background: rgba(255,255,255,0.05); */
}

    /* TITLE SIZE */
    .panel h1 {
        font-size: 44px; /* Change heading size */
        line-height: 1.2;
        margin-bottom: 18px;
    }

    /* DESCRIPTION SIZE */
    .panel .lead {
        font-size: 18px; /* Change paragraph size */
        margin-bottom: 24px;
    }

/* METRICS BOXES */
.metrics {
    display: flex;
    gap: 22px;
    margin: 25px 0;
}

.metric h3 {
    font-size: 26px; /* Number size */
}

.metric p {
    font-size: 14px; /* Label size */
}

/* ACTION BUTTON SECTION */
.actions {
    display: flex;
    gap: 14px;
    margin-top: 25px;
}

/* BUTTON SIZE */
.btn {
    padding: 12px 22px; /* Change button height & width */
    font-size: 16px;
}

/* RIGHT SIDE ASIDE */
.aside {
    flex: 1;
    /* CHANGE RIGHT SIDE WIDTH */
    max-width: 460px; /* Increase or reduce dashboard preview box */
    /* CHANGE HEIGHT */
    min-height: 420px; /* Adjust as needed */

    display: flex;
    align-items: center;
    justify-content: center;
}

/* SMALL CARD INSIDE ASIDE */
.mini-panel {
    width: 100%;
    padding: 24px;
    border-radius: 12px;
    /*close*/
}
