/* ===============================
   RESET + FONT
================================= */
body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "San Francisco", "Segoe UI", sans-serif;
    background: #fff;
    color: #1d1d1f;
}
html {
    scroll-behavior: smooth;
}
/* GLOBAL RESET */
/**,
*::before,
*::after {
    box-sizing: border-box;
}*/

/*html, body {
    overflow-x: hidden;
    width: 100%;
}
section {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}*/
/* ===============================
   HEADER
================================= */
.apple-header {
    position: sticky;
    top: 0;
    background: #000; /* DARK GLASS */
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    z-index: 1000;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 60px;
}

.logo {
    font-size: 20px;
}
.logo img {
    width: 150px;
    max-width: 100%;
}

/* DESKTOP MENU */
.nav-menu {
    display: flex;
    gap: 18px;
}

.nav-menu a {
    text-decoration: none;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.2px;
    transition: opacity 0.3s ease;
}

.nav-menu a:hover {
    opacity: 0.7;
}
@media (max-width: 768px) {

    .nav-container {
        padding: 12px 20px;
    }

    .nav-menu {
        display: none;
    }

    .menu-toggle {
        display: block;
        color: #fff;
    }

    .download-btn {
        padding: 6px 14px;
        font-size: 13px;
        background: #00ef4d;
    }

    .logo img {
        width: 120px;
    }
}
/* MOBILE MENU */
.menu-toggle {
    display: none;
    font-size: 22px;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background: #111; /* DARK FIX */
}

.mobile-menu a {
    padding: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    text-decoration: none;
    color: #fff;
}
.apple-header {
    backdrop-filter: blur(16px);
}
/* ACTIVE MOBILE */
.mobile-menu.active {
    display: flex;
}
/* DEFAULT */
.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 10px 20px;
    border-radius: 999px;

    font-size: 14px;
    font-weight: 500;
    text-decoration: none;

    /* LIGHT BASE */
    background: linear-gradient(120deg, #f9fafb, #e5e7eb);
    color: #111827;

    border: 1px solid rgba(0,0,0,0.08);

    box-shadow: 0 6px 18px rgba(0,0,0,0.25);

    transition: all 0.35s ease;
}

/* 🔥 HOVER → GRADIENT */
.download-btn:hover {
    transform: translateY(-2px) scale(1.02);

    background: linear-gradient(
        120deg,
        #4b5563,
        #374151,
        #1f2937
    );

    color: #ffffff;

    box-shadow:
        0 12px 30px rgba(0,0,0,0.35);
}
/* ===============================
   HERO SECTION
================================= */
/* HERO SECTION */
.hero-section {
    padding: 100px 0px 0px 0px;
    background: #f9fafb;
    text-align: center;
}

/* CONTAINER */
.hero-container {
    max-width: 900px;
    margin: auto;
}

/* TAG */
.hero-tag {
    display: inline-block;
    padding: 8px 18px;
    border: 1px solid #a7f3d0;
    border-radius: 25px;
    font-size: 13px;
    color: #16c784;
    margin-bottom: 25px;
}

/* TITLE */
.hero-section h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    color: #222;
    margin-bottom: 20px;
}

/* TEXT */
.hero-section p {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 40px;
}

/* BUTTON WRAPPER */
/* CONTAINER */
/* CONTAINER */
.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

/* BADGE IMAGE */
.store-badge {
    height: 55px; /* adjust if needed */
    width: auto;
    display: block;

    transition: all 0.25s ease;
}

/* HOVER EFFECT */
.store-badge:hover {
    transform: scale(1.06);
    filter: brightness(1.1);
}

/* BADGE BUTTON */
.btn {
    display: flex;
    align-items: center;
    gap: 12px;
      text-align: center;
    background: #000;
    color: #fff;

    padding: 14px 24px;
    border-radius: 12px;

    text-decoration: none;

    border: 1px solid rgba(255,255,255,0.2);

    transition: all 0.25s ease;
}

/* ICON */
.btn svg {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
}

/* TEXT WRAPPER */
.btn-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

/* SMALL TEXT */
.btn-text small {
    font-size: 11px;
    opacity: 0.8;
}

/* BIG TEXT */
.btn-text strong {
    font-size: 16px;
    font-weight: 600;
}

/* HOVER */
.btn:hover {
    transform: scale(1.04);
    border-color: #fff;
}
/* BASE LINK */
.link {
    position: relative;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;

    color: #0f172a; /* deep neutral (better than pure black) */

    transition: all 0.3s ease;
}

