/* ═══════════════════════════════════════════
           DESIGN SYSTEM – SOCIAL VISTA 2.0
        ═══════════════════════════════════════════ */
:root {
    --primary: #6c63ff;
    --primary-rgb: 108, 99, 255;
    --secondary: #00d4ff;
    --secondary-rgb: 0, 212, 255;
    --accent: #ff6b6b;
    --accent-rgb: 255, 107, 107;
    --gold: #f59e0b;
    --emerald: #10b981;
    --dark: #06080f;
    --dark2: #0b0f1a;
    --dark3: #111827;
    --card: rgba(15, 20, 40, 0.75);
    --card-solid: #0f1428;
    --border: rgba(108, 99, 255, 0.18);
    --border-light: rgba(255, 255, 255, 0.06);
    --text: #e8edf5;
    --muted: #8896b0;
    --font: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    --font2: "Space Grotesk", sans-serif;
    --glow-primary: 0 0 30px rgba(var(--primary-rgb), 0.4);
    --glow-secondary: 0 0 30px rgba(var(--secondary-rgb), 0.3);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}

body {
    background: var(--dark);
    color: var(--text);
    font-family: var(--font);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ── Scrollbar ── */
::-webkit-scrollbar {
    width: 5px;
}
::-webkit-scrollbar-track {
    background: var(--dark2);
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    border-radius: 10px;
}

/* ── Utility ── */
.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(var(--primary-rgb), 0.08);
    border: 1px solid rgba(var(--primary-rgb), 0.2);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 30px;
    margin-bottom: 16px;
}
.section-title {
    font-family: var(--font2);
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}
.section-sub {
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.8;
    max-width: 560px;
}

/* ═══════════════════════════════════
           NAVBAR
        ═══════════════════════════════════ */
.navbar-sv {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 16px 0;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}
.navbar-sv.scrolled {
    background: rgba(6, 8, 15, 0.88);
    backdrop-filter: blur(24px) saturate(1.4);
    -webkit-backdrop-filter: blur(24px) saturate(1.4);
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
}
.nav-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.nav-logo img {
    height: 100px;
}
.nav-logo-text {
    font-family: var(--font2);
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Nav links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}
.nav-links a {
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 500;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
}
.nav-links a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
}
.nav-links a.active {
    color: #fff;
}

/* Nav actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}
.btn-nav-login {
    padding: 9px 22px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: transparent;
    color: var(--text);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}
.btn-nav-login:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(var(--primary-rgb), 0.06);
}
.btn-nav-signup {
    padding: 9px 24px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--primary), #8b5cf6);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(var(--primary-rgb), 0.35);
}
.btn-nav-signup:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(var(--primary-rgb), 0.55);
    color: white;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    z-index: 10000;
}
.hamburger span {
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}
.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open span:nth-child(2) {
    opacity: 0;
}
.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ── Live Ticker ── */
.ticker-bar {
    background: linear-gradient(180deg, var(--dark2) 0%, var(--dark) 100%);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    overflow: hidden;
    padding: 10px 0;
    
}
.ticker-track {
    display: flex;
    width: max-content;
    animation: tickerScroll 80s linear infinite;
}
.ticker-bar:hover .ticker-track {
    animation-play-state: paused;
}
@keyframes tickerScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 30px;
    white-space: nowrap;
    font-size: 0.8rem;
    font-weight: 600;
    border-right: 1px solid var(--border-light);
}
.ticker-item .t-name {
    color: var(--muted);
}
.ticker-item .t-price {
    color: var(--text);
}
.ticker-item .t-up {
    color: var(--emerald);
}
.ticker-item .t-down {
    color: var(--accent);
}



/* ═══════════════════════════════════
           FOOTER
        ═══════════════════════════════════ */
.footer {
    background: var(--dark2);
    /* border-top: 1px solid var(--border-light);
    padding: 60px 0 0; */
    margin-top: 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border-light);
}
.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.05) 0%, transparent 70%);
    pointer-events: none;
}
.footer-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 1;
}

.footer-social {
    display: flex;
    gap: 10px;
}
.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    text-decoration: none;
    font-size: 0.88rem;
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--glow-primary);
}
.footer-col h6 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 18px;
    font-size: 0.88rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding: 24px 0;
    /* border-top: 1px solid var(--border-light); */
    font-size: 0.84rem;
    color: var(--muted);
}

/* ── Mobile Nav ── */
.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(6, 8, 15, 0.96);
    z-index: 9998;
    backdrop-filter: blur(20px);
    padding: 110px 40px 40px;
    flex-direction: column;
    gap: 6px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-overlay.open {
    display: flex;
    transform: translateX(0);
}
.mobile-overlay a {
    color: var(--text);
    font-size: 1.2rem;
    text-decoration: none;
    font-weight: 600;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition);
}
.mobile-overlay a:hover {
    color: var(--secondary);
    padding-left: 10px;
}
.mobile-overlay .btn-nav-signup {
    text-align: center;
    margin-top: 16px;
    display: block;
    padding: 14px;
    font-size: 1rem;
}

/* ── Scroll to top ── */
.scroll-top-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9000;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(var(--primary-rgb), 0.45);
    opacity: 0;
    transform: translateY(20px) scale(0.8);
    transition: var(--transition);
    text-decoration: none;
}
.scroll-top-btn.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}
.scroll-top-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 35px rgba(var(--primary-rgb), 0.65);
    color: white;
}

/* ═══════ RESPONSIVE ═══════ */
@media (max-width: 767px) {
    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}
@media (max-width: 992px) {
    .nav-links,
    .nav-actions {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .section-title {
        font-size: 2rem;
    }
}
@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .section-title {
        font-size: 1.7rem;
    }
}

