/* FIX: @import must be at top of stylesheet */
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

:root {
    --col-white: #fff;
    --col-black: #000;
    --col-l: #DBE8FF;
    --col-2: #f6f9ff;
    --col-3: #f5f5f5;
    --col-4: #141414;
    --col-5: #202020;
    --col-6: #1065ff;
    --col-7: #1f2baa;
    --col-8: #00278c;
    --col-9: #001345;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: none;
}

/* Hide scrollbar for all elements */
 
::-webkit-scrollbar {
  display: none;
}

body{
    font-family: "Encode Sans Expanded", Arial, sans-serif;
    background:
        radial-gradient(circle at top left, #eaf2ff 0, transparent 34rem),
        linear-gradient(180deg, #ffffff 0%, #f7faff 55%, #eef4ff 100%);
    color: var(--col-4);
}

.site-header {
    position: fixed;
    top: 14px;
    left: 0;
    right: 0;
    z-index: 20;
    padding: 12px 18px;
    pointer-events: none;
}

.site-header__menu-wrapper {
    display: contents;
}

/* Mobile nav toggle button styles */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(16, 101, 255, 0.15);
    border-radius: 50%;
    cursor: pointer;
    padding: 0;
    z-index: 30;
    position: relative;
    box-shadow: 0 4px 12px rgba(16, 101, 255, 0.05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: auto;
}

.nav-toggle:hover {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(16, 101, 255, 0.3);
    transform: scale(1.05);
}

.nav-toggle:active {
    transform: scale(0.95);
}

.nav-toggle__bar {
    position: absolute;
    width: 18px;
    height: 2px;
    background-color: var(--col-9);
    border-radius: 999px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, background-color 0.3s ease;
}

.nav-toggle__bar:nth-child(1) {
    transform: translateY(-5px);
}

.nav-toggle__bar:nth-child(2) {
    transform: translateY(0);
}

.nav-toggle__bar:nth-child(3) {
    transform: translateY(5px);
}

.site-header__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: min(1320px, calc(100% - 32px));
    margin: 0 auto;
    padding: 10px 18px;
    border: 1px solid #ffffff;
    border-radius: 16px;
    background:
        linear-gradient(135deg, #fffffff0, #eef7ffdf),
        linear-gradient(90deg, #17e6ae24, #1065ff24, #ffcd621f);
    box-shadow: 0 18px 48px #0013452b, inset 0 1px 0 #ffffff;
    pointer-events: auto;
    backdrop-filter: blur(22px) saturate(175%);
    -webkit-backdrop-filter: blur(22px) saturate(175%);
}

.nav-brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    min-width: 0;
    padding: 3px 0;
    color: var(--col-9);
    text-decoration: none;
}

.nav-brand__logo {
    width: auto;
    height: 50px;
    max-width: min(230px, 34vw);
    filter: drop-shadow(0 1px 0 #ffffff);
}

.site-header__nav {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 10px;
    min-width: 0;
    padding: 7px 12px;
    border: 1px solid #d9e8fa;
    border-radius: 18px;
    background: #ffffffd8;
    box-shadow: inset 0 1px 0 #ffffff, 0 10px 25px #0d3d8f12;
}

.nav-link-node {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 36px;
    padding: 8px 10px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--col-9);
    font-family: inherit;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.03em;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.24s ease, background 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}

.nav-link-node::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 3px;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: var(--col-6);
    transform: translateX(-50%);
    transition: background 0.24s ease, transform 0.24s ease, box-shadow 0.24s ease;
}

.site-header .nav-link-node .bi,
.site-header .nav-dropdown__item .bi,
.site-header .nav-resume .bi {
    display: inline-grid;
    place-items: center;
    width: 21px;
    height: 21px;
    padding: 0;
    border: 0;
    border-radius: 8px;
    background: #eff6ff;
    color: #1065ff !important;
    font-size: 12px;
    line-height: 1;
}

.nav-link-node:hover,
.nav-link-node:focus,
.nav-link-node.is-active,
.nav-dropdown:hover .nav-dropdown__trigger,
.nav-dropdown:focus-within .nav-dropdown__trigger {
    color: var(--col-9);
    background: #e9f4ff;
    box-shadow: inset 0 1px 0 #ffffff;
    transform: translateY(-2px);
}

.nav-link-node:hover::after,
.nav-link-node:focus::after,
.nav-link-node.is-active::after,
.nav-dropdown:hover .nav-dropdown__trigger::after,
.nav-dropdown:focus-within .nav-dropdown__trigger::after {
    width: calc(100% - 24px);
    background: linear-gradient(90deg, #17e6ae, #1065ff);
    box-shadow: 0 0 0 0 transparent;
    transform: translateX(-50%);
}

.nav-link-node:hover .bi,
.nav-link-node:focus .bi,
.nav-link-node.is-active .bi,
.nav-dropdown:hover .nav-dropdown__trigger .bi,
.nav-dropdown:focus-within .nav-dropdown__trigger .bi {
    color: #ffffff !important;
    background: linear-gradient(135deg, #1065ff, #17a7e6);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown__trigger {
    cursor: pointer;
}

.nav-dropdown__menu {
    position: absolute;
    top: calc(100% + 17px);
    right: 0;
    display: grid;
    gap: 8px;
    min-width: 218px;
    padding: 11px;
    border: 1px solid #ffffff;
    border-radius: 22px;
    background:
        linear-gradient(135deg, #fffffff4, #eef7ffe8),
        radial-gradient(circle at top left, #17e6ae2e, transparent 10rem);
    box-shadow: 0 18px 42px #0013452c, inset 0 1px 0 #ffffff;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 0.22s ease, transform 0.22s ease;
    backdrop-filter: blur(18px) saturate(170%);
    -webkit-backdrop-filter: blur(18px) saturate(170%);
}

.nav-dropdown__menu::before {
    content: "";
    position: absolute;
    top: -7px;
    right: 24px;
    width: 14px;
    height: 14px;
    background: #ffffff;
    border-left: 1px solid #ffffff;
    border-top: 1px solid #ffffff;
    transform: rotate(45deg);
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.nav-dropdown__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border: 1px solid #e4effc;
    border-radius: 14px;
    background: #ffffffa6;
    color: var(--col-9);
    font-size: 14px;
    font-weight: 800;
    text-align: left;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.nav-dropdown__item:not(.is-disabled):hover,
.nav-dropdown__item:not(.is-disabled):focus {
    border-color: #bde7ff;
    background: #e9f4ff;
    color: var(--col-9);
    text-decoration: none;
    transform: translateY(-1px);
}

.nav-dropdown__item.is-disabled {
    opacity: 0.68;
}

.nav-actions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
}

.nav-login,
.nav-resume {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 10px 14px 10px 17px;
    overflow: hidden;
    border: 1px solid #052d76;
    border-radius: 16px;
    background:
        linear-gradient(135deg, #001345, #1065ff 66%, #17e6ae),
        repeating-linear-gradient(135deg, transparent 0 8px, #ffffff14 8px 9px);
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.02em;
    text-decoration: none;
    box-shadow: 0 16px 30px #1065ff2e;
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.nav-login {
    padding: 10px 15px;
    border-color: #c7d9f5;
    background: #ffffffdb;
    color: var(--col-9);
    box-shadow: 0 12px 26px #0d3d8f14;
}

.nav-login:hover,
.nav-login:focus {
    border-color: #88b8ff;
    background: #eaf3ff;
    color: #0a52db;
    text-decoration: none;
    transform: translateY(-2px);
}

.site-header .nav-login .bi {
    padding: 0;
    border: 0;
    background: transparent;
    color: #1065ff !important;
    font-size: 17px;
}

.nav-resume::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 0 32%, #ffffff40 45%, transparent 58%);
    transform: translateX(-105%);
    transition: transform 0.45s ease;
}

.nav-resume span,
.site-header .nav-resume .bi {
    position: relative;
    z-index: 1;
}

.site-header .nav-resume .bi {
    background: #ffffff;
    color: #0a52db !important;
}

.nav-resume:hover,
.nav-resume:focus {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 20px 34px #1065ff42;
}

.nav-resume:hover::before,
.nav-resume:focus::before {
    transform: translateX(105%);
}

.old-landing {
    display: none !important;
}

/* ═══════════════════════ HERO SECTION ═══════════════════════ */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 140px 7vw 90px;
    background:
        radial-gradient(ellipse 80% 50% at 20% 60%, #1065ff12 0%, transparent 70%),
        radial-gradient(ellipse 60% 40% at 80% 30%, #17e6ae0d 0%, transparent 60%),
        radial-gradient(ellipse 90% 60% at 50% 100%, #1f2baa10 0%, transparent 50%),
        linear-gradient(120deg, #050d1a 0%, #0a1628 30%, #07111f 60%, #050d1a 100%);
}

/* Grain / noise texture overlay */
.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, transparent 0 50%, #1065ff14 50% 68%, transparent 68%),
        linear-gradient(180deg, #17e6ae12, transparent 40%),
        repeating-linear-gradient(90deg, #ffffff06 0 1px, transparent 1px 80px),
        repeating-linear-gradient(0deg, #ffffff04 0 1px, transparent 1px 80px);
    pointer-events: none;
}

/* Animated grain pseudo */
.hero-section::after {
    content: "";
    position: absolute;
    inset: -50%;
    width: 200%;
    height: 200%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    opacity: 0.4;
    pointer-events: none;
    animation: grain 8s steps(10) infinite;
}

@keyframes grain {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-5%, -10%); }
    30% { transform: translate(3%, -15%); }
    50% { transform: translate(12%, 9%); }
    70% { transform: translate(9%, 4%); }
    90% { transform: translate(-1%, 7%); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

@keyframes shimmer {
    0% { transform: translateX(-120%); }
    100% { transform: translateX(120%); }
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 #17e6ae66; }
    50% { opacity: 0.7; transform: scale(0.85); box-shadow: 0 0 0 6px #17e6ae00; }
}

@keyframes particle-float {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(12px, -18px); }
    50% { transform: translate(-8px, -30px); }
    75% { transform: translate(18px, -12px); }
}

/* Floating particle layer */
.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

/* Interactive mouse-reactive canvas (shared by all sections) */
.mouse-canvas,
.hero-mouse-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.hero-particles::before,
.hero-particles::after {
    content: "";
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: transparent;
}

.hero-particles::before {
    top: 15%;
    left: 10%;
    box-shadow:
        0 0 0 1px #17e6ae44,
        120px 80px 0 1px #1065ff33,
        340px 30px 0 0.5px #ffffff22,
        80px 250px 0 1px #17e6ae28,
        520px 120px 0 0.5px #1065ff22,
        700px 60px 0 1px #ffffff18,
        200px 400px 0 0.5px #17e6ae20,
        900px 200px 0 1px #1065ff28,
        450px 350px 0 0.5px #ffffff15,
        650px 450px 0 1px #17e6ae1a;
    animation: particle-float 20s ease-in-out infinite;
}

.hero-particles::after {
    top: 40%;
    right: 15%;
    box-shadow:
        0 0 0 0.5px #1065ff22,
        -100px 60px 0 1px #17e6ae30,
        -280px -40px 0 0.5px #ffffff1a,
        60px 180px 0 1px #1065ff20,
        -400px 90px 0 0.5px #17e6ae18,
        -150px -150px 0 1px #ffffff14,
        120px -100px 0 0.5px #1065ff1a,
        -350px 250px 0 1px #17e6ae14;
    animation: particle-float 25s ease-in-out infinite reverse;
}

.hero-grid {
    position: relative;
    z-index: 1;
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    align-items: center;
    gap: clamp(34px, 6vw, 90px);
}

.hero-copy {
    color: #ffffff;
}

/* Kicker pill with pulsing dot */
.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 22px;
    padding: 8px 16px;
    border: 1px solid #17e6ae30;
    border-radius: 999px;
    background: #17e6ae0a;
    color: #b7fff0;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    animation: kicker-glow 3s ease-in-out infinite;
}

@keyframes kicker-glow {
    0%, 100% { border-color: #17e6ae30; box-shadow: 0 0 0 0 #17e6ae00; }
    50% { border-color: #17e6ae55; box-shadow: 0 0 20px -6px #17e6ae22; }
}

.hero-kicker__dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #17e6ae;
    animation: pulse-dot 2s ease-in-out infinite;
    flex-shrink: 0;
}

/* Heading with gradient accent */
.hero-heading {
    max-width: 780px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(44px, 7vw, 84px);
    line-height: 0.96;
    text-wrap: balance;
}

.hero-heading__accent {
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    -webkit-text-fill-color: initial;
    color: #ffffff;
}

/* Subtitle */
.hero-title {
    max-width: 650px;
    margin: 26px 0 0;
    padding: 0;
    color: #e0ecff;
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 600;
    line-height: 1.7;
    letter-spacing: 0.01em;
    text-wrap: balance;
}

/* Typing effect */
.hero-typing {
    min-height: 34px;
    margin: 16px 0 0;
    color: #17e6ae;
    font-size: 19px;
    font-weight: 800;
    text-shadow: 0 0 18px #17e6ae44, 0 0 40px #17e6ae18;
}

/* Action buttons */
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 50px;
    padding: 13px 26px;
    border-radius: 12px;
    font-weight: 750;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.hero-btn--primary {
    color: #07111f !important;
    background: linear-gradient(135deg, #17e6ae, #12d4a0);
    box-shadow: 0 4px 20px -4px #17e6ae44;
}

/* Shimmer overlay on primary button */
.hero-btn--primary::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        transparent 35%,
        #ffffff50 42%,
        #ffffff70 44%,
        #ffffff50 46%,
        transparent 53%
    );
    transform: translateX(-120%);
    transition: none;
}

.hero-btn--primary:hover {
    background: linear-gradient(135deg, #1bf0b8, #17e6ae);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px -4px #17e6ae55;
}

.hero-btn--primary:hover::before {
    animation: shimmer 0.8s ease forwards;
}

.hero-btn--primary .bi {
    transition: transform 0.3s ease;
    color: #07111f !important;
    background: transparent !important;
    border: none !important;
}

.hero-btn--primary:hover .bi {
    transform: translateX(4px);
}

.hero-btn--ghost {
    color: #ffffff !important;
    background: #ffffff08;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hero-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px -4px #ffffff18;
}

/* Stats row */
.hero-stats {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin-top: 36px;
    padding: 16px 4px;
    border: 1px solid #ffffff14;
    border-radius: 16px;
    background: #ffffff08;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    max-width: 420px;
}

.hero-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    position: relative;
}

.hero-stat + .hero-stat::before {
    content: "";
    position: absolute;
    left: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: #ffffff1a;
}

.hero-stat__number {
    font-size: 26px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff, #d0e0ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-stat__label {
    font-size: 11px;
    font-weight: 600;
    color: #8899bb;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Tags (kept for backward compat) */
.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.hero-tags span {
    padding: 9px 12px;
    border-radius: 999px;
    color: #d9e6ff;
    background: #ffffff0d;
    border: 1px solid #ffffff1c;
    font-size: 13px;
    font-weight: 700;
}

/* Showcase / portrait area */
.hero-showcase {
    position: relative;
    min-height: 560px;
    display: grid;
    place-items: center;
}

.hero-ring {
    position: absolute;
    width: min(430px, 78vw);
    aspect-ratio: 1;
    border-radius: 50%;
    border: 1px solid #ffffff29;
    background:
        conic-gradient(from 140deg, #17e6ae, #1065ff, #ffffff26, #17e6ae),
        radial-gradient(circle, #ffffff14 0 55%, transparent 56%);
    mask: radial-gradient(circle, transparent 0 57%, #000 58%);
    animation: rotate 16s linear infinite;
}

.hero-ring--outer {
    width: min(500px, 90vw);
    border: 1px solid #ffffff14;
    background:
        conic-gradient(from 320deg, #1065ff44, #17e6ae22, #ffffff10, #1065ff44),
        radial-gradient(circle, #ffffff08 0 55%, transparent 56%);
    mask: radial-gradient(circle, transparent 0 57%, #000 58%);
    animation: rotate 22s linear infinite reverse;
    opacity: 0.6;
}

.hero-portrait {
    position: relative;
    z-index: 1;
    width: min(360px, 72vw);
    aspect-ratio: 1;
    object-fit: cover;
    object-position: center;
    border-radius: 34px;
    border: 1px solid #ffffff30;
    background: #ffffff0d;
    box-shadow:
        0 34px 80px #00000061,
        0 0 60px -10px #1065ff33,
        0 0 100px -20px #17e6ae1a;
}

/* Floating info cards */
.hero-card {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 138px;
    padding: 13px 16px;
    border: 1px solid #ffffff30;
    border-radius: 20px;
    background: linear-gradient(135deg, #ffffff1a, #ffffff0d);
    color: #ffffff;
    font-weight: 800;
    box-shadow: 0 20px 50px #00000040;
    backdrop-filter: blur(22px) saturate(1.4);
    -webkit-backdrop-filter: blur(22px) saturate(1.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 56px #00000050, 0 0 20px -4px #1065ff22;
}

.hero-card .bi {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 7px;
    border-radius: 10px;
    border: 0;
    background: #ffffff;
    color: #1065ff !important;
}

.hero-card--top {
    top: 72px;
    right: 6%;
    animation: float 6s ease-in-out infinite;
}

.hero-card--middle {
    left: 2%;
    top: 48%;
    animation: float 6s ease-in-out 2s infinite;
}

.hero-card--bottom {
    right: 11%;
    bottom: 70px;
    animation: float 6s ease-in-out 4s infinite;
}

.section-title {
    padding-top: 150px;
    color: var(--col-9);
    letter-spacing: 0;
    position: relative;
}

.section-title::after {
    content: "";
    display: block;
    width: 72px;
    height: 4px;
    margin: 16px auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, #17e6ae, #1065ff);
}

.projects-section {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: 118px 0 102px;
    background:
        radial-gradient(circle at 50% 16%, #17e6ae38 0, transparent 22rem),
        linear-gradient(180deg, #dff4ff 0%, #eafff8 34%, #f7fbff 78%, transparent 100%);
}

.projects-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(#1065ff10 1px, transparent 1px),
        linear-gradient(90deg, #17e6ae12 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: 0.95;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 68%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 0%, #000 68%, transparent 100%);
    pointer-events: none;
}

.projects-section > .container {
    position: relative;
    z-index: 1;
}

.projects-panel {
    position: relative;
}

.projects-title.section-title,
.experience-title.section-title,
#join-title.section-title,
.updates-title.section-title,
.contact-title.section-title {
    padding-top: 0;
}

.projects-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 7px 14px;
    border: 1px solid #bde7ff;
    border-radius: 999px;
    background: #ffffffbf;
    color: #0a52db;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 12px 28px #0d3d8f12;
}

.projects-quote {
    width: min(680px, 100%);
    margin: 18px auto 0;
    color: #47607e;
    font-size: clamp(14px, 1.6vw, 16px);
    font-weight: 500;
    line-height: 1.6;
    text-wrap: balance;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 42px;
}

.project-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 330px;
    overflow: hidden;
    padding: 26px;
    border: 1px solid #ffffffd8;
    border-radius: 8px;
    background:
        linear-gradient(145deg, #fffffff0, #f6fbffdb),
        radial-gradient(circle at top left, #17e6ae24, transparent 14rem);
    box-shadow: 0 24px 55px #0d3d8f17, inset 0 1px 0 #ffffff;
    transition: box-shadow 0.24s ease, border-color 0.24s ease;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.project-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #17e6ae, #1065ff);
}

.project-card:hover {
    border-color: #bde7ff;
    box-shadow: 0 30px 70px #0d3d8f24, inset 0 1px 0 #ffffff;
}

.project-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}

.project-mark {
    display: grid;
    place-items: center;
    width: 54px;
    aspect-ratio: 1;
    border-radius: 8px;
    background: linear-gradient(135deg, #001345, #1065ff 62%, #17e6ae);
    color: #ffffff;
    box-shadow: 0 16px 34px #1065ff2c;
}

.project-card--qr .project-mark,
.project-card--chat .project-mark {
    background: linear-gradient(135deg, #001345, #1065ff 58%, #17e6ae);
}

.project-label {
    padding: 7px 10px;
    border: 1px solid #d9e8fa;
    border-radius: 999px;
    background: #ffffffcc;
    color: #47607e;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.project-card h3 {
    margin: 0;
    color: var(--col-9);
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 900;
    line-height: 1.12;
}

.project-card p {
    margin: 16px 0 0;
    color: #47607e;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.75;
    opacity: 0.78;
}

.project-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
    padding-top: 26px;
}

.project-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
    transition: box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.project-btn--primary {
    border: 1px solid #052d76;
    background: linear-gradient(135deg, #001345, #1065ff 66%, #17e6ae);
    color: #ffffff;
    box-shadow: 0 16px 30px #1065ff2a;
}

.project-btn--ghost {
    border: 1px solid #cfe0f4;
    background: #ffffffc9;
    color: var(--col-9);
}

.project-btn:hover,
.project-btn:focus {
    text-decoration: none;
}

.project-btn--primary:hover,
.project-btn--primary:focus {
    color: #ffffff;
    box-shadow: 0 20px 34px #1065ff3d;
}

.project-btn--ghost:hover,
.project-btn--ghost:focus {
    background: #e9f4ff;
    color: var(--col-9);
}

.project-card .bi,
.project-card .bi:hover {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: inherit !important;
    font-size: 18px;
    line-height: 1;
}

.project-mark .bi,
.project-mark .bi:hover {
    font-size: 25px;
}

.project-mark img,
.project-logo {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 40px;
    max-height: 40px;
    object-fit: contain;
}

@media (prefers-reduced-motion: reduce) {
    .project-card,
    .project-btn {
        transition: none;
    }
}

@media (max-width: 1100px) {
    .projects-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.updates-section {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: 96px 0 104px;
    background:
        radial-gradient(circle at 50% 50%, rgba(23, 230, 174, 0.12) 0, transparent 22rem),
        linear-gradient(180deg, #f7fbff 0%, #ffffff 48%, #eef5ff 100%);
}

.updates-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(#1065ff0b 1px, transparent 1px),
        linear-gradient(90deg, #17e6ae0c 1px, transparent 1px);
    background-size: 46px 46px;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 16%, #000 86%, transparent 100%);
    mask-image: linear-gradient(180deg, transparent 0%, #000 16%, #000 86%, transparent 100%);
    pointer-events: none;
}

.projects-section::after,
.join-section::after,
.updates-section::after,
.contact-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #bde7ff, transparent);
    z-index: 1;
}

.updates-section > .container {
    position: relative;
    z-index: 1;
}


.updates-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 7px 14px;
    border: 1px solid #bde7ff;
    border-radius: 999px;
    background: #ffffffd8;
    color: #0a52db;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 12px 28px #0d3d8f12;
}

.updates-note {
    width: min(640px, 100%);
    margin: 18px auto 0;
    color: #47607e;
    font-size: clamp(14px, 1.6vw, 16px);
    font-weight: 500;
    line-height: 1.6;
    text-wrap: balance;
}

.updates-feed {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
    align-items: stretch;
    gap: 20px;
    margin-top: 40px;
}

.updates-stack {
    display: grid;
    gap: 16px;
}

.update-card {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 24px;
    border: 1px solid #ffffffd8;
    border-radius: 8px;
    background:
        linear-gradient(145deg, #fffffff2, #f6fbffdc),
        linear-gradient(135deg, #17e6ae16, transparent 58%);
    box-shadow: 0 24px 55px #0d3d8f14, inset 0 1px 0 #ffffff;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.update-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #17e6ae, #1065ff);
}

.update-card--featured {
    min-height: 100%;
    background:
        linear-gradient(145deg, #fffffff4, #eef7ffdf),
        linear-gradient(135deg, #1065ff18, transparent 60%);
}

.update-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
}

.update-icon {
    display: grid;
    place-items: center;
    width: 54px;
    aspect-ratio: 1;
    flex: 0 0 auto;
    border-radius: 8px;
    background: linear-gradient(135deg, #001345, #1065ff 62%, #17e6ae);
    color: #ffffff;
    box-shadow: 0 16px 34px #1065ff2c;
}

.update-icon--soft {
    background: linear-gradient(135deg, #07575f, #17a7e6 60%, #17e6ae);
}

.update-icon--deep {
    background: linear-gradient(135deg, #001345, #1f2baa 58%, #1065ff);
}

.update-card .bi,
.update-card .bi:hover {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: inherit !important;
    font-size: 24px;
    line-height: 1;
}

.update-card__meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    min-width: 0;
}

.update-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    padding: 7px 10px;
    border: 1px solid #cfe0f4;
    border-radius: 999px;
    background: #ffffffcc;
    color: #0a52db;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;
}

.update-badge--notice {
    color: #07575f;
}

.update-badge--tool {
    color: #001345;
}

.update-card time {
    color: #6b7f9b;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
}

.update-card h3 {
    margin: 0;
    color: var(--col-9);
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 900;
    line-height: 1.12;
}

.update-card p {
    margin: 14px 0 0;
    color: #47607e;
    font-size: 15px;
    font-weight: 650;
    line-height: 1.75;
}

@media (max-width: 900px) {
    .updates-section {
        padding: 72px 0 62px;
    }

    .updates-feed {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 30px;
    }

    .update-card {
        padding: 22px;
    }
}

@media (max-width: 420px) {
    .update-card__top {
        flex-direction: column;
        gap: 14px;
    }

    .update-card__meta {
        align-items: flex-start;
    }

    .update-badge {
        white-space: normal;
    }
}
.tool-page-body {
    min-height: 100vh;
    background:
        radial-gradient(circle at 20% 10%, #17e6ae2b 0, transparent 22rem),
        radial-gradient(circle at 80% 0%, #1065ff24 0, transparent 24rem),
        linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.tool-shell {
    width: min(1080px, calc(100% - 32px));
    margin: 0 auto;
    padding: 36px 0 56px;
}

.tool-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 9px 16px;
    border: 1px solid #d9e8fa;
    border-radius: 8px;
    background: #ffffffd8;
    color: var(--col-9);
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 12px 28px #0d3d8f12;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.tool-back i {
    display: inline-block;
    -webkit-text-stroke: 1px;
    transition: transform 0.2s ease;
}

.tool-back:hover,
.tool-back:focus {
    color: #1065ff;
    border-color: #1065ff;
    background: #ffffff;
    text-decoration: none;
    outline: none;
}

.tool-back:hover i,
.tool-back:focus i {
    transform: translateX(-4px);
}



.tool-hero {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 22px;
    padding: 44px 0 32px;
}

.tool-hero h1 {
    margin: 0;
    color: var(--col-9);
    font-size: clamp(38px, 8vw, 84px);
    font-weight: 900;
    line-height: 1;
}

.tool-hero p {
    max-width: 680px;
    margin: 14px 0 0;
    color: #47607e;
    font-size: 17px;
    font-weight: 650;
    line-height: 1.7;
}

.tool-mark {
    display: grid;
    place-items: center;
    width: 76px;
    aspect-ratio: 1;
    border-radius: 8px;
    background: linear-gradient(135deg, #001345, #1065ff 62%, #17e6ae);
    color: #ffffff;
    box-shadow: 0 18px 42px #1065ff2c;
}

.tool-workspace {
    min-height: 420px;
    padding: 22px;
    border: 1px solid #ffffffd8;
    border-radius: 8px;
    background:
        linear-gradient(145deg, #fffffff0, #f6fbffdb),
        linear-gradient(#1065ff0f 1px, transparent 1px),
        linear-gradient(90deg, #17e6ae12 1px, transparent 1px);
    background-size: auto, 36px 36px, 36px 36px;
    box-shadow: 0 24px 55px #0d3d8f17, inset 0 1px 0 #ffffff;
}

.tool-placeholder {
    display: grid;
    place-items: center;
    align-content: center;
    min-height: 370px;
    padding: 32px;
    border: 1px dashed #bde7ff;
    border-radius: 8px;
    background: #ffffffb8;
    text-align: center;
}

.tool-placeholder h2 {
    margin: 16px 0 8px;
    color: var(--col-9);
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 900;
}

.tool-placeholder p {
    max-width: 560px;
    margin: 0;
    color: #47607e;
    font-weight: 650;
    line-height: 1.7;
}

.tool-page-body .bi,
.tool-page-body .bi:hover {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: inherit !important;
    font-size: 22px;
    line-height: 1;
}

.tool-mark .bi,
.tool-mark .bi:hover {
    font-size: 34px;
}


.contact-section {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: 96px 0;
    background:
        radial-gradient(circle at 50% 50%, rgba(16, 101, 255, 0.12) 0, transparent 22rem),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.contact-section > .container {
    position: relative;
    z-index: 1;
}

.contact-header {
    width: min(720px, 100%);
    margin: 0 auto 34px;
}

.contact-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 12px;
    padding: 7px 14px;
    border: 1px solid #bde7ff;
    border-radius: 999px;
    background: #ffffffd8;
    color: #0a52db;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 12px 28px #0d3d8f12;
}

.contact-title {
    margin: 0;
}

.contact-note {
    max-width: 620px;
    margin: 20px auto 0;
    color: #47607e;
    font-size: clamp(14px, 1.6vw, 16px);
    font-weight: 500;
    line-height: 1.6;
    text-wrap: balance;
}

.contact-panel {
    display: grid;
    grid-template-columns: minmax(260px, 0.85fr) minmax(320px, 1.15fr);
    gap: 22px;
    width: min(980px, 100%);
    margin: 0 auto;
    padding: 22px;
    border: 1px solid #ffffffd8;
    border-radius: 8px;
    background: linear-gradient(145deg, #fffffff0, #f6fbffdb);
    box-shadow: 0 24px 60px #0d3d8f16, inset 0 1px 0 #ffffff;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.contact-info {
    display: grid;
    gap: 12px;
    align-content: start;
}

.contact-info,
.contact-form-wrap {
    min-width: 0;
}

.contact-link {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    min-height: 76px;
    padding: 14px;
    border: 1px solid #dcefff;
    border-radius: 8px;
    background: linear-gradient(135deg, #eef8ff, #f3fffb);
    color: var(--col-8);
    font-weight: 700;
    text-align: left;
    text-decoration: none;
    transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.contact-link strong {
    display: block;
    margin-bottom: 2px;
    color: var(--col-9);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.contact-link span {
    min-width: 0;
    overflow-wrap: anywhere;
    color: #47607e;
    font-size: 14px;
    line-height: 1.45;
}

.contact-link:hover,
.contact-link:focus {
    border-color: #bde7ff;
    background: #ffffff;
    color: var(--col-6);
    box-shadow: 0 14px 26px #1065ff16;
    text-decoration: none;
}

.contact-link .bi,
.contact-link .bi:hover,
.contact-link:hover .bi,
.contact-link:focus .bi {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    border-radius: 8px;
    background: linear-gradient(135deg, #1065ff, #17e6ae);
    color: #ffffff !important;
    font-size: 18px;
    line-height: 1;
}

.contact-form-wrap {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 18px;
    border: 1px solid #dcefff;
    border-radius: 8px;
    background:
        linear-gradient(145deg, #ffffffd8, #f4fbffcc),
        linear-gradient(#1065ff0d 1px, transparent 1px),
        linear-gradient(90deg, #17e6ae10 1px, transparent 1px);
    background-size: auto, 34px 34px, 34px 34px;
}

.contact-panel .form {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: flex-start;
    gap: 14px;
    width: 100%;
    max-width: none;
    min-height: 100%;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    line-height: 1.4;
}

.contact-panel .form input,
.contact-panel .form textarea {
    border-radius: 8px;
    background: #ffffff;
    color: var(--col-4) !important;
    font-weight: 650;
    box-shadow: inset 0 1px 0 #ffffff;
}

.contact-panel .form input:focus,
.contact-panel .form textarea:focus {
    border-color: #9edaff !important;
    box-shadow: 0 0 0 4px #1065ff14;
}

.contact-panel .form textarea {
    flex-grow: 1;
    min-height: 156px;
}

.contact-panel .form .submit-btn {
    align-self: stretch;
    width: 100%;
    justify-content: center;
}

.notice-ticker {
    padding: 0;
    background: linear-gradient(135deg, #001345, #0a52db);
    position: relative;
}

.notice-ticker::before,
.notice-ticker::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #0a52db88, transparent);
}

.notice-ticker::before {
    top: 0;
}

.notice-ticker::after {
    bottom: 0;
}

.notice-ticker__shell {
    width: 100%;
    margin: 0;
    overflow: hidden;
}

.notice-ticker__header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 0 12px;
}

.notice-ticker__badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    background: #17e6ae24;
    border: 1px solid #17e6ae44;
    border-radius: 999px;
    color: #17e6ae;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.notice-ticker__date {
    color: #ffffffcc;
    font-family: 'Encode Sans Expanded', Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 500;
}

.notice-ticker__track {
    display: flex;
    animation: notice-ticker-scroll 25s linear infinite;
    padding: 8px 0;
}

.notice-ticker__group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.notice-ticker__item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: max-content;
    padding: 8px 14px;
    border: 1px solid rgba(23, 230, 174, 0.4);
    border-radius: 999px;
    background: rgba(23, 230, 174, 0.12);
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.notice-ticker__item:hover {
    background: rgba(23, 230, 174, 0.2);
    border-color: #17e6ae;
}

.notice-ticker__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #17e6ae24;
    border: 1px solid #17e6ae44;
    flex-shrink: 0;
}

.notice-ticker__icon .bi {
    color: #17e6ae !important;
    font-size: 14px;
    margin: 0;
}

@keyframes notice-ticker-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .notice-ticker__track {
        animation: none;
    }

    .notice-ticker__group {
        justify-content: center;
        flex-wrap: wrap;
        margin: 8px;
    }

    .notice-ticker__group[aria-hidden="true"] {
        display: none;
    }
}

/* ===== FOOTER LAYOUT ===== */
.footer-top,
.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.footer-brand,
.footer-links,
.footer-tools {
    flex: 1 1 0;
}

.footer-brand {
    flex: 1.5 1 0;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 18px;
}

.footer-links,
.footer-tools {
    display: grid;
    align-content: start;
    justify-items: start;
    gap: 10px;
}

.footer-links h3,
.footer-tools h3 {
    margin: 0 0 6px;
    color: #cbd5e1;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer-links a,
.footer-tools a {
    color: #7a8ba5;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.footer-links a:hover,
.footer-tools a:hover {
    color: #e2e8f0;
    transform: translateX(5px);
}

.footer-credit {
    margin: 0;
    color: #4a5568;
    font-size: 12px;
    font-weight: 600;
}

/* desktop */
@media screen and (min-width: 900px) {
    .only-desktop {
        display: block;
    }

    .only-mobile {
        display: none;
    }

}

/* mobile */
@media screen and (max-width: 900px) {
    .only-desktop {
        display: none;
    }

    .only-mobile {
        display: block;
    }

    .center-image {
        width: 100%;
    }
}

/*Extra font*/
.dela {
    font-family: "Dela Gothic One", sans-serif;
    font-weight: 400;
    font-style: normal;
  }

    /*---preloader---*/
    .preloader {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: var(--col-2);
      z-index: 1000;
      display: flex;
      justify-content: center;
      align-items: center;
      opacity: 1;
      transition: opacity 1s ease-out;
    }
   
    .progress {
      height: 1%;
      width: 15%;
      background: linear-gradient(#1065ff 0 0), linear-gradient(#17e6ae 0 0), #dbdcef;
      background-size: 60% 100%;
      background-repeat: no-repeat;
      animation: progress-7x9cg2 3s infinite;
    }
    
    @keyframes progress-7x9cg2 {
      0% {
        background-position: -150% 0,-150% 0;
      }
      66% {
        background-position: 250% 0,-150% 0;
      }
      100% {
        background-position: 250% 0, 250% 0;
      }
    }
    
/*!
 *
 * bttn.css - https://ganapativs.github.io/bttn.css
 * Version - 0.2.4
 * Demo: https://bttn.surge.sh
 *
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Ganapati V S (@ganapativs)
 *
 */
/* standalone - .bttn-unite */

/* ── QR generator workspace layout ── */
.qr-workspace-inner {
    display: grid;
    grid-template-columns: 340px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

/* ── Controls panel ── */
.qr-controls {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 24px 22px 22px;
    border: 1px solid #ffffffd8;
    border-radius: 8px;
    background:
        linear-gradient(145deg, #fffffff0, #f6fbffdb),
        radial-gradient(circle at top left, #17e6ae24, transparent 14rem);
    box-shadow: 0 24px 55px #0d3d8f17, inset 0 1px 0 #ffffff;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.qr-controls::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #17e6ae, #1065ff);
    border-radius: 8px 8px 0 0;
    pointer-events: none;
}

.qr-controls label {
    display: block;
    margin-top: 12px;
    color: var(--col-9);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.qr-controls label:first-child {
    margin-top: 0;
}

.qr-controls input,
.qr-controls select {
    box-sizing: border-box;
    width: 100%;
    padding: 10px 12px;
    margin-top: 4px;
    border: 1px solid #dbe7fb;
    border-radius: 8px;
    background: #ffffff;
    color: var(--col-4);
    font-family: inherit;
    font-size: 14px;
    font-weight: 650;
    box-shadow: inset 0 1px 0 #ffffff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.qr-controls input:focus,
.qr-controls select:focus {
    border-color: #9edaff !important;
    outline: 0;
    box-shadow: 0 0 0 4px #1065ff14;
}

.qr-controls select {
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='%2300278c'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2300278c' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 34px;
    cursor: pointer;
}

.qr-controls input[type="color"] {
    height: 42px;
    padding: 3px;
    cursor: pointer;
}

.qr-controls input[type="checkbox"] {
    width: auto;
    margin-right: 6px;
    accent-color: var(--col-6);
}

.qr-controls .checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    padding: 10px 12px;
    border: 1px solid #dcefff;
    border-radius: 8px;
    background: #ffffffb8;
    text-transform: none;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.qr-controls .checkbox-label:hover {
    background: #e9f4ff;
    border-color: #bde7ff;
}

.qr-controls .checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
}

.qr-controls input[type="color"]:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

/* ── Buttons ── */
.qr-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.03em;
    text-decoration: none;
    cursor: pointer;
    transition: box-shadow 0.22s ease, transform 0.22s ease, background 0.22s ease;
}

.qr-btn--primary {
    overflow: hidden;
    background: linear-gradient(135deg, #001345, #1065ff 66%, #17e6ae);
    color: #ffffff;
    box-shadow: 0 16px 30px #1065ff2a;
}

.qr-btn--primary::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 0 32%, #ffffff40 45%, transparent 58%);
    transform: translateX(-105%);
    transition: transform 0.45s ease;
}

.qr-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 34px #1065ff3d;
}

.qr-btn--primary:hover::before {
    transform: translateX(105%);
}

.qr-btn--primary:active {
    transform: scale(0.97);
}

.qr-btn--ghost {
    border: 1px solid #cfe0f4;
    background: #ffffffc9;
    color: var(--col-9);
}

.qr-btn--ghost:hover {
    background: #e9f4ff;
    color: var(--col-9);
    border-color: #bde7ff;
}

.qr-btn--ghost:active {
    transform: scale(0.97);
}

.qr-btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.qr-btn-row .qr-btn {
    flex: 1 1 auto;
}

/* ── QR preview area ── */
.qr-output {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 340px;
    padding: 28px;
    border: 1px solid #ffffffd8;
    border-radius: 8px;
    background:
        linear-gradient(145deg, #fffffff0, #f6fbffdb),
        radial-gradient(circle at 20% 80%, #1065ff12, transparent 18rem),
        radial-gradient(circle at 80% 20%, #17e6ae18, transparent 16rem),
        linear-gradient(#1065ff0f 1px, transparent 1px),
        linear-gradient(90deg, #17e6ae12 1px, transparent 1px);
    background-size: auto, auto, auto, 36px 36px, 36px 36px;
    box-shadow: 0 24px 55px #0d3d8f17, inset 0 1px 0 #ffffff;
    overflow: hidden;
}

.qr-output canvas,
.qr-output img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 12px 40px #0d3d8f1a, 0 0 0 1px #ffffff;
}

/* ── Empty state ── */
.qr-output-empty {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 16px;
    width: 100%;
    min-height: 280px;
    border: 1px dashed #bde7ff;
    border-radius: 8px;
    background: #ffffffb8;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #47607e;
    font-size: 15px;
    font-weight: 650;
    text-align: center;
    transition: opacity 0.3s ease;
}

.qr-output-empty .bi {
    font-size: 52px;
    color: #bde7ff !important;
}

.qr-output-empty span {
    display: block;
    max-width: 240px;
    line-height: 1.65;
}

.qr-output-empty strong {
    color: var(--col-9);
}

/* ── Logo row ── */
.logo-row {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-top: 4px;
}

.logo-row input[type="file"] {
    box-sizing: border-box;
    flex: 1;
    min-width: 0;
    padding: 6px 8px;
    font-size: 13px;
}

.logo-row .qr-btn {
    flex: 0 0 auto;
    min-height: 40px;
    padding: 6px 16px;
    font-size: 13px;
}

/* ── QR responsive ── */
@media (max-width: 820px) {
    .qr-workspace-inner {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .qr-output {
        min-height: 280px;
        padding: 20px;
    }

    .qr-output-empty {
        min-height: 220px;
    }
}

@media (max-width: 420px) {
    .qr-controls {
        padding: 18px 16px 16px;
    }

    .qr-btn-row {
        flex-direction: column;
    }

    .qr-btn {
        width: 100%;
    }

    .logo-row {
        flex-direction: column;
    }

    .logo-row input[type="file"] {
        width: 100%;
    }
}

/*
on hover button design css from - https://uiverse.io/JaydipPrajapati1910/red-dingo-88
*/
.underline-blue {
    color: var(--col-9);
    font-family: inherit;
    font-weight: 700;
    letter-spacing: 0.05em;
    cursor: pointer;
    position: relative;
    border: none;
    background: none;
    text-transform: none;
    padding: 7px 8px;
    transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
    transition-duration: 400ms;
    transition-property: color;
  }
  
  .underline-blue:focus,
  .underline-blue:hover {
    color: var(--col-6);
  }
  
  .underline-blue:focus:after,
  .underline-blue:hover:after {
    width: 100%;
    left: 0%;
  }
  
  .underline-blue:after {
    content: "";
    pointer-events: none;
    bottom: -2px;
    left: 50%;
    position: absolute;
    width: 0%;
    height: 2px;
    background-color: var(--col-6);
    transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
    transition-duration: 400ms;
    transition-property: width, left;
  }

  .cta {
    position: relative;
    padding: 7px 18px;
    transition: all 0.2s ease;
    border: none;
    background: none;
    cursor: pointer;
  }
  
  .cta:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50px;
    background: linear-gradient(135deg, #dfeaff, #ebfffa);
    width: 40px;
    height: 40px;
    transition: all 0.3s ease;
  }
  
  .cta span {
    position: relative;
    font-family: inherit;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--col-8);
  }
  
  .cta svg {
    position: relative;
    top: 0;
    margin-left: 10px;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke: var(--col-8);
    stroke-width: 2;
    transform: translateX(-5px);
    transition: all 0.3s ease;
  }
  
  .cta:hover:before {
    width: 100%;
    background: linear-gradient(135deg, #dfeaff, #ebfffa);
  }
  
  .cta:hover svg {
    transform: translateX(0);
    stroke: var(--col-6)
  }
  
  .cta:hover span {
    color: var(--col-6) !important;
  }

  .cta:active {
    transform: scale(0.95);
  }
  
/*new div
.lndg-bg {
    width: 100%;
  height: 100%;
  position: relative;
  --color: #1a1a1a;
  background-color: #141414;
  background-image: linear-gradient(0deg, transparent 24%, var(--color) 25%, var(--color) 26%, transparent 27%,transparent 74%, var(--color) 75%, var(--color) 76%, transparent 77%,transparent),
      linear-gradient(90deg, transparent 24%, var(--color) 25%, var(--color) 26%, transparent 27%,transparent 74%, var(--color) 75%, var(--color) 76%, transparent 77%,transparent);
  background-size: 55px 55px;
}*/

/*landing gradient*/
@keyframes rotate {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }

.gradient {
    position: absolute;
    display: flex;
    overflow: hidden;
    --size: 200px;
    --speed: 15s;
    --easing: cubic-bezier(0.8, 0.2, 0.2, 0.8);
    width: var(--size);
    height: var(--size);
    filter: blur(calc(var(--size) / 5));
    background-image: linear-gradient(#37eba9d9, #5b37eb);
    animation: rotate var(--speed) var(--easing) alternate infinite;
    border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
}
  
  @media (min-width: 720px) {
    .gradient {
      --size: 500px;
    }
  }

/* FIX: universal transition removed — it broke AOS animations and caused layout jank.
   Transitions are now scoped per component. */

/* ── Steganography Suite - Hacker UI ── */
.stego-workspace-inner {
    display: grid;
    grid-template-columns: 380px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}
.stego-controls {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 24px 22px 22px;
    border: 1px solid #39ff14;
    border-radius: 8px;
    background: linear-gradient(145deg, #0b0f0b, #050805);
    box-shadow: 0 0 20px #39ff1440, inset 0 0 12px #39ff1420;
    font-family: "Courier New", monospace;
}
.stego-controls::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #39ff14, #00ff88);
    border-radius: 8px 8px 0 0;
}
.stego-controls label {
    margin-top: 12px;
    color: #39ff14;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.stego-controls input, .stego-controls textarea {
    width: 100%;
    padding: 10px 12px;
    margin-top: 4px;
    border: 1px solid #0f1a0f;
    border-radius: 6px;
    background: #0d130d;
    color: #39ff14;
    font-family: inherit;
    font-size: 14px;
    box-shadow: inset 0 0 8px #39ff1410;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.stego-controls input:focus, .stego-controls textarea:focus {
    border-color: #39ff14;
    outline: 0;
    box-shadow: 0 0 0 4px #39ff1440;
}
.stego-controls textarea { min-height: 110px; resize: none; }
.stego-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: box-shadow 0.22s ease, transform 0.22s ease, background 0.22s ease;
}
.stego-btn--primary {
    background: linear-gradient(135deg, #0f1a0f, #003300);
    color: #39ff14;
    box-shadow: 0 0 12px #39ff1440;
}
.stego-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px #39ff1460;
}
.stego-btn--ghost {
    background: #0d130d;
    border: 1px solid #0f1a0f;
    color: #39ff14;
}
.stego-btn--ghost:hover {
    background: #0f1a0f;
    border-color: #39ff14;
}
.stego-btn--danger {
    background: linear-gradient(135deg, #2a0505, #5c1111);
    color: #ff6b6b;
    box-shadow: 0 0 12px #ff3b3b33;
}
.stego-btn--danger:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #3a0808, #761717);
    color: #ff9a9a;
    box-shadow: 0 0 20px #ff3b3b4d;
}
.stego-global-actions {
    display: flex;
    justify-content: center;
    margin-top: 16px;
}
.stego-log {
    height: 140px;
    margin-top: 14px;
    padding: 12px;
    border: 1px solid #0f1a0f;
    border-radius: 6px;
    background: #050805;
    color: #39ff14;
    font-family: "Courier New", monospace;
    font-size: 12px;
    overflow-y: auto;
}
.stego-controls .progress {
    width: 100%;
    height: 10px !important;
    margin-top: 10px !important;
    overflow: hidden;
    border: 1px solid #0f1a0f;
    border-radius: 999px;
    background: #050805;
    box-shadow: inset 0 0 8px #39ff1418;
}
.stego-controls .progress-bar {
    min-width: 0;
    background: linear-gradient(90deg, #39ff14, #00ff88) !important;
    box-shadow: 0 0 14px #39ff1466;
    color: transparent;
    transition: width 0.12s linear;
}
.stego-progress {
    min-height: 16px;
    margin-top: 7px;
    color: #00ff88;
    font-family: "Courier New", monospace;
    font-size: 12px;
    line-height: 1.35;
}
@media (max-width: 820px) {
    .stego-workspace-inner { grid-template-columns: 1fr; gap: 20px; }
}
@media (max-width: 420px) {
    .stego-controls { padding: 18px 16px 16px; }
    .stego-btn { width: 100%; }
}


/*-----------------------------*/

.typing {
  color: white;
  margin: auto;
}
.typing-underscore {
    display:inline-block;
  top:-0.14em;
  left:10px;
}

/*#lndg {
    font-family: inherit;
    font-weight: 300px;
    color: #1065ff;
}*/


/********** common setting **********/
h2 {
    font-size: 2.8rem !important;
    font-weight: 700;
}

img {
    display: block;
    max-width: 100%;
}

a, button {
    cursor: pointer;
}

.jumbotron {
    margin-bottom: 0 !important;
}

.atlas-cta {
    border-radius: 22px !important;
    padding: 12px 30px !important;
    font-weight: 700;
    transition: .3s ease-in-out !important;
}

    .atlas-cta:hover {
        text-decoration: none;
        transform: translateY(-5px);
    }


#banner {
    background-size: cover;
}
/********** banner **********/
    #banner header {
        overflow: hidden;
    }

        #banner header img {
            max-width: 80px;
        }

/********** Join / Communities Section (Glassmorphic Redesign) **********/
.join-section {
    position: relative;
    padding: 100px 0 110px;
    background:
        radial-gradient(circle at 50% 12%, rgba(16, 101, 255, 0.12) 0, transparent 22rem),
        linear-gradient(180deg, #f7fbff 0%, #eef5ff 100%);
    overflow: hidden;
    isolation: isolate;
}

.join-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(#1065ff06 1px, transparent 1px),
        linear-gradient(90deg, #17e6ae08 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: 0.95;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 70%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 0%, #000 70%, transparent 100%);
    pointer-events: none;
}

.join-section > .container {
    position: relative;
    z-index: 1;
}

.join-header .join-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 7px 14px;
    border: 1px solid #bde7ff;
    border-radius: 999px;
    background: #ffffffbf;
    color: #0a52db;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 12px 28px #0d3d8f12;
}

.join-quote {
    font-family: "Encode Sans Expanded", Arial, sans-serif !important;
    color: #47607e;
    font-size: clamp(14px, 1.6vw, 16px);
    font-weight: 500;
    line-height: 1.6;
    max-width: 600px;
    margin: 10px auto 48px;
    text-wrap: balance;
}

/* --- GRID LAYOUT --- */
.join-layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 36px;
    max-width: 1140px;
    margin: 0 auto;
    align-items: stretch;
}

.join-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
    border: 1px solid #ffffffd8;
    border-radius: 12px;
    background:
        linear-gradient(145deg, #fffffff0, #f6fbffdb),
        radial-gradient(circle at top left, #17e6ae24, transparent 14rem);
    box-shadow: 0 24px 55px #0d3d8f12, inset 0 1px 0 #ffffff;
    transition: box-shadow 0.24s ease, border-color 0.24s ease, transform 0.24s ease;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    text-decoration: none;
    color: inherit;
}

.join-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #17e6ae, #1065ff);
    border-radius: 12px 12px 0 0;
}

.join-card:hover {
    border-color: #bde7ff;
    box-shadow: 0 30px 70px #0d3d8f1e, inset 0 1px 0 #ffffff;
    transform: translateY(-4px);
}

.hub-logo {
    width: auto;
    height: 54px;
    max-width: min(240px, 100%);
    margin-bottom: 20px;
}

.brand-badge {
    align-self: flex-start;
    font-size: 11px;
    font-weight: 900;
    color: #1065ff;
    letter-spacing: 0.15em;
    background: #eef5ff;
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 20px;
    border: 1px solid #cfe2ff;
}

.hub-desc {
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.tribe-runes {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: auto;
}

.hub-card .card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.hub-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 20px 0 30px;
    background: rgba(255, 255, 255, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    padding: 18px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hub-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.hub-feature-item .feature-icon {
    flex: 0 0 36px;
    height: 36px;
    background: #1065ff;
    color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(16, 101, 255, 0.15);
}

.hub-feature-item .feature-text h4 {
    margin: 0 0 2px;
    font-size: 0.92rem;
    font-weight: 850;
    color: #001345;
    font-family: "Encode Sans Expanded", Arial, sans-serif !important;
}

.hub-feature-item .feature-text p {
    margin: 0;
    font-size: 0.8rem;
    color: #4b5563;
    line-height: 1.4;
    font-family: "Encode Sans Expanded", Arial, sans-serif !important;
}

.rune {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 6px 14px;
    font-size: 0.85rem;
    font-weight: 800;
    color: #1f2937;
    box-shadow: 0 2px 4px rgba(13, 61, 143, 0.04);
}

/* Redesigned Communities Grid Layout */
.join-grid-top {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 30px;
    max-width: 1140px;
    margin: 0 auto 30px;
    align-items: stretch;
}

.join-grid-bottom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1140px;
    margin: 0 auto;
}

/* Large Spotify Card */
.spotify-card-large {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 30px;
}

.spotify-card-large .card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.spotify-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.spotify-title-block {
    flex: 1;
    min-width: 0;
}

.spotify-title-block h3 {
    font-size: 1.35rem;
    font-weight: 900;
    color: #001345;
    margin: 0 0 4px;
    font-family: "Encode Sans Expanded", Arial, sans-serif !important;
}

.spotify-desc {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.5;
    margin: 0 0 24px;
    font-family: "Encode Sans Expanded", Arial, sans-serif !important;
}

.spotify-embed-container {
    border-radius: 12px;
    overflow: hidden;
    background: #000000;
    margin-top: auto;
}

/* Bottom Row Simple Platform Cards */
.platform-card-simple {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 26px;
}

.platform-card-simple .platform-icon-wrap {
    margin-bottom: 8px;
}

.platform-card-simple h3 {
    font-size: 1.15rem;
    font-weight: 850;
    margin: 0;
    color: #001345;
    font-family: "Encode Sans Expanded", Arial, sans-serif !important;
}

.platform-card-simple p {
    font-size: 0.85rem;
    color: #4b5563;
    line-height: 1.45;
    margin: 0;
    flex-grow: 1;
    font-family: "Encode Sans Expanded", Arial, sans-serif !important;
}

.platform-card-simple .platform-btn {
    margin-top: 10px;
}

/* Icon / Button Base Styles */
.platform-icon-wrap {
    flex: 0 0 54px;
    height: 54px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none !important;
    box-shadow: none !important;
    transition: none !important;
}

.platform-icon-wrap svg {
    width: 100%;
    height: 100%;
    display: block;
}

.platform-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 800;
    color: #1065ff;
    font-family: "Encode Sans Expanded", Arial, sans-serif !important;
    transition: gap 0.2s ease;
    text-decoration: none;
}

.platform-card-simple:hover .platform-btn,
.spotify-card-large:hover .platform-btn {
    gap: 10px;
}

/* Brand Accent Borders/Lines */
.discord-card::before {
    background: linear-gradient(180deg, #5865F2, #4752C4);
}
.discord-card .platform-btn {
    color: #5865F2;
}

.telegram-card::before {
    background: linear-gradient(180deg, #24A1DE, #1D80B0);
}
.telegram-card .platform-btn {
    color: #24A1DE;
}

.instagram-card::before {
    background: linear-gradient(180deg, #EE2A7B, #F9CE34);
}
.instagram-card .platform-btn {
    color: #EE2A7B;
}

.spotify-card-large::before {
    background: linear-gradient(180deg, #1DB954, #19a34a);
}
.spotify-card-large .platform-btn {
    color: #1DB954;
}

/* Spotify Tabs Switcher styling */
.spotify-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.spotify-tab {
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: #455571;
    padding: 6px 14px;
    font-size: 0.8rem;
    font-weight: 800;
    border-radius: 999px;
    cursor: pointer;
    font-family: "Encode Sans Expanded", Arial, sans-serif !important;
    transition: all 0.2s ease;
}

.spotify-tab:hover {
    background: rgba(29, 185, 84, 0.1);
    color: #1DB954;
    border-color: rgba(29, 185, 84, 0.2);
}

.spotify-tab.active {
    background: #1DB954;
    color: #ffffff;
    border-color: #1DB954;
    box-shadow: 0 4px 10px rgba(29, 185, 84, 0.2);
}

/********** contact **********/
#contact {
    background-size: cover;
    background:
        radial-gradient(circle at top right, #cfe0ff 0, transparent 28rem),
        linear-gradient(180deg, #eef5ff 0%, #f8fbff 100%) !important;
}

    #contact ul li {
        padding: 3px 0;
    }

    #contact .form {
        color: #1065ff;
    }

        #contact .form input, #contact .form textarea {
            background: #fff;
            border: 1px solid #dbe7fb;
            color: var(--col-4);
        }

/********** ftr — dark premium footer **********/
.ftr {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #0a0e1a 0%, #060a14 100%);
    padding: 48px 0 24px;
}

.ftr::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(16, 101, 255, 0.25), transparent);
    z-index: 1;
}

/* ===== GLOW ACCENT ===== */
.footer-glow {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 220px;
    background: radial-gradient(ellipse at center, rgba(16, 101, 255, 0.25) 0%, rgba(16, 101, 255, 0.08) 40%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    filter: blur(30px);
}

.ftr .footer-top {
    position: relative;
    z-index: 1;
    align-items: flex-start;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.footer-brand img {
    width: min(210px, 100%);
    height: auto;
    margin-bottom: 14px;
    filter: invert(31%) sepia(93%) saturate(3665%) hue-rotate(214deg) brightness(101%) contrast(108%) drop-shadow(0 0 10px rgba(16, 101, 255, 0.45));
}

.footer-brand p {
    max-width: 380px;
    margin: 0;
    color: #7a8ba5;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.75;
}

/* ===== FOOTER SOCIAL — glassmorphic circles ===== */
.ftr .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(16, 101, 255, 0.3);
    background: rgba(16, 101, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.35s ease;
    text-decoration: none;
}

.ftr .footer-social a:hover {
    background: rgba(16, 101, 255, 0.2);
    border-color: rgba(16, 101, 255, 0.6);
    box-shadow: 0 0 20px rgba(16, 101, 255, 0.35), 0 0 40px rgba(16, 101, 255, 0.15);
    transform: scale(1.12);
}

/* Scoped icon overrides — does NOT affect navbar .bi */
.ftr .footer-social .bi {
    padding: 0;
    font-size: 16px;
    color: #93b4e8 !important;
    background-color: transparent;
    border: none;
    border-radius: 0;
    transition: color 0.3s ease;
}

.ftr .footer-social .bi:hover {
    color: var(--col-white) !important;
    background-color: transparent;
    border: none;
}

/* ===== FOOTER BOTTOM ===== */
.ftr .footer-bottom {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* LEFT TEXT */
.ftr .footer-text {
    color: #6c7b95;
    font-size: 12px;
    font-weight: 600;
    margin: 0;
}

/* RIGHT TEXT */
.ftr .footer-credit {
    color: #6c7b95;
    font-size: 12px;
    font-weight: 600;
    margin: 0;
    text-align: right;
}

/* ===== MOBILE (≤600px) ===== */
@media (max-width: 600px) {
    .ftr .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .ftr .footer-credit {
        text-align: center;
    }
}

/* ===== .fbn — glowing brand name ===== */
.ftr .fbn {
    color: #1065ff;
    text-shadow: 0 0 12px rgba(16, 101, 255, 0.5), 0 0 24px rgba(16, 101, 255, 0.2);
    transition: text-shadow 0.3s ease, color 0.3s ease;
}
.ftr .fbn:hover {
    color: #4d94ff;
    text-shadow: 0 0 18px rgba(16, 101, 255, 0.7), 0 0 36px rgba(16, 101, 255, 0.3);
    cursor: pointer;
}

/********** RWD **********/
@media (max-width: 575px) {
    #banner h1 {
        font-size: 3.6rem;
    }
}

@media (max-width: 900px) {
    .nav-toggle {
        display: flex;
    }

    /* Animate hamburger to X when open */
    .nav-toggle.is-open {
        background: #1065ff;
        border-color: #1065ff;
        box-shadow: 0 6px 18px rgba(16, 101, 255, 0.3);
    }
    .nav-toggle.is-open .nav-toggle__bar {
        background-color: #ffffff;
    }
    .nav-toggle.is-open .nav-toggle__bar:nth-child(1) {
        transform: translateY(0) rotate(45deg);
    }
    .nav-toggle.is-open .nav-toggle__bar:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }
    .nav-toggle.is-open .nav-toggle__bar:nth-child(3) {
        transform: translateY(0) rotate(-45deg);
    }

    .site-header {
        position: sticky;
        top: 0;
        left: 0;
        right: 0;
        padding: 0;
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(16, 101, 255, 0.08);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
        z-index: 100;
        pointer-events: auto;
    }

    .site-header__inner {
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px !important;
        border: none !important;
        border-radius: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    .nav-brand {
        padding: 4px 0;
    }

    .nav-brand__logo {
        height: 38px;
        max-width: min(230px, 80vw);
    }

    /* Menu wrapper serves as the slide-down drawer */
    .site-header__menu-wrapper {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 16px;
        padding: 24px 20px;
        border: none !important;
        border-bottom: 1px solid rgba(16, 101, 255, 0.08) !important;
        border-radius: 0 0 24px 24px !important;
        background: rgba(255, 255, 255, 0.98) !important;
        box-shadow: 0 20px 40px rgba(0, 19, 69, 0.08) !important;
        backdrop-filter: blur(30px) !important;
        -webkit-backdrop-filter: blur(30px) !important;
        transform: translateY(-15px);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
        z-index: 25;
    }

    .site-header__menu-wrapper.is-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .site-header__nav {
        flex-direction: column;
        width: 100% !important;
        border: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        padding: 0 !important;
        gap: 8px !important;
    }

    .nav-link-node {
        width: 100%;
        justify-content: flex-start !important;
        padding: 10px 16px !important;
        border-radius: 12px !important;
        background-color: rgba(16, 101, 255, 0.04) !important;
    }

    .nav-link-node:hover,
    .nav-link-node.is-active {
        background-color: #e9f4ff !important;
        color: var(--col-9) !important;
    }

    /* Adjust dropdown menu inside mobile view */
    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown__trigger {
        width: 100%;
        justify-content: flex-start !important;
    }

    .nav-dropdown__menu {
        position: static !important;
        box-shadow: none !important;
        border: 1px solid #d9e8fa !important;
        background-color: rgba(255, 255, 255, 0.8) !important;
        margin-top: 6px !important;
        width: 100% !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        display: none;
    }

    .nav-dropdown.is-active .nav-dropdown__menu {
        display: block;
    }

    .nav-actions {
        width: 100% !important;
        flex-direction: column;
        gap: 8px;
        margin-top: 8px;
        padding-top: 16px;
        border-top: 1px solid #d9e8fa;
        justify-content: center;
    }

    .nav-login,
    .nav-resume {
        width: 100%;
        justify-content: center;
        min-height: 44px !important;
        border-radius: 12px !important;
        font-size: 13px;
    }

    .lndg-bg {
        min-height: 78vh;
        height: auto !important;
        padding: 90px 0;
    }

    .hero-section {
        padding: 56px 18px 72px;
    }

    .hero-section::after {
        display: none;
    }


    .hero-grid {
        grid-template-columns: 1fr;
        gap: 34px;
        text-align: center;
    }

    .hero-copy,
    .hero-title {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-kicker,
    .hero-actions,
    .hero-tags {
        justify-content: center;
    }

    .hero-heading {
        font-size: clamp(32px, 9vw, 54px);
    }

    .hero-heading__accent {
        background: none;
        -webkit-background-clip: initial;
        background-clip: initial;
        -webkit-text-fill-color: initial;
        color: #ffffff;
    }

    .hero-title {
        font-size: 18px;
        line-height: 1.55;
        text-wrap: wrap;
    }

    .hero-stats {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-stat__number {
        font-size: 22px;
    }

    .hero-stat__label {
        font-size: 10px;
    }

    .hero-showcase {
        min-height: 420px;
    }

    .hero-ring--outer {
        display: none;
    }

    .hero-portrait {
        width: min(300px, 76vw);
        border-radius: 28px;
    }

    .hero-card {
        min-width: auto;
        padding: 10px 12px;
        font-size: 13px;
        border-radius: 16px;
    }

    .hero-card--top {
        top: 26px;
        right: 4%;
    }

    .hero-card--middle {
        left: 2%;
    }

    .hero-card--bottom {
        right: 4%;
        bottom: 26px;
    }

    .hero-name {
        font-size: 30px;
        line-height: 1.2;
    }

    .gradient {
        --size: 260px;
        opacity: 0.75;
    }

    .section-title {
        padding-top: 60px;
        font-size: 2.1rem !important;
    }

    .projects-section {
        padding: 72px 0 62px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 30px;
    }

    .project-card {
        min-height: 300px;
        padding: 22px;
    }

    .tool-shell {
        width: min(100% - 24px, 1080px);
        padding: 24px 0 42px;
    }

    .tool-hero {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 16px;
        padding: 34px 0 24px;
        text-align: center;
    }

    .tool-hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .tool-workspace {
        min-height: 340px;
        padding: 16px;
    }

    .tool-placeholder {
        min-height: 290px;
        padding: 24px;
    }

    .join-section {
        padding-top: 60px !important;
        padding-bottom: 70px !important;
    }

    .join-grid-top,
    .join-grid-bottom {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .join-grid-top {
        margin-bottom: 24px;
    }

    .join-card {
        padding: 24px;
    }

    .platform-card-simple,
    .spotify-card-large {
        padding: 20px;
    }

    .platform-card-simple .card-inner,
    .spotify-card-large .card-inner {
        gap: 16px;
    }

    .platform-icon-wrap {
        flex: 0 0 46px;
        height: 46px;
    }

    .platform-info h3 {
        font-size: 1.05rem;
    }

    .contact-section {
        padding: 72px 0;
    }

    .contact-panel {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 18px;
    }


    .form {
        width: 100%;
        min-height: 320px;
    }

    /* ===== FOOTER RESPONSIVE (≤900px) ===== */
    .ftr .footer-top,
    .ftr .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 28px;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-brand img {
        margin: 0 auto;
        max-height: 48px;
        width: auto;
    }

    .footer-brand p {
        margin: 0 auto;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links,
    .footer-tools {
        justify-items: center;
        gap: 10px;
    }

    .footer-links a:hover,
    .footer-tools a:hover {
        transform: translateX(0);
    }

    .ftr .footer-bottom {
        text-align: center;
    }

    .ftr .footer-credit {
        text-align: center;
    }
}

@media (max-width: 420px) {
    .site-header__nav {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .nav-link-node,
    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown.is-active {
        grid-column: span 2;
    }

    .nav-resume span {
        display: inline;
    }

    .nav-resume {
        padding: 10px 14px;
    }

    .nav-actions {
        width: auto;
    }

    .nav-login span {
        display: inline;
    }

    .nav-dropdown__menu {
        left: 0;
        right: auto;
        min-width: 100%;
    }

    .hero-name {
        font-size: 25px;
    }

    .hero-section {
        padding-top: 42px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-btn {
        width: 100%;
    }

    .hero-stats {
        margin-top: 28px;
        padding: 12px 2px;
    }

    .hero-stat__number {
        font-size: 20px;
    }

    .hero-stat__label {
        font-size: 9px;
    }

    .hero-showcase {
        min-height: 360px;
    }

    .hero-card {
        font-size: 12px;
    }

    .projects-quote {
        font-size: 14px;
    }

    .project-card__head {
        align-items: flex-start;
        flex-direction: column;
    }

    .project-actions {
        flex-direction: column;
    }

    .project-btn {
        width: 100%;
    }

    .tool-back {
        width: 100%;
        justify-content: center;
    }

    h2 {
        font-size: 1.9rem !important;
    }
}

/**/

.made-with {
    box-shadow: 0 0 0 1px #0000001a, 0 1px 3px #0000001a;
    visibility: visible !important;
    z-index: 2147483647 !important;
    color: var(--col-8);
    opacity: 1 !important;
    background-color: #fff !important;
    border-radius: 5px !important;
    padding: 2px 6px;
    font-size: 12px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    display: flex !important;
    position: fixed !important;
    inset: auto 12px 12px auto !important;
    overflow: visible !important;
    transform: none !important;
}


.form {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;        /* FIX: was 300px fixed — broke mobile */
    max-width: 400px;
    height: 100%;
    padding: 20px;
    border-radius: 25px;
    line-height: 30px;
}
  
  .form input {
    outline: 0;
    border: 1px solid #dbe7fb !important;
    padding: 8px 14px;
    border-radius: 8px;
    width: 100%;
    min-height: 45px;
  }
  
  .form textarea {
    border-radius: 8px;
    color: var(--col-4) !important;
    height: 100%;
    width: 100%;
    resize: none;
    outline: 0;
    padding: 8px 14px;
    border: 1px solid #dbe7fb !important;
  }
  
  .form button:not(.submit-btn) {
    align-self: center;
    padding: 9px 28px;
    outline: 0;
    border: 0;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    background: #1065ff;
    color: #fff;
    cursor: pointer;
    transition: all 0.25s ease;
  }
  
  .form button:not(.submit-btn):hover {
    background-color: #0a52db;
    color: #fff;
  }

  /* Buy Me a Coffee Button */
  .bmc-promo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 30px;
  }

  .buy-coffee {
    position: relative;
    isolation: isolate;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    max-width: 100%;
    min-height: 44px;
    padding: 6px 17px 6px 8px;
    overflow: hidden;
    border: 1px solid #9b5b22;
    border-radius: 999px;
    background:
      radial-gradient(circle at 17% 24%, #fff8df 0 16%, transparent 17%),
      linear-gradient(135deg, #ffe9aa 0%, #ffc65c 48%, #ff8f2c 100%);
    color: #2a160d;
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,.82),
      inset 0 -1px 0 rgba(105,45,12,.2),
      0 12px 26px rgba(255,143,44,.22),
      0 0 0 5px rgba(255,198,92,.14);
    text-decoration: none;
    transform: translateZ(0);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  }

  .buy-coffee::before {
    content: "";
    position: absolute;
    inset: 4px;
    z-index: -1;
    border: 1px dashed rgba(86,42,15,.24);
    border-radius: inherit;
    pointer-events: none;
  }

  .buy-coffee::after {
    content: "";
    position: absolute;
    top: 0;
    left: -38%;
    width: 34%;
    height: 100%;
    background: linear-gradient(105deg, transparent, rgba(255,255,255,.45), transparent);
    transform: skewX(-18deg);
    transition: left .42s ease;
    pointer-events: none;
  }

  .buy-coffee:hover,
  .buy-coffee:focus {
    border-color: #713b14;
    color: #2a160d;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,.88),
      inset 0 -1px 0 rgba(105,45,12,.23),
      0 16px 30px rgba(255,143,44,.3),
      0 0 0 5px rgba(255,198,92,.2);
  }

  .buy-coffee:hover::after,
  .buy-coffee:focus::after {
    left: 104%;
  }

  .buy-coffee:focus-visible {
    outline: 3px solid rgba(16,101,255,.32);
    outline-offset: 4px;
  }

  .buy-coffee:active {
    transform: translateY(0);
  }

  .buy-coffee .label {
    position: relative;
    z-index: 1;
    color: inherit;
    font-family: 'Pacifico', cursive;
    font-size: 22px;
    line-height: 1;
    text-shadow: 0 1px 0 rgba(255,255,255,.45);
    transform: translateY(-1px);
    white-space: nowrap;
  }

  .buy-coffee .cup {
    position: relative;
    z-index: 1;
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    border-radius: 50%;
    background: linear-gradient(145deg, #4b2918 0%, #241009 100%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.16), 0 4px 10px rgba(86,42,15,.25);
  }

  .buy-coffee .lid {
    position: absolute;
    left: 7px;
    top: 6px;
    width: 16px;
    height: 7px;
    border: 1.5px solid #2a160d;
    border-radius: 7px 7px 3px 3px;
    background: linear-gradient(to bottom, #ffffff 0%, #efe8dd 100%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.85);
  }

  .buy-coffee .body {
    position: absolute;
    left: 9px;
    top: 12px;
    width: 12px;
    height: 13px;
    border: 1.5px solid #2a160d;
    border-radius: 2px 2px 5px 5px;
    background: linear-gradient(to right, #ffffff 0%, #f7efe3 58%, #e6d7c5 100%);
    box-shadow: inset 1px 0 0 rgba(255,255,255,.8);
    clip-path: polygon(12% 0%, 88% 0%, 100% 100%, 0% 100%);
  }

  .buy-coffee .sleeve {
    position: absolute;
    left: 10px;
    top: 18px;
    width: 10px;
    height: 5px;
    border-radius: 1px;
    background: linear-gradient(to bottom, #ffd84d 0%, #f0a900 100%);
  }

  @media (max-width: 420px) {
    .bmc-promo {
      margin-top: 24px;
    }

    .buy-coffee {
      min-height: 40px;
      padding: 5px 14px 5px 7px;
      gap: 8px;
    }

    .buy-coffee .label {
      font-size: 20px;
    }

    .buy-coffee .cup {
      width: 28px;
      height: 28px;
    }
  }

  /* Form Status message styling - inline expanding banner */
  .form-status {
      display: flex;
      align-items: center;
      gap: 12px;
      width: 100%;
      box-sizing: border-box;
      border-radius: 12px;
      font-size: 14.5px;
      font-weight: 600;
      border: 1px solid transparent;
      border-left-width: 4px;
      
      /* Collapsed by default */
      max-height: 0;
      opacity: 0;
      padding: 0 20px;
      margin: 0;
      overflow: hidden;
      transition: max-height 0.35s ease, opacity 0.3s ease, padding 0.3s ease, margin 0.3s ease, border-color 0.3s ease;
  }
  .form-status.show {
      max-height: 100px;
      opacity: 1;
      padding: 14px 20px;
      margin: 8px 0 16px;
  }
  .form-status.success {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(16, 185, 129, 0.25);
      border-left: 4px solid #10b981;
      color: #065f46;
  }
  .form-status.error {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(239, 68, 68, 0.25);
      border-left: 4px solid #ef4444;
      color: #991b1b;
  }

  /* ── Uiverse Fly Button ── */
  .submit-btn {
      position: relative;
      font-family: "Encode Sans Expanded", Arial, sans-serif;
      font-size: 17px;
      font-weight: 800;
      background: #1065ff;
      color: #fff !important;
      padding: 0.7em 1.4em 0.7em 1.1em;
      display: inline-flex;
      align-items: center;
      gap: 0;
      border: none;
      border-radius: 16px;
      overflow: hidden;
      transition: all 0.2s;
      cursor: pointer;
      outline: 0;
  }

  .submit-btn .svg-wrapper-1 {
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.3s ease-in-out;
  }

  .submit-btn .svg-wrapper {
      display: flex;
      align-items: center;
      justify-content: center;
      transform-origin: center center;
  }

  .submit-btn svg {
      display: block;
      transform-origin: center center;
      transition: transform 0.3s ease-in-out;
  }

  .submit-btn .btn-text {
      display: block;
      margin-left: 0.4em;
      transition: transform 0.3s ease-in-out, opacity 0.25s ease, max-width 0.3s ease-in-out, margin-left 0.3s ease-in-out;
      white-space: nowrap;
      max-width: 200px;
      opacity: 1;
  }

  .submit-btn:not(.is-loading):not(.is-success):not(.is-error):hover .svg-wrapper {
      animation: fly-1 0.6s ease-in-out infinite alternate;
  }

  .submit-btn:not(.is-loading):not(.is-success):not(.is-error):hover svg {
      transform: translateX(0.5em) rotate(45deg) scale(1.1);
  }

  .submit-btn:not(.is-loading):not(.is-success):not(.is-error):hover .btn-text {
      transform: translateX(15px);
      opacity: 0;
      max-width: 0;
      margin-left: 0;
  }

  .submit-btn:active {
      transform: scale(0.95);
  }

  @keyframes fly-1 {
      from { transform: translateY(0.1em); }
      to   { transform: translateY(-0.1em); }
  }

  /* Loading spinner — centered absolutely */
  .submit-btn .btn-spinner {
      position: absolute;
      width: 22px;
      height: 22px;
      left: calc(50% - 11px);
      top: calc(50% - 11px);
      border: 2px solid rgba(255, 255, 255, 0.3);
      border-top: 2px solid #ffffff;
      border-radius: 50%;
      opacity: 0;
      transform: scale(0.6);
      transition: opacity 0.25s ease, transform 0.25s ease;
      animation: btn-spin-anim 0.6s linear infinite;
      pointer-events: none;
  }

  @keyframes btn-spin-anim {
      to { transform: rotate(360deg); }
  }

  /* Loading state */
  .submit-btn.is-loading {
      pointer-events: none;
  }

  .submit-btn.is-loading .svg-wrapper-1,
  .submit-btn.is-loading .btn-text {
      opacity: 0;
      visibility: hidden;
  }

  .submit-btn.is-loading .btn-spinner {
      opacity: 1;
      transform: scale(1);
  }

  /* Success state */
  .submit-btn.is-success {
      background: #10b981 !important;
      pointer-events: none;
  }

  .submit-btn.is-success .svg-wrapper-1 {
      display: none;
  }

  /* Error state */
  .submit-btn.is-error {
      background: #ef4444 !important;
      animation: btn-shake-anim 0.4s ease-in-out;
  }

  .submit-btn.is-error .svg-wrapper-1 {
      display: none;
  }

  @keyframes btn-shake-anim {
      0%, 100% { transform: translateX(0); }
      20%, 60% { transform: translateX(-4px); }
      40%, 80% { transform: translateX(4px); }
  }

  /* --- UPDATES SECTION TAB SWITCHER --- */
  .updates-tabs {
      display: flex;
      width: min(480px, 100%);
      gap: 6px;
      margin: 22px auto 0;
      padding: 5px;
      border: 1px solid #d0e1ff;
      border-radius: 14px;
      background: #f3f8ff;
  }

  .updates-tab {
      flex: 1;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 7px;
      min-height: 42px;
      border: 0;
      border-radius: 10px;
      background: transparent;
      color: #72809a;
      font-family: inherit;
      font-size: 12px;
      font-weight: 850;
      letter-spacing: 0.02em;
      cursor: pointer;
      transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .updates-tab .bi {
      font-size: 14px;
  }

  .updates-tab.is-active {
      background: #ffffff;
      color: #1065ff;
      box-shadow: 0 7px 18px rgba(13, 61, 143, 0.1);
  }

  .updates-tab:not(.is-active):hover {
      color: #1065ff;
      background: #e9f3ff;
  }

  /* Panels */
  .updates-panel {
      animation: updatesPanelIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .updates-panel[hidden] {
      display: none;
  }

  @keyframes updatesPanelIn {
      from { opacity: 0; transform: translateY(12px); }
      to   { opacity: 1; transform: translateY(0); }
  }

  /* --- RECENT POSTS GRID (blogs & resources preview) --- */
  .recent-posts-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 20px;
      max-width: 800px;
      margin: 36px auto 0;
  }

  .recent-posts-loader {
      grid-column: 1 / -1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 14px;
      padding: 50px 20px;
      color: #6b7f9b;
      font-size: 13px;
      font-weight: 700;
  }

  .recent-posts-spinner {
      width: 28px;
      height: 28px;
      border: 3px solid #e0eaff;
      border-top-color: #1065ff;
      border-radius: 50%;
      animation: spin 0.7s linear infinite;
  }

  @keyframes spin {
      to { transform: rotate(360deg); }
  }

  /* Compact post card */
  .recent-post-card {
      position: relative;
      display: flex;
      flex-direction: column;
      padding: 22px 24px;
      border: 1px solid #e4effc;
      border-radius: 14px;
      background: linear-gradient(145deg, #fffffff0, #f6fbffdb);
      box-shadow: 0 10px 28px #0d3d8f08;
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      overflow: hidden;
  }

  .recent-post-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 4px;
      height: 100%;
      border-radius: 14px 0 0 14px;
  }

  .recent-post-card--blog::before {
      background: linear-gradient(180deg, #1065ff, #17e6ae);
  }

  .recent-post-card--resource::before {
      background: linear-gradient(180deg, #8c10ff, #1065ff);
  }

  .recent-post-card:hover {
      border-color: #bde7ff;
      box-shadow: 0 18px 42px #0d3d8f14;
      transform: translateY(-3px);
  }

  .recent-post-card__type {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      width: fit-content;
      padding: 4px 10px;
      border-radius: 999px;
      font-size: 10px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      line-height: 1;
      margin-bottom: 12px;
  }

  .recent-post-card__type--blog {
      background: #eef5ff;
      border: 1px solid #cce2ff;
      color: #1065ff;
  }

  .recent-post-card__type--resource {
      background: #f5eeff;
      border: 1px solid #e8d5ff;
      color: #8c10ff;
  }

  .recent-post-card__type .bi {
      font-size: 11px;
  }

  .recent-post-card h4 {
      margin: 0 0 8px;
      color: #001345;
      font-size: 15px;
      font-weight: 850;
      line-height: 1.35;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
  }

  .recent-post-card__desc {
      margin: 0 0 14px;
      color: #6b7f9b;
      font-size: 12.5px;
      font-weight: 550;
      line-height: 1.55;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
  }

  .recent-post-card__footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: auto;
      padding-top: 12px;
      border-top: 1px solid #f0f5fc;
  }

  .recent-post-card__date {
      font-size: 11px;
      font-weight: 700;
      color: #8899bb;
  }

  .recent-post-card__link {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 11.5px;
      font-weight: 850;
      color: #1065ff;
      text-decoration: none;
      transition: color 0.2s ease, gap 0.2s ease;
  }

  .recent-post-card__link:hover {
      color: #0a52db;
      gap: 9px;
  }

  /* "View All" action links */
  .recent-posts-actions {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
      margin-top: 28px;
  }

  .recent-posts-view-all {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 11px 22px;
      border: 1px solid #d0e1ff;
      border-radius: 12px;
      background: #ffffff;
      color: #1065ff;
      font-size: 13px;
      font-weight: 850;
      text-decoration: none;
      transition: all 0.25s ease;
      box-shadow: 0 6px 18px #0d3d8f08;
  }

  .recent-posts-view-all:hover {
      background: #eef5ff;
      border-color: #88b8ff;
      color: #0a52db;
      transform: translateY(-2px);
      box-shadow: 0 10px 24px #0d3d8f12;
  }

  .recent-posts-empty {
      grid-column: 1 / -1;
      text-align: center;
      padding: 40px 20px;
      color: #8899bb;
      font-size: 14px;
      font-weight: 650;
  }

  .recent-posts-empty .bi {
      display: block;
      font-size: 32px;
      margin-bottom: 12px;
      opacity: 0.4;
  }

  @media (max-width: 640px) {
      .updates-tabs {
          width: 100%;
      }

      .recent-posts-grid {
          grid-template-columns: 1fr;
          gap: 16px;
      }

      .recent-posts-actions {
          flex-direction: column;
          gap: 10px;
      }

      .recent-posts-view-all {
          width: 100%;
          justify-content: center;
      }
  }

  /* --- SIMPLE UPDATES SECTION DESIGN --- */
  .updates-list {
      display: flex;
      flex-direction: column;
      gap: 24px;
      max-width: 800px;
      margin: 40px auto 0;
      max-height: 520px; /* Limits the list length */
      overflow-y: auto;  /* Scroll internally when content exceeds height */
      padding: 6px 14px 6px 6px; /* Spacing for custom scrollbar */
  }

  /* Custom styled scrollbar for updates */
  .updates-list::-webkit-scrollbar {
      width: 6px;
  }
  .updates-list::-webkit-scrollbar-track {
      background: rgba(16, 101, 255, 0.04);
      border-radius: 999px;
  }
  .updates-list::-webkit-scrollbar-thumb {
      background: linear-gradient(180deg, #17e6ae, #1065ff);
      border-radius: 999px;
  }
  .updates-list::-webkit-scrollbar-thumb:hover {
      background: #1065ff;
  }

  .simple-update-card {
      position: relative;
      padding: 30px;
      border: 1px solid #ffffffd8;
      border-radius: 12px;
      background: linear-gradient(145deg, #fffffff0, #f6fbffdb);
      box-shadow: 0 16px 36px #0d3d8f0a, inset 0 1px 0 #ffffff;
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
  }

  .simple-update-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, #17e6ae, #1065ff);
      border-radius: 12px 12px 0 0;
  }

  .simple-update-card:hover {
      border-color: #bde7ff;
      box-shadow: 0 24px 50px #0d3d8f15, inset 0 1px 0 #ffffff;
      transform: translateY(-3px);
  }

  .update-header-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 16px;
      gap: 12px;
  }

  .update-badge {
      display: inline-flex;
      align-items: center;
      padding: 6px 12px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      line-height: 1;
  }

  .badge-featured {
      background: #eef5ff;
      border: 1px solid #cce2ff;
      color: #1065ff;
  }

  .badge-tool {
      background: #e6faf5;
      border: 1px solid #c2f5e7;
      color: #0d8c6a;
  }

  .badge-app {
      background: #fbf5ff;
      border: 1px solid #f2e2ff;
      color: #8c10ff;
  }

  .update-date {
      font-size: 13px;
      font-weight: 750;
      color: #6b7f9b;
  }

  .simple-update-card h3 {
      margin: 0 0 12px 0;
      color: var(--col-9);
      font-size: 1.6rem;
      font-weight: 800;
      line-height: 1.25;
  }

  .simple-update-card p {
      margin: 0 0 20px 0;
      color: #47607e;
      font-size: 15px;
      line-height: 1.65;
  }

  .update-card-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: #1065ff;
      font-size: 14px;
      font-weight: 850;
      text-decoration: none;
      transition: color 0.2s ease;
  }

  .update-card-link i {
      transition: transform 0.2s ease;
  }

  .simple-update-card:hover .update-card-link {
      color: #0a52db;
  }

  .simple-update-card:hover .update-card-link i {
      transform: translateX(4px);
  }

/* Tool Footer - similar to account-footer but customized for tools */
.tool-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    margin-top: 48px;
    padding: 25px 6px 0;
    border-top: 1px dashed rgba(16, 101, 255, 0.15);
    color: #718099;
    font-size: 10px;
    font-weight: 700;
}

.tool-footer a {
    color: #1065ff;
    font-weight: 900;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.tool-footer a:hover {
    opacity: 0.85;
}

.tool-footer__links {
    display: flex;
    align-items: center;
    gap: 16px;
}

@media (max-width: 520px) {
    .tool-footer {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        text-align: center;
    }

    .tool-footer__links {
        justify-content: center;
        width: 100%;
    }
}

/* ===== Stats Section ===== */
.stats-section {
    padding: 20px 0 70px;
    background: linear-gradient(180deg, #ffffff 0%, #eef5ff 100%);
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.stats-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 30px;
    border: 1px solid #ffffffd8;
    border-radius: 12px;
    background:
        linear-gradient(145deg, #fffffff0, #f6fbffdb),
        radial-gradient(circle at top left, rgba(23, 230, 174, 0.1), transparent 14rem);
    box-shadow: 0 24px 55px rgba(13, 61, 143, 0.05), inset 0 1px 0 #ffffff;
    transition: transform 0.24s ease, box-shadow 0.24s ease;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.stats-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 65px rgba(13, 61, 143, 0.12);
}

.stats-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1065ff, #17a7e6);
    color: #ffffff;
    font-size: 22px;
    box-shadow: 0 10px 20px rgba(16, 101, 255, 0.15);
    transition: transform 0.3s ease;
}

.stats-card:hover .stats-icon {
    transform: scale(1.1);
}

.stats-content {
    display: flex;
    flex-direction: column;
}

.stats-label {
    font-size: 11px;
    font-weight: 800;
    color: #60708b;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.stats-value {
    font-family: "Dela Gothic One", sans-serif;
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 400;
    color: #001345;
    margin: 4px 0 0;
    line-height: 1;
}

/* Like Button Box specific styles */
.stats-like-btn {
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
    outline: none;
}

.stats-like-btn .stats-icon {
    background: #ffffff;
    border: 1px solid #dbe8fa;
    color: #ff3b5c;
    box-shadow: 0 10px 20px rgba(255, 59, 92, 0.05);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.stats-like-btn:hover .stats-icon {
    transform: scale(1.15);
    background: #fff0f3;
    border-color: #ffccd5;
    box-shadow: 0 12px 24px rgba(255, 59, 92, 0.15);
}

.stats-like-btn:active .stats-icon {
    transform: scale(0.9);
}

/* Liked state style */
.stats-like-btn.liked .stats-icon {
    background: linear-gradient(135deg, #ff3b5c, #ff7b92) !important;
    border-color: transparent !important;
    color: #ffffff !important;
    box-shadow: 0 10px 24px rgba(255, 59, 92, 0.25) !important;
    animation: heartBeat 0.4s ease-out;
}

@keyframes heartBeat {
    0% { transform: scale(1); }
    25% { transform: scale(1.3); }
    50% { transform: scale(1.15); }
    75% { transform: scale(1.35); }
    100% { transform: scale(1.15); }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Custom Cursor */
@media (min-width: 769px) {
    body, a, button, select, input, textarea, [role="button"] {
        cursor: none !important;
    }
}

.cursor, .cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 999999;
    opacity: 0;
    transition: opacity 0.3s ease, width 0.3s ease, height 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, margin 0.3s ease;
}

.cursor {
    width: 6px;
    height: 6px;
    background-color: #1065ff; /* Classic brand blue dot */
    border-radius: 50%;
    margin-top: -3px;
    margin-left: -3px;
}

.cursor.is-hidden {
    opacity: 0 !important;
}

.cursor-follower {
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(23, 230, 174, 0.45); /* Signature green follower */
    border-radius: 50%;
    margin-top: -18px;
    margin-left: -18px;
    transform-origin: center center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.cursor-follower.is-hovered {
    width: 54px;
    height: 54px;
    margin-top: -27px;
    margin-left: -27px;
    background-color: rgba(16, 101, 255, 0.08); /* Fills with light blue on hover */
    border-color: rgba(16, 101, 255, 0.85); /* Turns blue border on hover */
}

/* Custom indicator text overlay inside the follower */
.cursor-follower::after {
    content: attr(data-label);
    font-family: "Encode Sans Expanded", Arial, sans-serif;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #1065ff;
    position: absolute;
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
    white-space: nowrap;
}

.cursor-follower.is-hovered[data-label]::after {
    opacity: 1;
}

/* ═══════════════════════ EXPERIENCE & EDUCATION SECTION ═══════════════════════ */
.experience-section {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: 100px 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(16, 101, 255, 0.08) 0, transparent 32rem),
        radial-gradient(circle at 90% 80%, rgba(23, 230, 174, 0.08) 0, transparent 32rem),
        linear-gradient(180deg, #eef4ff 0%, #ffffff 50%, #f7faff 100%);
}

.experience-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(#1065ff06 1px, transparent 1px),
        linear-gradient(90deg, #1065ff06 1px, transparent 1px);
    background-size: 40px 40px;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
    mask-image: linear-gradient(180deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
    pointer-events: none;
}

.experience-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #bde7ff, transparent);
    z-index: 1;
}

.experience-section > .container {
    position: relative;
    z-index: 2;
}

.experience-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 7px 14px;
    border: 1px solid #bde7ff;
    border-radius: 999px;
    background: #ffffffbf;
    color: #0a52db;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 12px 28px #0d3d8f12;
}

/* Tab Navigation Styling */
.experience-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 12px;
    border: 1px solid rgba(16, 101, 255, 0.15);
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--col-4);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 12px rgba(13, 61, 143, 0.03);
}

.tab-btn:hover {
    border-color: var(--col-6);
    color: var(--col-6);
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.85);
}

.tab-btn.active {
    background: var(--col-6);
    border-color: var(--col-6);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(16, 101, 255, 0.25);
}

/* Tab content states */
.experience-section .tab-content {
    display: none;
    opacity: 0;
}

.experience-section .tab-content.active {
    display: block;
    opacity: 1;
}

/* Timeline Navigation Track */
.timeline-nav-container {
    position: relative;
    margin-bottom: 56px;
    padding: 10px 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: 100%;
}

.timeline-nav-container::-webkit-scrollbar {
    display: none;
}

.timeline-nav-nodes {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    min-width: 800px;
    padding: 16px 20px;
}

/* Track Lines */
.timeline-nav-line-bg {
    position: absolute;
    top: 24px; /* aligned with center of dot */
    left: 40px;
    right: 40px;
    height: 4px;
    background: rgba(16, 101, 255, 0.08);
    z-index: 1;
    border-radius: 2px;
}

.timeline-nav-line {
    position: absolute;
    top: 24px;
    left: 40px;
    height: 4px;
    background: linear-gradient(90deg, var(--col-6), var(--col-5));
    z-index: 2;
    border-radius: 2px;
    transition: width 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 0 10px rgba(16, 101, 255, 0.4);
    width: 0;
}

/* Node Button */
.nav-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 0;
    position: relative;
    z-index: 3;
    flex: 1;
    min-width: 100px;
    transition: all 0.3s ease;
}

.node-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid rgba(16, 101, 255, 0.25);
    margin-bottom: 12px;
    z-index: 4;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 0 0 4px #ffffff;
}

.nav-node:hover .node-dot,
.nav-node.active .node-dot {
    background: var(--col-6);
    border-color: var(--col-6);
    transform: scale(1.25);
    box-shadow: 0 0 0 6px rgba(16, 101, 255, 0.15), 0 0 0 3px #ffffff;
}

.node-label {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--col-4);
    margin-bottom: 4px;
    text-align: center;
    transition: color 0.3s;
}

.node-date {
    font-size: 11px;
    font-weight: 600;
    color: #6c7a9c;
    text-align: center;
    transition: color 0.3s;
}

.nav-node:hover .node-label,
.nav-node.active .node-label {
    color: var(--col-9);
}

.nav-node:hover .node-date,
.nav-node.active .node-date {
    color: var(--col-6);
}

/* Active Card Container & Animations */
.active-card-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    min-height: 380px;
}

.timeline-detail-card {
    display: none;
    width: 100%;
}

.timeline-detail-card.active {
    display: block;
    animation: slideUpFade 0.4s forwards cubic-bezier(0.25, 0.8, 0.25, 1);
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Recycled Timeline Card Customizations */
.timeline-detail-card .timeline-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 15px 40px rgba(13, 61, 143, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    width: 100%;
}

/* Timeline Type tag */
.timeline-type {
    display: inline-block;
    padding: 4px 10px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 6px;
    margin-bottom: 12px;
}

.type-onsite {
    background: rgba(23, 230, 174, 0.12);
    color: #039f75;
    border: 1px solid rgba(23, 230, 174, 0.2);
}

.type-freelance {
    background: rgba(16, 101, 255, 0.08);
    color: #1065ff;
    border: 1px solid rgba(16, 101, 255, 0.15);
}

.timeline-detail-card .timeline-card h4 {
    font-size: 20px;
    font-weight: 800;
    color: var(--col-9);
    margin: 0 0 8px;
    line-height: 1.3;
}

.timeline-detail-card .timeline-card .badge-tag {
    display: inline-block;
    font-size: 9px;
    font-weight: 800;
    background: rgba(16, 101, 255, 0.08);
    color: #1065ff;
    border: 1px solid rgba(16, 101, 255, 0.15);
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 6px;
    vertical-align: middle;
    letter-spacing: 0.02em;
}

.timeline-detail-card .timeline-card .badge-iata {
    display: inline-block;
    font-size: 9px;
    font-weight: 800;
    background: #ffcd6220;
    color: #aa7100;
    border: 1px solid #ffcd6250;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 6px;
    vertical-align: middle;
    letter-spacing: 0.02em;
}

.timeline-detail-card .timeline-date {
    display: block;
    font-size: 13px;
    font-weight: 800;
    color: var(--col-6);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.timeline-detail-card .timeline-location {
    font-size: 13px;
    font-weight: 700;
    color: #6c7a9c;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.timeline-detail-card .timeline-location::before {
    content: "\F3E8";
    font-family: "bootstrap-icons";
    font-size: 11px;
}

.timeline-detail-card .timeline-role {
    font-size: 14.5px;
    font-weight: 500;
    line-height: 1.6;
    color: var(--col-4);
    margin: 0;
}

.timeline-detail-card .timeline-org, 
.timeline-detail-card .timeline-inst {
    font-size: 15px;
    font-weight: 700;
    color: #3b4b68;
    margin-bottom: 8px;
}

.timeline-detail-card .timeline-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #506180;
    margin: 0;
}

.timeline-detail-card .timeline-clients-list {
    margin: 12px 0 16px;
    padding-left: 20px;
    font-size: 13.5px;
    color: var(--col-4);
    list-style-type: square;
}

.timeline-detail-card .timeline-clients-list li {
    margin-bottom: 6px;
}

.timeline-detail-card .timeline-clients-list li strong {
    color: var(--col-9);
}

.timeline-details-list {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--col-4);
}

.detail-item {
    position: relative;
    padding-left: 16px;
}

.detail-item::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--col-6);
    font-weight: bold;
}

.timeline-attachments {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.attachment-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-decoration: none;
    max-width: 240px;
}

.attachment-thumb {
    width: 100%;
    aspect-ratio: 1.5;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(16, 101, 255, 0.15);
    background: #f4f8ff;
    box-shadow: 0 4px 12px rgba(16, 101, 255, 0.05);
    transition: all 0.3s ease;
}

.attachment-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.attachment-item:hover .attachment-thumb img {
    transform: scale(1.08);
}

.attachment-item span {
    font-size: 12px;
    font-weight: 700;
    color: var(--col-4);
    text-align: center;
}

.attachment-item:hover span {
    color: var(--col-6);
}

.attachment-item:hover .attachment-thumb {
    border-color: var(--col-6);
    box-shadow: 0 8px 20px rgba(16, 101, 255, 0.12);
}

.attachment-item:hover span {
    color: var(--col-6);
}