/* 🔥 GRADIENT UNDERLINE */
.link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;

    background: linear-gradient(
        90deg,
        #00d94f,
        #00b843,
        #009e38
    );

    border-radius: 2px;
    transition: width 0.3s ease;
}

/* 🔥 HOVER EFFECT */
.link:hover {
    color: #000;
}

.link:hover::after {
    width: 100%;
}
.link:hover {
    background: linear-gradient(
        90deg,
        #00d94f,
        #00b843,
        #009e38
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* 📱 MOBILE */
@media (max-width: 768px) {
    .hero-section {
        padding: 70px 20px;
    }

    .hero-section h1 {
        font-size: 32px;
    }

    .hero-section p {
        font-size: 16px;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #1c1c1c, #2b2b2b);
    padding: 80px 20px;
    color: #fff;
}

/* 🔥 THIS FIXES YOUR ISSUE */
.stats-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

/* Each box */
.stat-box {
    flex: 1;
    text-align: center;

    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.stat-box.show {
    opacity: 1;
    transform: translateY(0);
}

.stat-box h2 {
    font-size: 60px;
    font-weight: bold;
    color: #00d26a;
}

.stat-box p {
    margin-top: 10px;
    color: #cfcfcf;
    font-size: 16px;
}

/* 📱 MOBILE FIX */
@media (max-width: 768px) {
    .stats-container {
        flex-direction: column;
    }

    .stat-box {
        width: 100%;
    }

    .stat-box h2 {
        font-size: 40px;
    }
}
/* ===============================
   APPLE CAROUSEL (MAIN)
================================= */
.apple-carousel {
    position: relative;
    background: #fff;
    padding: 40px 0;
    overflow: hidden;
}

/* SCROLL CONTAINER */
.carousel {
    display: flex;
    gap: 40px;

    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;

    padding-left: 20vw;
    padding-right: 20vw;
}

.carousel::-webkit-scrollbar {
    display: none;
}

/* ITEM */
.carousel-item {
    flex: 0 0 auto;
    scroll-snap-align: center;
}

/* CARD */
.card {
    width: 60vw;
    max-width: 900px;
    min-width: 320px;

    height: 400px;

    /*background: #f5f5f7;*/
    border-radius: 40px;

    padding: 50px;
    text-align: center;

    display: flex;
    flex-direction: column;
    justify-content: center;

    transition: transform 0.3s ease;
}

.card:hover {
    transform: scale(1.02);
}

/* TEXT */
.card h2 {
    font-size: 48px;
    margin-bottom: 10px;
}

.card p {
    font-size: 18px;
    color: #555;
}

/* IMAGE */
.card img {
   width: 60vw;
    max-width: 880px;
   
    height: 450px;

    /*background: #f5f5f7;*/
    border-radius: 80px;

    padding: 30px 20px;
    text-align: center;

    display: flex;
    flex-direction: column;
    justify-content: center;

    transition: transform 0.3s ease;
}

/* NAV BUTTON */
.nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;

    background: rgba(255,255,255,0.85);
    font-size: 22px;
    cursor: pointer;
    z-index: 10;
}

.prev {
    left: 40px;
}

.next {
    right: 40px;
}
/* SECTION */
.apps-section {
    padding: 60px 40px;
    background: #f9fafb;
}

/* TABS */
.tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    overflow-x: auto;
}

.tabs::-webkit-scrollbar {
    display: none;
}

.tab {
    padding: 8px 16px;
    border-radius: 20px;
    border: none;
    background: #eee;
    cursor: pointer;
    font-size: 14px;
}

.tab.active {
    background: #000;
    color: #fff;
}

/* TITLE */
.section-title {
    font-size: 32px;
    margin-bottom: 30px;
}

.section-title span {
    font-weight: 600;
}

/* SLIDER */
/* SECTION */
.feature-slider {
    padding: 80px 20px;
    background: #f9fafb;
}

/* LAYOUT */
.slider-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 50px;
}

/* IMAGE */
.slider-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
}

/* CONTENT */
.slider-content {
    flex: 1;
}

.tag {
    color: #16c784;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 10px;
    display: block;
}

.slider-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.slider-content p {
    color: #666;
    margin-bottom: 20px;
}

/* LIST */
.slider-content ul {
    list-style: none;
    padding: 0;
}

.slider-content li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.slider-content li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #16c784;
}

/* CONTROLS */
.controls {
    margin-top: 20px;
}

.controls button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;
    margin-right: 10px;
    cursor: pointer;
}

/* DOTS */
.dots {
    margin-top: 20px;
}

.dots span {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    margin-right: 8px;
    cursor: pointer;
}

.dots .active {
    background: #16c784;
    width: 20px;
    border-radius: 10px;
}