/* ═══════════════════Index page════════════════════════*/
/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 80px 0 60px;
}
.hero-bg-effects {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}
.hero-bg-effects .glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}
.hero-bg-effects .glow-1 {
    width: 600px;
    height: 600px;
    top: -15%;
    left: -10%;
    background: rgba(var(--primary-rgb), 0.12);
    animation: glowPulse 8s ease-in-out infinite alternate;
}
.hero-bg-effects .glow-2 {
    width: 500px;
    height: 500px;
    bottom: -20%;
    right: -5%;
    background: rgba(var(--secondary-rgb), 0.08);
    animation: glowPulse 10s ease-in-out infinite alternate-reverse;
}
.hero-bg-effects .glow-3 {
    width: 300px;
    height: 300px;
    top: 40%;
    left: 45%;
    background: rgba(var(--accent-rgb), 0.06);
    animation: glowPulse 12s ease-in-out infinite alternate;
}
@keyframes glowPulse {
    0% {
        transform: scale(1) translate(0, 0);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.3) translate(30px, -20px);
        opacity: 1;
    }
}
.hero-brand-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
.hero-brand-orb--1 {
    width: 420px;
    height: 420px;
    top: -8%;
    left: -6%;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.28), transparent 70%);
    filter: blur(70px);
    animation: heroOrbFloat1 18s ease-in-out infinite;
}
.hero-brand-orb--2 {
    width: 360px;
    height: 360px;
    bottom: -10%;
    right: -4%;
    background: radial-gradient(circle, rgba(var(--secondary-rgb), 0.22), transparent 70%);
    filter: blur(70px);
    animation: heroOrbFloat2 22s ease-in-out infinite;
}
.hero-brand-orb--3 {
    width: 260px;
    height: 260px;
    top: 38%;
    left: 48%;
    background: radial-gradient(circle, rgba(var(--accent-rgb), 0.18), transparent 70%);
    filter: blur(60px);
    animation: heroOrbFloat3 15s ease-in-out infinite;
}
.hero-brand-orb--4 {
    width: 200px;
    height: 200px;
    top: 14%;
    left: 62%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.16), transparent 70%);
    filter: blur(55px);
    animation: heroOrbFloat4 20s ease-in-out infinite;
}
.hero-brand-orb--5 {
    width: 160px;
    height: 160px;
    bottom: 18%;
    left: 8%;
    background: radial-gradient(circle, rgba(167, 139, 250, 0.14), transparent 70%);
    filter: blur(50px);
    animation: heroOrbFloat5 17s ease-in-out infinite;
}
.hero-brand-orb--6 {
    width: 150px;
    height: 150px;
    top: 28%;
    left: 28%;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.24), transparent 70%);
    filter: blur(45px);
    animation: heroPanelOrb1 8s ease-in-out infinite;
}
.hero-brand-orb--7 {
    width: 130px;
    height: 130px;
    bottom: 28%;
    left: 46%;
    background: radial-gradient(circle, rgba(var(--secondary-rgb), 0.2), transparent 70%);
    filter: blur(45px);
    animation: heroPanelOrb2 10s ease-in-out infinite;
}
@keyframes heroOrbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(60px, 40px) scale(1.08); }
    50% { transform: translate(30px, -30px) scale(0.95); }
    75% { transform: translate(-40px, 20px) scale(1.04); }
}
@keyframes heroOrbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(-50px, -35px) scale(1.06); }
    50% { transform: translate(-20px, 50px) scale(0.92); }
    75% { transform: translate(40px, -20px) scale(1.03); }
}
@keyframes heroOrbFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-60px, 30px) scale(1.1); }
    66% { transform: translate(40px, -50px) scale(0.9); }
}
@keyframes heroOrbFloat4 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-30px, 40px); }
}
@keyframes heroOrbFloat5 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(50px, -30px) rotate(180deg); }
}
@keyframes heroPanelOrb1 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    50% { transform: translate(-20px, 30px) scale(1.3); opacity: 1; }
}
@keyframes heroPanelOrb2 {
    0%, 100% { transform: translate(0, 0); opacity: 0.5; }
    50% { transform: translate(25px, -20px); opacity: 0.9; }
}
.hero-deco-particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
.hero-deco-particle--1 {
    width: 3px;
    height: 3px;
    background: var(--primary);
    top: 16%;
    left: 10%;
    box-shadow: 0 0 6px var(--primary);
    animation: heroDecoParticle1 12s linear infinite;
}
.hero-deco-particle--2 {
    width: 2px;
    height: 2px;
    background: var(--secondary);
    top: 58%;
    left: 82%;
    box-shadow: 0 0 6px var(--secondary);
    animation: heroDecoParticle2 15s linear infinite;
}
.hero-deco-particle--3 {
    width: 2.5px;
    height: 2.5px;
    background: var(--gold);
    top: 38%;
    left: 48%;
    box-shadow: 0 0 6px var(--gold);
    animation: heroDecoParticle3 10s linear infinite;
}
.hero-deco-particle--4 {
    width: 2px;
    height: 2px;
    background: #a78bfa;
    top: 74%;
    left: 18%;
    box-shadow: 0 0 6px #a78bfa;
    animation: heroDecoParticle4 14s linear infinite;
}
.hero-deco-particle--5 {
    width: 1.5px;
    height: 1.5px;
    background: var(--secondary);
    top: 22%;
    left: 92%;
    box-shadow: 0 0 4px var(--secondary);
    animation: heroDecoParticle5 18s linear infinite;
}
.hero-deco-particle--6 {
    width: 3px;
    height: 3px;
    background: var(--primary);
    top: 32%;
    left: 24%;
    box-shadow: 0 0 8px var(--primary);
    animation: heroDecoParticle1 11s linear infinite 1.5s;
}
.hero-deco-particle--7 {
    width: 2px;
    height: 2px;
    background: var(--gold);
    top: 68%;
    left: 58%;
    box-shadow: 0 0 6px var(--gold);
    animation: heroDecoParticle3 13s linear infinite 0.8s;
}
.hero-deco-particle--8 {
    width: 2px;
    height: 2px;
    background: var(--secondary);
    top: 84%;
    left: 44%;
    box-shadow: 0 0 5px var(--secondary);
    animation: heroDecoParticle2 16s linear infinite 2s;
}
.hero-deco-particle--9 {
    width: 2.5px;
    height: 2.5px;
    background: #a78bfa;
    top: 12%;
    left: 38%;
    box-shadow: 0 0 6px #a78bfa;
    animation: heroDecoParticle4 14s linear infinite 3s;
}
.hero-geo-deco {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}
.hero-geo-deco--ring {
    width: 180px;
    height: 180px;
    border: 2px solid rgba(var(--primary-rgb), 0.14);
    border-radius: 50%;
    bottom: 10%;
    right: 6%;
    animation: heroGeoRingSpin 25s linear infinite;
}
.hero-geo-deco--ring-left {
    width: 140px;
    height: 140px;
    border: 2px solid rgba(var(--secondary-rgb), 0.12);
    border-radius: 50%;
    bottom: 14%;
    left: 4%;
    animation: heroGeoRingSpin 30s linear infinite reverse;
}
.hero-geo-deco--ring::before,
.hero-geo-deco--ring-left::before {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
}
.hero-geo-deco--ring::before {
    background: var(--primary);
    box-shadow: 0 0 12px var(--primary);
}
.hero-geo-deco--ring-left::before {
    background: var(--secondary);
    box-shadow: 0 0 12px var(--secondary);
}
.hero-geo-deco--diamond {
    width: 42px;
    height: 42px;
    border: 1.5px solid rgba(var(--secondary-rgb), 0.18);
    top: 14%;
    right: 10%;
    transform: rotate(45deg);
    animation: heroGeoDiamondPulse 6s ease-in-out infinite;
}
.hero-geo-deco--diamond-left {
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(var(--primary-rgb), 0.16);
    top: 26%;
    left: 6%;
    transform: rotate(45deg);
    animation: heroGeoDiamondPulse 7s ease-in-out infinite 1s;
}
.hero-geo-deco--triangle {
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 34px solid rgba(var(--primary-rgb), 0.1);
    top: 54%;
    right: 18%;
    animation: heroGeoTriFloat 8s ease-in-out infinite;
}
.hero-geo-deco--triangle-left {
    width: 0;
    height: 0;
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-bottom: 28px solid rgba(var(--secondary-rgb), 0.1);
    top: 48%;
    left: 14%;
    animation: heroGeoTriFloat 9s ease-in-out infinite 1.2s;
}
.hero-geo-deco--dots {
    top: 18%;
    left: 5%;
    display: grid;
    grid-template-columns: repeat(3, 6px);
    gap: 8px;
    animation: heroGeoDotsFloat 10s ease-in-out infinite;
}
.hero-geo-deco--dots-right {
    top: 20%;
    right: 6%;
    left: auto;
    display: grid;
    grid-template-columns: repeat(3, 6px);
    gap: 8px;
    animation: heroGeoDotsFloat 11s ease-in-out infinite 0.6s;
}
.hero-geo-deco--dots span,
.hero-geo-deco--dots-right span {
    width: 4px;
    height: 4px;
    background: rgba(var(--primary-rgb), 0.22);
    border-radius: 50%;
}
.hero-geo-deco--dots-right span {
    background: rgba(var(--secondary-rgb), 0.22);
}
@keyframes heroDecoParticle1 {
    0% { transform: translate(0, 0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translate(60px, -80px); opacity: 0; }
}
@keyframes heroDecoParticle2 {
    0% { transform: translate(0, 0); opacity: 0; }
    10% { opacity: 0.8; }
    90% { opacity: 0.8; }
    100% { transform: translate(-50px, -100px); opacity: 0; }
}
@keyframes heroDecoParticle3 {
    0% { transform: translate(0, 0); opacity: 0; }
    15% { opacity: 1; }
    85% { opacity: 1; }
    100% { transform: translate(40px, -70px); opacity: 0; }
}
@keyframes heroDecoParticle4 {
    0% { transform: translate(0, 0); opacity: 0; }
    10% { opacity: 0.7; }
    90% { opacity: 0.7; }
    100% { transform: translate(-30px, -90px); opacity: 0; }
}
@keyframes heroDecoParticle5 {
    0% { transform: translate(0, 0); opacity: 0; }
    20% { opacity: 0.6; }
    80% { opacity: 0.6; }
    100% { transform: translate(20px, -60px); opacity: 0; }
}
@keyframes heroGeoRingSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
@keyframes heroGeoDiamondPulse {
    0%, 100% { transform: rotate(45deg) scale(1); opacity: 0.5; }
    50% { transform: rotate(45deg) scale(1.15); opacity: 1; }
}
@keyframes heroGeoTriFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
@keyframes heroGeoDotsFloat {
    0%, 100% { transform: translate(0, 0); opacity: 0.4; }
    50% { transform: translate(5px, -8px); opacity: 0.8; }
}
@media (max-width: 992px) {
    .hero-geo-deco--ring,
    .hero-geo-deco--ring-left,
    .hero-geo-deco--diamond,
    .hero-geo-deco--diamond-left,
    .hero-geo-deco--triangle,
    .hero-geo-deco--triangle-left,
    .hero-geo-deco--dots,
    .hero-geo-deco--dots-right,
    .hero-deco-particle,
    .hero-brand-orb--6,
    .hero-brand-orb--7 {
        display: none;
    }
}
.hero-grid-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: linear-gradient(rgba(var(--primary-rgb), 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(var(--primary-rgb), 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 30%, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 30%, black 30%, transparent 75%);
}
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}
.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(var(--primary-rgb), 0.35);
    animation: particleDrift 20s infinite ease-in-out;
}
@keyframes particleDrift {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.25;
    }
    33% {
        transform: translate(40px, -60px) scale(1.3);
        opacity: 0.5;
    }
    66% {
        transform: translate(-30px, -90px) scale(0.7);
        opacity: 0.3;
    }
}

.hero-container {
    width: 1440px;
    margin: 75px auto 0;
    padding: 0 32px;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

/* Hero Left */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(var(--primary-rgb), 0.08);
    border: 1px solid rgba(var(--primary-rgb), 0.2);
    border-radius: 30px;
    padding: 7px 18px;
    margin-bottom: 22px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.5px;
    animation: fadeSlideIn 0.6s ease both;
}
.hero-badge .live-dot {
    width: 8px;
    height: 8px;
    background: var(--emerald);
    border-radius: 50%;
    animation: livePulse 2s infinite;
}
@keyframes livePulse {
    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5);
    }
    50% {
        opacity: 0.7;
        box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
    }
}
@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: var(--font2);
    font-size: 4.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
    animation: fadeSlideIn 0.7s ease 0.1s both;
}
.hero-title .line-2 {
    display: block;
}
.hero-title .shimmer {
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmerText 3s linear infinite;
}
@keyframes shimmerText {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

.hero-desc {
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.85;
    margin-bottom: 36px;
    max-width: 500px;
    animation: fadeSlideIn 0.8s ease 0.2s both;
}
.hero-actions {
    display: flex;
    gap: 14px;
    margin-bottom: 50px;
    animation: fadeSlideIn 0.9s ease 0.3s both;
}
.btn-hero-primary {
    padding: 15px 34px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), #8b5cf6);
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 8px 30px rgba(var(--primary-rgb), 0.4);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}
.btn-hero-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.5s;
}
.btn-hero-primary:hover::before {
    left: 100%;
}
.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(var(--primary-rgb), 0.6);
    color: white;
}
.btn-hero-secondary {
    padding: 15px 34px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(10px);
}
.btn-hero-secondary:hover {
    border-color: var(--secondary);
    color: var(--secondary);
    background: rgba(var(--secondary-rgb), 0.06);
    transform: translateY(-3px);
}