/* 📱 RESPONSIVE */
@media (max-width: 768px) {
    .slider-container {
        flex-direction: column;
        text-align: center;
    }

    .slider-content h2 {
        font-size: 26px;
    }

    .slider-image img {
        max-width: 100%;
    }
}

/* CARD */
.apps-slider {
    display: flex;
    gap: 24px;
    overflow-x: auto;

    /* 🔥 MAGIC FIX */
    padding-left: calc(25% - 200px); /* adjust based on card width */
    padding-right: calc(25% - 200px);

    scroll-snap-type: x mandatory;
}
.app-card {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.app-card.active {
    transform: scale(1);
    opacity: 1;
}

.app-card {
    transform: scale(0.9);
    opacity: 0.5;
}

.app-card {
    flex: 0 0 280px;
    min-height: 420px;
    border-radius: 20px;
    padding: 25px;
    background: #000000;
    color: #ffffff;
    /*background: #f4f4f4;*/
    scroll-snap-align: start;
    transition: 0.3s ease;
}

.app-card:hover {
    transform: translateY(-5px);
}
/* WRAPPER REQUIRED */
.apps-slider-wrapper {
    position: relative;
}

/* BUTTON BASE */
.apps-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;

    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;

    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 20px;

    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;

    backdrop-filter: blur(6px);
    transition: all 0.3s ease;
}

/* LEFT BUTTON */
.apps-prev {
    left: 10px;
}

/* RIGHT BUTTON */
.apps-next {
    right: 10px;
}

/* HOVER */
.apps-btn:hover {
    background: rgba(0, 0, 0, 0.85);
}

/* ACTIVE (CLICK FEEDBACK) */
.apps-btn:active {
    transform: translateY(-50%) scale(0.95);
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {
    .apps-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .apps-prev {
        left: 6px;
    }

    .apps-next {
        right: 6px;
    }
}


/* CONTENT */
.card-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* ICON */
.icon-box {
    width: 60px;
    height: 60px;
    background: #f7edff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
}

/* TEXT */
.app-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.desc {
    font-size: 14px;
    color: #fff;
    line-height: 1.6;
}

/* LIST */
.features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features li {
    font-size: 14px;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #16c784;
    font-weight: bold;
}

/* MOBILE SMOOTH */
.apps-slider::-webkit-scrollbar {
    display: none;
}
/* NAV */
.nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: #e5e5ea;
    cursor: pointer;
}

.prev { left: -20px; }
.next { right: -20px; }