.hero-metrics {
    display: flex;
    gap: 45px;
    animation: fadeSlideIn 1s ease 0.4s both;
}
.hero-metric h3 {
    font-family: var(--font2);
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}
.hero-metric p {
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Hero Right – Glass Trading Card */
.hero-visual {
    animation: fadeSlideIn 1s ease 0.3s both;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-image-panel {
    position: relative;
    width: 100%;
    max-width: 560px;
    min-height: 520px;
    border-radius: 38px;
    z-index: 1;
    /* overflow: hidden; */
    /* background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 50px 90px rgba(0, 0, 0, 0.26); */
    /* backdrop-filter: blur(18px); */
}
/* .hero-image-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 55%);
    pointer-events: none;
} */

.coin_image {
    left: 0;
    right: 0;
    bottom: 12px;
    z-index: 1;
    position: absolute;
}

.coin_image img {
    -webkit-animation: upDownMover 4s ease-in-out infinite;
    animation: upDownMover 4s ease-in-out infinite;
}
@-webkit-keyframes upDownMover {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}
@keyframes upDownMover {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}
.upDownMover {
  -webkit-animation: upDownMover 4s ease-in-out infinite;
          animation: upDownMover 4s ease-in-out infinite;
}

/* .hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
} */
.coin-floating {
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    opacity: 0.55;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(10px);
}
.coin-floating i {
    font-size: 1.35rem;
}
.coin-1 {
    top: 12%;
    left: 10%;
    animation: floatCoin1 12s ease-in-out infinite;
}
.coin-2 {
    top: 16%;
    right: 12%;
    animation: floatCoin2 10s ease-in-out infinite;
}
.coin-3 {
    bottom: 18%;
    left: 18%;
    animation: floatCoin3 11s ease-in-out infinite;
}
.coin-4 {
    bottom: 14%;
    right: 18%;
    animation: floatCoin4 13s ease-in-out infinite;
}
@keyframes floatCoin1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(8px, -18px) rotate(12deg); }
}
@keyframes floatCoin2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-10px, -22px) rotate(-16deg); }
}
@keyframes floatCoin3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(10px, 16px) rotate(14deg); }
}
@keyframes floatCoin4 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-8px, 14px) rotate(-12deg); }
}
.tc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}
.tc-header h4 {
    font-family: var(--font2);
    font-weight: 700;
    font-size: 1.05rem;
}
.tc-live-badge {
    background: rgba(16, 185, 129, 0.12);
    color: var(--emerald);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.5px;
}
.tc-live-badge .dot {
    width: 6px;
    height: 6px;
    background: var(--emerald);
    border-radius: 50%;
    animation: livePulse 1.5s infinite;
}

.tc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    position: relative;
    z-index: 1;
    transition: var(--transition);
}
.tc-row:hover {
    background: rgba(var(--primary-rgb), 0.04);
    border-radius: 10px;
    padding: 14px 12px;
    margin: 0 -12px;
}
.tc-row:last-child {
    border-bottom: none;
}
.tc-left {
    display: flex;
    align-items: center;
    gap: 12px;
}
.tc-icon {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}
.tc-name {
    font-weight: 600;
    font-size: 0.9rem;
}
.tc-pair {
    color: var(--muted);
    font-size: 0.76rem;
}
.tc-price {
    font-weight: 700;
    font-size: 0.9rem;
    text-align: right;
}
.tc-change {
    font-size: 0.76rem;
    text-align: right;
    font-weight: 600;
}
.tc-up {
    color: var(--emerald);
}
.tc-down {
    color: var(--accent);
}