/* MOBILE */
@media (max-width: 768px) {

    .apps-section {
        padding: 40px 20px;
    }

    .section-title {
        font-size: 24px;
    }

    .app-card {
        flex: 0 0 200px;
        height: 340px;
    }
}
/* ===============================
   MOBILE RESPONSIVE
================================= */
@media (max-width: 768px) {

    /* HEADER */
    .nav-menu {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    /* HERO */
    .hero-container {
        flex-direction: column;
    }

    .hero-left h1 {
        font-size: 34px;
    }

    .hero-left h2 {
        font-size: 20px;
    }

    .hero-right {
        margin-top: 15px;
    }

    /* ===== FIXED APPLE SLIDER MOBILE ===== */

    .carousel {
        gap: 16px;

        /* 🔥 VERY IMPORTANT */
        padding-left: 5vw;
        padding-right: 5vw;
    }

    .card {
        width: auto;   /* 👈 main fix */
        max-width: none;

        border-radius: 28px;
        padding: 1px;
        /*height: auto;*/
    }

    .card h2 {
        font-size: 26px;
    }

    .card p {
        font-size: 15px;
    }

    .card img {
        width: 380px;
        margin-top: 10px;
    }

    /* NAV BUTTON */
    .nav {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }
}

/* ===== FINAL APPLE MOBILE FIX ===== */

/* ===============================
   APPLE CAROUSEL BASE
================================= */

.apps-slider {
    display: flex;
    gap: 24px;

    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;

    /* ✅ Apple trick */
    scroll-padding-left: 20vw;
    scroll-padding-right: 20vw;

    -webkit-overflow-scrolling: touch;
}

.apps-slider::-webkit-scrollbar {
    display: none;
}
.apps-slider {
    scroll-snap-type: x mandatory;
    scroll-padding: 50%;
}

.app-card {
    scroll-snap-align: center;
}
/* ===============================
   DESKTOP CARDS
================================= */

.app-card {
    flex: 0 0 auto;

    width: 340px;     /* ✅ FIXED desktop width */
    height: 520px;

    border-radius: 28px;
    overflow: hidden;
    position: relative;

    scroll-snap-align: center;

    transform: scale(0.9);
    opacity: 0.6;

    transition: all 0.35s ease;
}

/* ACTIVE */
.app-card.active {
    transform: scale(1);
    opacity: 1;
}

/* SIDE */
.app-card.side {
    transform: scale(0.95);
    opacity: 0.8;
}

/* IMAGE */
.app-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===============================
   MOBILE FIX (IMPORTANT)
================================= */

@media (max-width: 768px) {

    .apps-slider {
        gap: 14px;

        /* ✅ MOBILE APPLE BEHAVIOR */
        scroll-padding-left: 10vw;
        scroll-padding-right: 10vw;
    }

    .app-card {
        width: 48vw;      /* ✅ dynamic width */
        height: 400px;
    }
}
.trading-style {
    padding: 80px 20px;
    background: #f9fafb;
    text-align: center;
}

/* HEADING */
.heading .tag {
    color: #16c784;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
}

.heading h2 {
    font-size: 42px;
    font-weight: 700;
    margin: 15px 0;
    color: #222;
}

.heading p {
    color: #666;
    max-width: 600px;
    margin: auto;
    line-height: 1.6;
}

/* CARD WRAPPER */
.card-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

/* CARD */
.trade-card {
    background: #000;
    color: #fff;
    padding: 35px 25px;
    border-radius: 20px;
    width: 300px;
    text-align: center;
    transition: 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* HOVER EFFECT */
.trade-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
b{
    font-size: 24px;
    font-weight: 700;
}
/* ICON */
.icon {
    width: 60px;
    height: 60px;
    margin: auto;
    margin-bottom: 15px;
    background: #f7edff;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

/* TEXT */
.trade-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #fff;
}

.highlight {
    display: block;
    color: #16c784;
    font-weight: 600;
    margin-bottom: 10px;
}
.highlighter {
    color: #00f04e;
    font-weight: 600;
}
.trade-card p {
    font-size: 14px;
    color: #f9f9f9;
    line-height: 1.6;
}

/* 📱 MOBILE */
@media (max-width: 768px) {
    .heading h2 {
        font-size: 30px;
    }

    .trade-card {
        width: 100%;
        max-width: 350px;
    }
}
/* SECTION */
.cta-section {
    background: #f9fafb;
    padding: 10px 20px 50px;
    text-align: center;
    color: #fff;
}

/* CONTAINER */
.cta-container {
    max-width: 800px;
    margin: auto;
}

/* TITLE */
.cta-section h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* TEXT */
.cta-section p {
    font-size: 18px;
    color: #cfcfcf;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* BUTTON WRAPPER */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* BUTTON */
/*.btn {
    background: #00f04e;
    color: #fff;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
*/
/* HOVER */
/*.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(22,199,132,0.4);
}
*/
/* OPTIONAL DIFFERENT STYLE */
/*.playstore {
    background: #1db954;
}*/

/* 📱 MOBILE */
@media (max-width: 768px) {
    .cta-section {
        padding: 10px 20px 20px;
    }

    .cta-section h2 {
        font-size: 28px;
    }

    .cta-section p {
        font-size: 16px;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}
/* FOOTER */
/* FOOTER */
.footer {
    background: #000;
    padding: 70px 20px 30px;
    color: #fff;
}

/* CONTAINER */
.footer-container {
    max-width: 1100px;
    margin: auto;
}

/* GRID (STRICT 3 COLUMN) */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

/* COLUMN */
.footer-col h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 18px;
    letter-spacing: 0.3px;

    /* subtle gradient accent */
    background: linear-gradient(90deg, #01ed50, #00c843);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* LINKS */
.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    text-decoration: none;
    color: rgba(255,255,255,0.75);
    font-size: 14px;
    transition: all 0.25s ease;
}

/* HOVER EFFECT */
.footer-col ul li a:hover {
    color: #01ed50;
    transform: translateX(4px);
}

/* DIVIDER */
.footer-divider {
    height: 1px;
    background: rgba(255,255,255,0.08);
    margin: 45px 0 20px;
}

/* BOTTOM */
.footer-bottom {
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

/* 📱 TABLET */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* 📱 MOBILE */
@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer {
        text-align: center;
    }

    .footer-col ul li a:hover {
        transform: none; /* avoid shift on mobile */
    }
}

.gradient-text {
    background: linear-gradient(
        90deg,
        #00f04e,
        #00c843,
        #00a93a
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    font-weight: 600;
    letter-spacing: -0.4px;

    text-shadow: 0 1px 1px rgba(0,0,0,0.1);
}