/* ── MARKETS SECTION ── */
.markets-section {
    padding: 110px 0;
    position: relative;
}
.markets-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.markets-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 32px;
}
.markets-header {
    margin-bottom: 50px;
}
.market-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}
.market-tab {
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    color: var(--muted);
    font-weight: 600;
    font-size: 0.84rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.market-tab:hover {
    border-color: var(--primary);
    color: var(--text);
}
.market-tab.active {
    background: linear-gradient(135deg, var(--primary), #8b5cf6);
    border-color: transparent;
    color: white;
    box-shadow: 0 4px 20px rgba(var(--primary-rgb), 0.35);
}
.market-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.market-feature-card,
.mkt-card {
    background: var(--card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.market-feature-card {
    min-height: 280px;
}
.market-feature-card::before,
.mkt-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.05), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
}
.market-feature-card:hover,
.mkt-card:hover {
    transform: translateY(-8px);
    border-color: rgba(var(--primary-rgb), 0.35);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}
.market-feature-card:hover::before,
.mkt-card:hover::before {
    opacity: 1;
}
.market-feature-card .feature-icon {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: #dfff83;
    display: grid;
    place-items: center;
    color: #111827;
    margin-bottom: 24px;
    box-shadow: inset 0 0 12px rgba(255,255,255,0.44);
    font-size: 1.45rem;
}
.market-feature-card h5,
.market-feature-card h5 {
    font-family: var(--font2);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}
.market-feature-card p,
.market-feature-card p {
    color: var(--muted);
    line-height: 1.8;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}
.mkt-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}
.mkt-card-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}
.mkt-badge {
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.3px;
}
.mkt-card h5 {
    font-family: var(--font2);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
    position: relative;
    z-index: 1;
}
.mkt-card .mkt-price {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 3px;
    position: relative;
    z-index: 1;
    font-family: var(--font2);
}
.mkt-card .mkt-pair {
    font-size: 0.82rem;
    color: var(--muted);
    font-weight: 500;
    position: relative;
    z-index: 1;
}
.mini-chart {
    height: 48px;
    margin-top: 16px;
    display: flex;
    align-items: flex-end;
    gap: 3px;
    position: relative;
    z-index: 1;
}
.mini-chart .bar {
    flex: 1;
    border-radius: 3px 3px 0 0;
    min-height: 4px;
    transition: height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 1080px) {
    .market-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 700px) {
    .market-grid {
        grid-template-columns: 1fr;
    }
}


/* ── SERVICES ── */
.services-section {
    position: relative;
    padding: 60px 0 60px;
    background: linear-gradient(180deg, var(--dark2) 0%, var(--dark) 100%);
}
.services-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 32px;
}
.services-header {
    text-align: center;
    margin-bottom: 60px;
}
.services-header .section-sub {
    margin: 0 auto;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.svc-card {
    background: var(--card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.svc-card[data-aos] {
    transition: none;
    will-change: transform, opacity;
}
.svc-card[data-aos].aos-animate {
    transition: border-color 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: auto;
}
.svc-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}
.svc-card:hover::after {
    transform: scaleX(1);
}
@media (hover: hover) and (pointer: fine) {
    .svc-card:hover {
        transform: translateY(-10px);
        border-color: rgba(var(--primary-rgb), 0.35);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
    }
    .svc-card:hover .svc-icon {
        transform: scale(1.15) rotate(5deg);
    }
}
.svc-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 22px;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.svc-card h5 {
    font-family: var(--font2);
    font-size: 1.12rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.svc-card p {
    color: var(--muted);
    font-size: 0.87rem;
    line-height: 1.75;
}

/* ── ABOUT ── */
.about-section {
    padding: 60px 0 60px;
    background: linear-gradient(180deg, var(--dark2) 0%, var(--dark) 100%);
    position: relative;
}
.about-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}
.about-visual {
    position: relative;
}
.about-visual img {
    width: 100%;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
}
.about-float {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px 30px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.about-float h3 {
    font-family: var(--font2);
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 4px;
}
.about-float p {
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 600;
}
.about-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 28px;
}
.about-feat {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--card);
    border: 1px solid var(--border-light);
    border-radius: 14px;
    padding: 18px 22px;
    transition: var(--transition);
}
.about-feat:hover {
    border-color: var(--primary);
    transform: translateX(8px);
}
.about-feat-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}
.about-feat h6 {
    font-weight: 600;
    margin-bottom: 3px;
    font-size: 0.94rem;
}
.about-feat p {
    color: var(--muted);
    font-size: 0.82rem;
    margin: 0;
}

/* ── TESTIMONIALS ── */
.testimonials-section {
    position: relative;
    padding: 60px 0 60px;
    background: linear-gradient(180deg, var(--dark2) 0%, var(--dark) 100%);
}
.testimonials-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 32px;
}
.section-header-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 55px;
}
.section-header-text {
    flex: 1;
    min-width: 0;
}
.testimonials-header {
    text-align: left;
}
.testimonials-header .section-sub,
.articles-header .section-sub {
    margin: 0;
}
.swiper-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    margin-top: 8px;
}
.swiper-button-prev,
.swiper-button-next {
    position: static;
    width: 44px;
    height: 44px;
    margin: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text);
    transition: var(--transition);
}
.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 0.95rem;
    font-weight: 700;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: rgba(var(--primary-rgb), 0.2);
    border-color: rgba(var(--primary-rgb), 0.45);
    color: var(--secondary);
}
.swiper-button-disabled {
    opacity: 0.35;
    pointer-events: none;
}
.articles-header {
    margin-bottom: 0;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.testi-card {
    background: var(--card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: var(--transition);
    position: relative;
}
.testi-card:hover {
    border-color: rgba(var(--primary-rgb), 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}
.testi-stars {
    color: var(--gold);
    font-size: 0.85rem;
    margin-bottom: 16px;
    display: flex;
    gap: 3px;
}
.testi-card blockquote {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.75;
    margin-bottom: 22px;
    font-style: italic;
}
.testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: white;
}
.testi-author h6 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2px;
}
.testi-author span {
    color: var(--muted);
    font-size: 0.78rem;
}

/* ── CTA ── */
.cta-section {
    padding: 60px 0 60px;
    background: linear-gradient(180deg, var(--dark2) 0%, var(--dark) 100%);
}
.cta-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 32px;
}
.cta-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    border-radius: inherit;
}
.cta-brand-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.cta-brand-orb--1 {
    width: 280px;
    height: 280px;
    top: -12%;
    left: -4%;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.22), transparent 70%);
    filter: blur(55px);
    animation: heroOrbFloat1 18s ease-in-out infinite;
}
.cta-brand-orb--2 {
    width: 240px;
    height: 240px;
    bottom: -14%;
    right: -2%;
    background: radial-gradient(circle, rgba(var(--secondary-rgb), 0.18), transparent 70%);
    filter: blur(55px);
    animation: heroOrbFloat2 22s ease-in-out infinite;
}
.cta-brand-orb--3 {
    width: 180px;
    height: 180px;
    top: 36%;
    left: 42%;
    background: radial-gradient(circle, rgba(var(--accent-rgb), 0.14), transparent 70%);
    filter: blur(45px);
    animation: heroOrbFloat3 15s ease-in-out infinite;
}
.cta-brand-orb--4 {
    width: 140px;
    height: 140px;
    top: 18%;
    right: 22%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.14), transparent 70%);
    filter: blur(40px);
    animation: heroOrbFloat4 20s ease-in-out infinite;
}
.cta-deco-particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.cta-deco-particle--1 {
    width: 3px;
    height: 3px;
    top: 20%;
    left: 12%;
    background: var(--primary);
    box-shadow: 0 0 6px var(--primary);
    animation: heroDecoParticle1 12s linear infinite;
}
.cta-deco-particle--2 {
    width: 2px;
    height: 2px;
    top: 62%;
    left: 78%;
    background: var(--secondary);
    box-shadow: 0 0 6px var(--secondary);
    animation: heroDecoParticle2 15s linear infinite;
}
.cta-deco-particle--3 {
    width: 2.5px;
    height: 2.5px;
    top: 38%;
    left: 50%;
    background: var(--gold);
    box-shadow: 0 0 6px var(--gold);
    animation: heroDecoParticle3 10s linear infinite;
}
.cta-deco-particle--4 {
    width: 2px;
    height: 2px;
    top: 72%;
    left: 22%;
    background: #a78bfa;
    box-shadow: 0 0 6px #a78bfa;
    animation: heroDecoParticle4 14s linear infinite;
}
.cta-deco-particle--5 {
    width: 1.5px;
    height: 1.5px;
    top: 26%;
    left: 88%;
    background: var(--secondary);
    box-shadow: 0 0 4px var(--secondary);
    animation: heroDecoParticle5 18s linear infinite;
}
.cta-geo-deco {
    position: absolute;
    pointer-events: none;
}
.cta-geo-deco--ring {
    width: 130px;
    height: 130px;
    border: 2px solid rgba(var(--primary-rgb), 0.14);
    border-radius: 50%;
    bottom: 12%;
    right: 8%;
    animation: heroGeoRingSpin 25s linear infinite;
}
.cta-geo-deco--ring-left {
    width: 110px;
    height: 110px;
    border: 2px solid rgba(var(--secondary-rgb), 0.12);
    border-radius: 50%;
    bottom: 16%;
    left: 6%;
    animation: heroGeoRingSpin 30s linear infinite reverse;
}
.cta-geo-deco--ring::before,
.cta-geo-deco--ring-left::before {
    content: "";
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
}
.cta-geo-deco--ring::before {
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary);
}
.cta-geo-deco--ring-left::before {
    background: var(--secondary);
    box-shadow: 0 0 10px var(--secondary);
}
.cta-geo-deco--diamond {
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(var(--secondary-rgb), 0.18);
    top: 16%;
    right: 12%;
    transform: rotate(45deg);
    animation: heroGeoDiamondPulse 6s ease-in-out infinite;
}
.cta-geo-deco--diamond-left {
    width: 30px;
    height: 30px;
    border: 1.5px solid rgba(var(--primary-rgb), 0.16);
    top: 22%;
    left: 8%;
    transform: rotate(45deg);
    animation: heroGeoDiamondPulse 7s ease-in-out infinite 1s;
}
.cta-geo-deco--triangle {
    width: 0;
    height: 0;
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-bottom: 28px solid rgba(var(--primary-rgb), 0.1);
    top: 52%;
    left: 18%;
    animation: heroGeoTriFloat 8s ease-in-out infinite;
}
.cta-geo-deco--dots {
    top: 14%;
    left: 42%;
    display: grid;
    grid-template-columns: repeat(3, 6px);
    gap: 8px;
    animation: heroGeoDotsFloat 10s ease-in-out infinite;
}
.cta-geo-deco--dots span {
    width: 4px;
    height: 4px;
    background: rgba(var(--primary-rgb), 0.22);
    border-radius: 50%;
}
.cta-box {
    background: linear-gradient(
        135deg,
        rgba(var(--primary-rgb), 0.25) 0%,
        rgba(var(--secondary-rgb), 0.15) 50%,
        rgba(var(--accent-rgb), 0.2) 100%
    );
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 32px;
    padding: 100px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4), inset 0 0 30px rgba(255, 255, 255, 0.05);
    transition: box-shadow 0.4s ease;
}
.cta-box[data-aos] {
    transition: none;
    will-change: transform, opacity;
}
.cta-box[data-aos].aos-animate {
    transition: box-shadow 0.4s ease;
    will-change: auto;
}
@media (hover: hover) and (pointer: fine) {
    .cta-box:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 50px 100px rgba(0, 0, 0, 0.6), inset 0 0 40px rgba(255, 255, 255, 0.1);
    }
}
.cta-icons {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}
.cta-icon {
    position: absolute;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
    display: grid;
    place-items: center;
    color: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    opacity: 0.95;
}
.cta-icon i {
    font-size: 1.15rem;
}
.cta-icon-1 {
    top: 18%;
    left: 14%;
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    animation: floatX 8s ease-in-out infinite;
}
.cta-icon-2 {
    top: 22%;
    right: 16%;
    background: linear-gradient(135deg, #0ea5e9 0%, #8b5cf6 100%);
    animation: floatY 9s ease-in-out infinite;
}
.cta-icon-3 {
    bottom: 18%;
    left: 20%;
    background: linear-gradient(135deg, #22c55e 0%, #14b8a6 100%);
    animation: floatX 10s ease-in-out infinite reverse;
}
.cta-icon-4 {
    bottom: 24%;
    right: 18%;
    background: linear-gradient(135deg, #ec4899 0%, #f43f5e 100%);
    animation: floatY 11s ease-in-out infinite reverse;
}
@keyframes floatX {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(8px, -14px); }
}
@keyframes floatY {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-10px, 12px); }
}
.cta-box::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.15), transparent 70%);
    border-radius: 50%;
    animation: glowPulse 8s ease-in-out infinite alternate;
}
.cta-box::after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(var(--secondary-rgb), 0.1), transparent 70%);
    border-radius: 50%;
    animation: glowPulse 10s ease-in-out infinite alternate-reverse;
}
.cta-box h2 {
    font-family: var(--font2);
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
    text-shadow: 0 10px 30px rgba(var(--primary-rgb), 0.4);
}
.cta-box p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    max-width: 580px;
    margin: 0 auto 36px;
    position: relative;
    z-index: 1;
    line-height: 1.8;
}
.cta-box .btn-hero-primary {
    position: relative;
    z-index: 1;
}

@media (max-width: 992px) {
    .cta-container {
        padding: 0 24px;
    }
    .cta-box {
        padding: 72px 36px;
    }
    .cta-box h2 {
        font-size: 2.4rem;
    }
    .cta-box p {
        font-size: 1.05rem;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 48px 0;
    }
    .cta-container {
        padding: 0 18px;
    }
    .cta-box {
        padding: 40px 22px 36px;
        border-radius: 24px;
    }
    .cta-box h2 {
        font-size: 1.85rem;
        line-height: 1.25;
        margin-bottom: 14px;
    }
    .cta-box p {
        font-size: 0.92rem;
        line-height: 1.65;
        margin-bottom: 28px;
    }
    .cta-box .btn-hero-primary {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }
    .cta-icons {
        display: none;
    }
    .cta-geo-deco--ring,
    .cta-geo-deco--ring-left,
    .cta-geo-deco--diamond,
    .cta-geo-deco--diamond-left,
    .cta-geo-deco--triangle,
    .cta-geo-deco--dots {
        display: none;
    }
    .cta-brand-orb--3,
    .cta-brand-orb--4,
    .cta-deco-particle--4,
    .cta-deco-particle--5 {
        display: none;
    }
    .cta-brand-orb--1 {
        width: 200px;
        height: 200px;
    }
    .cta-brand-orb--2 {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 480px) {
    .cta-box {
        padding: 36px 18px 32px;
    }
    .cta-box h2 {
        font-size: 1.6rem;
    }
    .cta-box p {
        font-size: 0.88rem;
    }
}

/* ── FAQ SECTION ── */
.faq-section {
    padding: 60px 0 60px;
    background: linear-gradient(180deg, var(--dark2) 0%, var(--dark) 100%);
}
.faq-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 32px;
}
.faq-block {
    /* background: var(--card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18); */
}
.faq-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 56px;
    align-items: center;
    margin-top: 32px;
}
.faq-content {
    min-width: 0;
}
.faq-visual {
    position: relative;
}
.faq-visual img {
    width: 100%;
    display: block;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.25);
}
@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.faq-visual-badge {
    position: absolute;
    left: -18px;
    bottom: 28px;
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px 22px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    animation: floatBadge 4s ease-in-out infinite;
    z-index: 2;
}

.faq-visual-badge-2 {
    position: absolute;
    right: -25px;
    top: 35px;
    display: flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, rgba(236,72,153,0.95), rgba(139,92,246,0.95));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    padding: 14px 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    animation: floatBadge 5s ease-in-out infinite reverse;
    color: #fff;
    z-index: 2;
}
.faq-visual-badge-2 i {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.faq-visual-badge-2 strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 2px;
    color: #fff;
}
.faq-visual-badge-2 span {
    color: rgba(255,255,255,0.8);
    font-size: 0.82rem;
}
.faq-visual-badge i {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(var(--primary-rgb), 0.15);
    color: var(--secondary);
    font-size: 1.1rem;
    flex-shrink: 0;
}
.faq-visual-badge strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 2px;
}
.faq-visual-badge span {
    color: var(--muted);
    font-size: 0.82rem;
}
.faq-grid {
    display: grid;
    gap: 18px;
    margin-top: 0;
}
.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    overflow: hidden;
    transition: var(--transition);
}
.faq-question {
    width: 100%;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    color: var(--text);
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
}
.faq-question i {
    transition: transform 0.3s ease;
}
.faq-item.open .faq-question i {
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.faq-item.open .faq-answer {
    max-height: 220px;
}
.faq-answer p {
    color: var(--muted);
    line-height: 1.75;
    margin: 0 24px 24px;
}

/* ── ARTICLES SECTION ── */
.articles-section {
    padding: 60px 0 60px;
    background: linear-gradient(180deg, var(--dark2) 0%, var(--dark) 100%);
}
.articles-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 32px;
}
.articles-block {
    /* background: var(--card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18); */
}
.articles-swiper {
    margin-top: 24px;
    padding-bottom: 16px;
}
.articles-swiper .swiper-slide,
.testimonials-swiper .swiper-slide {
    display: flex;
    justify-content: center;
}
.articles-swiper .swiper-slide {
    width: auto;
}
.article-card-item,
.testimonials-swiper .swiper-slide .testi-card {
    width: 100%;
}
.article-card-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.article-card-item:hover {
    border-color: rgba(var(--primary-rgb), 0.35);
}
.article-thumb {
    width: 100%;
    overflow: hidden;
}
.article-thumb img {
    width: 100%;
    display: block;
    object-fit: cover;
    height: 220px;
}
.article-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-size: 0.9rem;
    margin: 20px 24px 14px;
}
.article-meta i {
    color: var(--secondary);
}
.article-card-item h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 24px 12px;
}
.article-card-item p {
    color: var(--muted);
    line-height: 1.8;
    margin: 0 24px 24px;
}
.swiper-pagination {
    margin-top: 22px;
}
.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.35);
    opacity: 1;
}
.swiper-pagination-bullet-active {
    background: var(--secondary);
}
@media (max-width: 1080px) {
    .article-card {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 992px) {
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .faq-visual {
        order: -1;
        max-width: 520px;
        margin: 0 auto;
        width: 100%;
    }
    .faq-visual-badge {
        left: 16px;
        bottom: 16px;
    }
}
@media (max-width: 760px) {
    .section-header-row {
        flex-wrap: wrap;
        margin-bottom: 32px;
    }
    .swiper-nav {
        margin-left: auto;
    }
    .faq-section,
    .articles-section {
        padding: 60px 0 40px;
    }
    .faq-container,
    .articles-container {
        padding: 0 18px;
    }
}


/* ── RESPONSIVE ── */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-visual {
        display: none;
    }
    .hero-title {
        font-size: 2.8rem;
    }
    .hero-desc {
        margin: 0 auto 30px;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-metrics {
        justify-content: center;
    }
    .market-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-container {
        grid-template-columns: 1fr;
    }
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    .hero-metrics {
        flex-wrap: wrap;
        gap: 24px;
    }
    .market-grid,
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* Ripple Shape Animation */
.ripple_shape {
    position: absolute;
    top: 40%;
    left: 40%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}
.hero-image-panel {
    position: relative;
    z-index: 1;
}
.ripple_shape svg path {
    transform-origin: center;
    animation: rippleExpand 4s infinite cubic-bezier(0.165, 0.84, 0.44, 1);
}
.ripple_shape svg path:nth-child(1) { animation-delay: 0s; }
.ripple_shape svg path:nth-child(2) { animation-delay: -1s; }
.ripple_shape svg path:nth-child(3) { animation-delay: -2s; }
.ripple_shape svg path:nth-child(4) { animation-delay: -3s; }

@keyframes rippleExpand {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}


/* New Hero Floating Elements */
.hero-float-badge {
    position: absolute;
    background: rgba(20, 20, 30, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 12px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.h-badge-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.h-badge-text {
    display: flex;
    flex-direction: column;
}

.h-badge-text span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.h-badge-text strong {
    font-size: 1.1rem;
    color: #fff;
    font-weight: 700;
}

.badge-profit {
    bottom: 25%;
    right: -8%;
    animation: floatBadge1 8s ease-in-out infinite;
}

.badge-profit .h-badge-icon {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.badge-secure {
    top: 25%;
    left: -10%;
    animation: floatBadge2 9s ease-in-out infinite reverse;
}

.badge-secure .h-badge-icon {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
}

@keyframes floatBadge1 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

@keyframes floatBadge2 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(18px) rotate(-3deg); }
}


/* About Floating Elements Animation */
.about-float {
    animation: floatAboutBox 8s ease-in-out infinite;
    z-index: 2;
}

.about-floating-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.a-float-1 {
    top: 10%;
    left: -5%;
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    border-color: rgba(16, 185, 129, 0.3);
    animation: floatAboutIcon1 7s ease-in-out infinite;
}

.a-float-2 {
    bottom: 25%;
    left: -8%;
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
    border-color: rgba(245, 158, 11, 0.3);
    animation: floatAboutIcon2 9s ease-in-out infinite reverse;
}

@keyframes floatAboutBox {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes floatAboutIcon1 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

@keyframes floatAboutIcon2 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(18px) rotate(-10deg); }
}


/* -- LANGUAGE SELECTOR -- */
.lang-selector {
    position: relative;
    display: inline-block;
    margin-right: 12px;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text);
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lang-btn:hover {
    background: rgba(108, 99, 255, 0.15);
    border-color: rgba(108, 99, 255, 0.3);
    color: var(--primary);
}

.lang-btn .arrow-icon {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.lang-selector:hover .lang-btn .arrow-icon {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 160px;
    background: rgba(15, 20, 40, 0.95);
    border: 1px solid rgba(108, 99, 255, 0.2);
    border-radius: 12px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    z-index: 100;
}

.lang-selector:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.lang-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    color: var(--muted);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.lang-dropdown a img {
    border-radius: 2px;
    width: 20px;
    height: 15px;
    object-fit: cover;
}

.lang-dropdown a:hover,
.lang-dropdown a.active {
    background: rgba(108, 99, 255, 0.1);
    color: #fff;
}
.lang-dropdown a.active {
    border-left: 3px solid var(--primary);
}


/* Hide Google Translate Default Widget & Banner */
.goog-te-banner-frame.skiptranslate, .goog-te-gadget-icon {
    display: none !important;
}
body {
    top: 0px !important;
}
.goog-tooltip {
    display: none !important;
}
.goog-tooltip:hover {
    display: none !important;
}
.goog-text-highlight {
    background-color: transparent !important;
    border: none !important; 
    box-shadow: none !important;
}



