/* ============================================
   TECHBINGE - HERO SLIDER
   Replaces the old #tb-slider Bootstrap carousel.
   Scope: #tb-hero-slider (wrapper div)
   Prefix: tb-hero-slider__
   ============================================ */

#tb-hero-slider {
    --tbh-saffron: #FF9800;
    --tbh-saffron-light: #FFB74D;
    --tbh-saffron-deep: #F57C00;
    --tbh-navy: #0A0E1A;
    --tbh-navy-deep: #050810;
    --tbh-mist: rgba(255, 255, 255, 0.68);
    --tbh-border-soft: rgba(255, 152, 0, 0.35);
    --tbh-ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);

    position: relative;
    width: 100%;
}

#tb-hero-slider .tb-hero-slider__hero {
    position: relative;
    width: 100%;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--tbh-navy-deep);
}

#tb-hero-slider .tb-hero-slider__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: saturate(1.05);
}

/* Dark navy overlay for readability */
#tb-hero-slider .tb-hero-slider__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(6, 9, 20, 0.72) 0%,
        rgba(8, 11, 24, 0.66) 45%,
        rgba(6, 9, 20, 0.82) 100%
    );
}

/* Soft radial glow, warm light bleeding from behind headline */
#tb-hero-slider .tb-hero-slider__glow {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        radial-gradient(60% 50% at 50% 38%, rgba(255, 152, 0, 0.16) 0%, rgba(255, 152, 0, 0) 70%),
        radial-gradient(40% 35% at 15% 15%, rgba(255, 152, 0, 0.08) 0%, rgba(255, 152, 0, 0) 70%),
        radial-gradient(40% 35% at 85% 85%, rgba(255, 152, 0, 0.06) 0%, rgba(255, 152, 0, 0) 70%);
}

/* Cinematic vignette */
#tb-hero-slider .tb-hero-slider__vignette {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background: radial-gradient(120% 90% at 50% 50%, rgba(0, 0, 0, 0) 45%, rgba(3, 5, 12, 0.55) 100%);
}

#tb-hero-slider .tb-hero-slider__content {
    position: relative;
    z-index: 4;
    max-width: 920px;
    width: 100%;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    will-change: transform;
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
}

#tb-hero-slider .tb-hero-slider__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 20px;
    border: 1px solid var(--tbh-border-soft);
    border-radius: 999px;
    background: rgba(255, 152, 0, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--tbh-saffron-light);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-bottom: 28px;
    opacity: 0;
    transform: translateY(24px) scale(0.96);
    animation: tbHeroSliderFadeUp 0.9s var(--tbh-ease-out-expo) forwards;
    animation-delay: 0.1s;
}

#tb-hero-slider .tb-hero-slider__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--tbh-saffron);
    box-shadow: 0 0 8px 2px rgba(255, 152, 0, 0.7);
}

#tb-hero-slider .tb-hero-slider__title {
    font-size: clamp(2.4rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    margin: 0;
    opacity: 0;
    transform: translateY(30px) scale(0.98);
    animation: tbHeroSliderFadeUp 1s var(--tbh-ease-out-expo) forwards;
    animation-delay: 0.28s;
}

#tb-hero-slider .tb-hero-slider__accent {
    color: var(--tbh-saffron);
    background: linear-gradient(100deg, var(--tbh-saffron-light) 0%, var(--tbh-saffron) 55%, var(--tbh-saffron-deep) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

#tb-hero-slider .tb-hero-slider__sub {
    margin-top: 26px;
    max-width: 660px;
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    font-weight: 400;
    line-height: 1.65;
    color: var(--tbh-mist);
    opacity: 0;
    transform: translateY(26px);
    animation: tbHeroSliderFadeUp 1s var(--tbh-ease-out-expo) forwards;
    animation-delay: 0.48s;
}

#tb-hero-slider .tb-hero-slider__cta {
    margin-top: 44px;
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0;
    transform: translateY(26px);
    animation: tbHeroSliderFadeUp 1s var(--tbh-ease-out-expo) forwards;
    animation-delay: 0.68s;
}

#tb-hero-slider .tb-hero-slider__btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15.5px;
    font-weight: 700;
    letter-spacing: 0.01em;
    border-radius: 12px;
    cursor: pointer;
    transition:
        transform 0.35s var(--tbh-ease-out-expo),
        box-shadow 0.35s var(--tbh-ease-out-expo),
        background 0.35s ease,
        border-color 0.35s ease,
        color 0.35s ease;
    text-decoration: none;
    white-space: nowrap;
}

#tb-hero-slider .tb-hero-slider__btn--primary {
    color: var(--tbh-navy-deep);
    background: linear-gradient(135deg, var(--tbh-saffron-light) 0%, var(--tbh-saffron) 55%, var(--tbh-saffron-deep) 100%);
    border: 1px solid rgba(255, 183, 77, 0.5);
    box-shadow: 0 8px 24px -6px rgba(255, 152, 0, 0.5), 0 0 0 rgba(255, 152, 0, 0);
}

#tb-hero-slider .tb-hero-slider__btn--primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 34px -6px rgba(255, 152, 0, 0.65), 0 0 30px rgba(255, 152, 0, 0.35);
}

#tb-hero-slider .tb-hero-slider__btn--primary:active {
    transform: translateY(-1px) scale(0.98);
}

#tb-hero-slider .tb-hero-slider__arrow {
    transition: transform 0.35s var(--tbh-ease-out-expo);
}

#tb-hero-slider .tb-hero-slider__btn--primary:hover .tb-hero-slider__arrow {
    transform: translateX(4px);
}

#tb-hero-slider .tb-hero-slider__btn--secondary {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.03);
    border: 1.5px solid rgba(255, 152, 0, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

#tb-hero-slider .tb-hero-slider__btn--secondary:hover {
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.95), rgba(245, 124, 0, 0.95));
    border-color: transparent;
    color: var(--tbh-navy-deep);
    transform: translateY(-4px);
    box-shadow: 0 14px 30px -8px rgba(255, 152, 0, 0.5);
}

#tb-hero-slider .tb-hero-slider__scroll-cue {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation:
        tbHeroSliderFadeIn 1s ease forwards,
        tbHeroSliderBob 2.6s ease-in-out infinite 1.6s;
    animation-delay: 1.1s, 1.6s;
    color: rgba(255, 255, 255, 0.5);
}

#tb-hero-slider .tb-hero-slider__scroll-cue svg {
    width: 20px;
    height: 20px;
}

@keyframes tbHeroSliderFadeUp {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes tbHeroSliderFadeIn {
    to {
        opacity: 1;
    }
}

@keyframes tbHeroSliderBob {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

@media (prefers-reduced-motion: reduce) {
    #tb-hero-slider .tb-hero-slider__eyebrow,
    #tb-hero-slider .tb-hero-slider__title,
    #tb-hero-slider .tb-hero-slider__sub,
    #tb-hero-slider .tb-hero-slider__cta,
    #tb-hero-slider .tb-hero-slider__scroll-cue,
    #tb-hero-slider .tb-hero-slider__content {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

@media (max-width: 768px) {
    #tb-hero-slider .tb-hero-slider__content {
        padding: 0 20px;
    }

    #tb-hero-slider .tb-hero-slider__title {
        line-height: 1.12;
    }

    #tb-hero-slider .tb-hero-slider__cta {
        flex-direction: column;
        width: 100%;
        margin-top: 36px;
        gap: 14px;
    }

    #tb-hero-slider .tb-hero-slider__btn {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
    }

    #tb-hero-slider .tb-hero-slider__sub {
        margin-top: 20px;
    }

    #tb-hero-slider .tb-hero-slider__scroll-cue {
        display: none;
    }
}

@media (max-width: 420px) {
    #tb-hero-slider .tb-hero-slider__eyebrow {
        font-size: 11.5px;
        padding: 8px 16px;
    }

    #tb-hero-slider .tb-hero-slider__title {
        font-size: 2.15rem;
    }
}

@media (min-width: 1600px) {
    #tb-hero-slider .tb-hero-slider__content {
        max-width: 1080px;
    }
}
/* ============================================
   TECHBINGE - TECHNOLOGY TICKER
   Scope: #tbTickerSection
   Prefix: tb-ticker-
   ============================================ */

.tb-ticker-section {
    --tb-speed: 55px; /* px per second, mid-point of 40–60 range */
    --tb-text: #64748B;
    --tb-text-hover: #FF9800;
    --tb-dot: #FF9800;
    --tb-border: #EDEFF3;
    --tb-bg: #FFFFFF;

    width: 100%;
    background: var(--tb-bg);
    border-top: 1px solid var(--tb-border);
    border-bottom: 1px solid var(--tb-border);
    font-family: 'Inter', sans-serif;
    padding: 22px 0;
    overflow: hidden;
    box-sizing: border-box;
}

.tb-ticker-row {
    position: relative;
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
}

.tb-ticker-row + .tb-ticker-row {
    margin-top: 14px;
}

.tb-ticker-track {
    display: flex;
    align-items: center;
    width: max-content;
    will-change: transform;
    animation: tb-scroll-left var(--tb-duration, 30s) linear infinite;
    cursor: grab;
    user-select: none;
    touch-action: pan-y;
}

.tb-ticker-track.tb-dragging {
    cursor: grabbing;
    animation-play-state: paused !important;
}

/* Pause on hover (only when not actively dragging — dragging already pauses) */
.tb-ticker-row:hover .tb-ticker-track {
    animation-play-state: paused;
}

.tb-ticker-track.tb-reverse {
    animation-name: tb-scroll-right;
}

@keyframes tb-scroll-left {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(-50%, 0, 0); }
}

@keyframes tb-scroll-right {
    from { transform: translate3d(-50%, 0, 0); }
    to { transform: translate3d(0, 0, 0); }
}

.tb-ticker-seq {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.tb-ticker-item {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    padding: 6px 20px;
    font-size: 14.5px;
    font-weight: 500;
    color: var(--tb-text);
    letter-spacing: 0.01em;
    transition: color 0.3s ease, transform 0.3s ease;
}

.tb-ticker-item:hover {
    color: var(--tb-text-hover);
    transform: translateY(-2px);
}

.tb-ticker-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--tb-dot);
    flex-shrink: 0;
    margin: 0 2px;
}

@media (max-width: 768px) {
    .tb-ticker-section { padding: 16px 0; }
    .tb-ticker-item { font-size: 13.5px; padding: 5px 15px; }
    .tb-ticker-row + .tb-ticker-row { margin-top: 10px; }
}

@media (max-width: 420px) {
    .tb-ticker-item { font-size: 12.5px; padding: 4px 12px; }
}

@media (prefers-reduced-motion: reduce) {
    .tb-ticker-track { animation: none !important; }
}

/* ============================================
   TECHBINGE - SELECTED WORK / PORTFOLIO
   Scope: #tbWork
   Prefix: tb-work-, tb-browser-, tb-badge, tb-project-
   ============================================ */

.tb-work {
    --tb-orange: #FF9800;
    --tb-orange-deep: #F57C00;
    --tb-navy: #0A0E1A;
    --tb-ink: #111827;
    --tb-muted: #64748B;
    --tb-border: #ECEEF2;
    --tb-bg: #FFFFFF;

    background: var(--tb-bg);
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    padding: 120px 24px;
    box-sizing: border-box;
}

.tb-work * {
    box-sizing: border-box;
}

.tb-work-inner {
    max-width: 1280px;
    margin: 0 auto;
}

/* ---------- Header ---------- */
.tb-work-header {
    text-align: left;
    max-width: 640px;
    margin: 0 0 64px;
}

.tb-work-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--tb-orange);
    margin-bottom: 16px;
}

.tb-work-title {
    font-size: clamp(2rem, 4.2vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.12;
    color: var(--tb-ink);
}

.tb-work-title .tb-accent {
    color: var(--tb-orange);
}

.tb-work-sub {
    margin-top: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: var(--tb-muted);
}

/* ---------- Grid ---------- */
.tb-work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: stretch;
}

/* Featured / wide card — spans 2 columns for a bento-style layout.
   Add class="tb-work-card tb-work-card--wide" to any card you want
   to appear double-width (e.g. a flagship or larger project). */
.tb-work-card--wide {
    grid-column: span 2;
}

.tb-work-card--wide .tb-browser-viewport {
    aspect-ratio: 3 / 1; /* twice as wide, same height as normal cards */
}

@media (max-width: 1024px) {
    .tb-work-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    /* On tablet a 2-column span already fills the row width, so it
       naturally becomes a full-width featured card — no override needed. */
}

@media (max-width: 640px) {
    .tb-work-grid {
        grid-template-columns: 1fr;
    }
    .tb-work {
        padding: 80px 18px;
    }
    /* On mobile there's only one column, so revert the wide card back
       to a normal single-column card with the standard aspect ratio. */
    .tb-work-card--wide {
        grid-column: span 1;
    }
    .tb-work-card--wide .tb-browser-viewport {
        aspect-ratio: 3 / 2;
    }
}

/* ---------- Card (fade-up on scroll-into-view) ---------- */
.tb-work-card {
    opacity: 0;
    transform: translateY(36px);
    transition:
        transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 20px;
    border: 1px solid var(--tb-border);
    background: #fff;
    display: flex;
    flex-direction: column;
}

.tb-work-card.tb-in-view {
    animation: tb-work-fade-up 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes tb-work-fade-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tb-work-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow:
        0 0 0 1px rgba(255, 152, 0, 0.2),
        0 0 28px -6px rgba(255, 152, 0, 0.3);
}

/* ---------- Browser mockup frame ---------- */
.tb-browser {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tb-browser-toolbar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #1B1F2A;
    flex-shrink: 0;
}

.tb-browser-dots {
    display: flex;
    gap: 7px;
    flex-shrink: 0;
}

.tb-browser-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.tb-browser-dot.tb-red {
    background: #FF5F57;
}

.tb-browser-dot.tb-yellow {
    background: #FEBC2E;
}

.tb-browser-dot.tb-green {
    background: #28C840;
}

.tb-browser-domain {
    flex: 1;
    display: flex;
    justify-content: center;
}

.tb-browser-domain span {
    font-family: 'Inter', sans-serif;
    font-size: 12.5px;
    font-weight: 500;
    color: #9AA1B1;
    background: rgba(255, 255, 255, 0.06);
    padding: 5px 18px;
    border-radius: 8px;
    letter-spacing: 0.01em;
}

/* ---------- Scrolling screenshot viewport ---------- */
.tb-browser-viewport {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 2; /* compressed height — shorter card frame */
    overflow: hidden;
    background: #0d1117;
}

.tb-browser-viewport img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    display: block;
    will-change: transform;
    animation: tb-work-scroll-shot var(--tb-scroll-duration, 15s) linear infinite;
}

/* Pause exactly in place on hover, resume from same spot on mouse-leave */
.tb-work-card:hover .tb-browser-viewport img {
    animation-play-state: paused;
}

/* Generic keyframes — the actual pixel distance is injected per-card
   via the --tb-scroll-distance custom property (set by JS), so this
   single keyframe set adapts automatically to any screenshot height. */
@keyframes tb-work-scroll-shot {
    0%, 8% {
        transform: translate3d(0, 0, 0);
    }
    46%, 54% {
        transform: translate3d(0, var(--tb-scroll-distance, 0px), 0);
    }
    92%, 100% {
        transform: translate3d(0, 0, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .tb-browser-viewport img {
        animation: none !important;
    }
}

/* ---------- Bottom gradient + project info overlay ---------- */
.tb-browser-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 28px 22px 22px;
    background: linear-gradient(180deg, rgba(10, 14, 26, 0) 0%, rgba(8, 10, 20, 0.55) 45%, rgba(6, 8, 16, 0.92) 100%);
    color: #fff;
    z-index: 2;
}

.tb-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #FFB74D;
    background: rgba(10, 14, 26, 0.55);
    border: 1px solid rgba(255, 152, 0, 0.5);
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 10px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 0 14px rgba(255, 152, 0, 0.22);
}

.tb-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #FF9800;
    box-shadow: 0 0 8px 2px rgba(255, 152, 0, 0.75);
}

.tb-project-title {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.3;
    margin-bottom: 6px;
}

.tb-project-desc {
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    font-weight: 400;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.78);
    max-width: 92%;
}

/* Card footer meta row (kept outside the image, always fully legible) */
.tb-work-meta {
    padding: 16px 20px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tb-work-meta-tag {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: var(--tb-muted);
}

.tb-work-meta-link {
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--tb-orange-deep);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.25s ease;
}

.tb-work-meta-link:hover {
    gap: 9px;
}

/* ============================================
   TECHBINGE - GLOBAL STYLES & SCROLLBAR
   ============================================ */

html,
body {
    overflow-x: hidden;
    max-width: 100%;
    scroll-behavior: smooth; /* fallback if JS smooth-scroll fails to load */
}

body > * {
    max-width: 100%;
}

/* ============================================
   TECHBINGE - SITE-WIDE SMOOTH SCROLL (Lenis)
   Applied via the .lenis classes the library adds to <html>.
   Once JS smooth-scroll takes over, native scroll-behavior is
   turned off so the two don't fight each other.
   ============================================ */

html.lenis,
html.lenis body {
    height: auto;
}

html.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

html.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

html.lenis.lenis-stopped {
    overflow: hidden;
}

/* ============================================
   TECHBINGE - SCROLL PROGRESS BAR
   ============================================ */

#tb-scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #fe9400, #f97316);
    z-index: 99999;
    transition: width 0.1s linear;
    pointer-events: none;
}

/* ============================================
   TECHBINGE - SCROLL TO TOP BUTTON
   ============================================ */

#tb-scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #0d1f4e;
    color: #fff;
    border: none;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    opacity: 0;
    transition:
        opacity 0.3s ease,
        transform 0.3s ease,
        background 0.3s ease;
    text-decoration: none;
    font-size: 18px;
}

#tb-scroll-to-top.visible {
    display: flex;
    opacity: 1;
}

#tb-scroll-to-top:hover {
    background: #fe9400;
    transform: translateY(-4px);
    color: #fff;
}

/* ============================================
   TECHBINGE - ACTIVE NAVIGATION STYLES
   ============================================ */

.main-menu__list > li > a.tb-active-nav {
    color: #ffffff !important;
}

.main-menu__list li ul li a {
    color: inherit !important;
}

.main-menu__list li ul li a:hover {
    color: #000000 !important;
}

/* ============================================
   TECHBINGE - CUSTOM SCROLLBAR
   ============================================ */

::-webkit-scrollbar {
    width: 7px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #fe9400, #f97316);
    border-radius: 8px;
}

::-webkit-scrollbar-thumb:hover {
    background: #f97316;
}

/* ============================================
   TECHBINGE - ANIMATION KEYFRAMES
   ============================================ */

@keyframes tbSectionGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(254, 148, 0, 0.35);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(254, 148, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(254, 148, 0, 0);
    }
}

section:target {
    animation: tbSectionGlow 0.9s ease-out;
}

@keyframes tbFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.tb-cta-btn-primary {
    animation: tbFloat 3s ease-in-out infinite;
}

@keyframes tbPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(254, 148, 0, 0.35);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(254, 148, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(254, 148, 0, 0);
    }
}

.tb-portfolio-tab.active {
    animation: tbPulse 2s infinite;
}

@keyframes tbShimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

img[data-src] {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: tbShimmer 1.5s infinite;
}

/* ============================================
   TECHBINGE - RESPONSIVE STYLES
   ============================================ */

@media (max-width: 768px) {
    #tb-scroll-progress {
        height: 2px;
    }
    #tb-scroll-to-top {
        bottom: 20px;
        right: 16px;
        width: 38px;
        height: 38px;
    }
}
/* ============================================
   TECHBINGE - SECTION HEADING WITH GRADIENT BORDER
   Prefix: tb-
   ============================================ */

.tb-section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.tb-section-heading h3,
.tb-section-heading .tb-heading {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.tb-section-heading h3::before,
.tb-section-heading .tb-heading::before {
    content: "";
    flex: 1;
    max-width: 120px;
    height: 2px;
    background: linear-gradient(to right, transparent, #fe9400);
}

.tb-section-heading h3::after,
.tb-section-heading .tb-heading::after {
    content: "";
    flex: 1;
    max-width: 120px;
    height: 2px;
    background: linear-gradient(to left, transparent, #fe9400);
}

.tb-section-heading p {
    font-size: 16px;
    color: #6b7280;
    max-width: 600px;
    margin: 12px auto 0;
}

@media (max-width: 768px) {
    .tb-section-heading h3,
    .tb-section-heading .tb-heading {
        font-size: 26px;
    }
}

/* ============================================
   TECHBINGE - BUTTONS
   ============================================ */

.tb-btn {
    display: inline-block;
    background: #fe9400;
    color: #fff;
    padding: 12px 32px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.tb-btn:hover {
    background: #f97316;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
    color: #fff;
}

.tb-btn-outline {
    background: transparent;
    border: 2px solid #fe9400;
    color: #fe9400;
}

.tb-btn-outline:hover {
    background: #fe9400;
    color: #fff;
}

/* ============================================
   TECHBINGE - GRID SYSTEMS
   ============================================ */

.tb-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.tb-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tb-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.tb-grid-6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

/* ============================================
   TECHBINGE - CARDS
   ============================================ */

.tb-card {
    background: #fff;
    padding: 40px 28px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #eef2f6;
}

.tb-card:hover {
    transform: translateY(-8px);
    border-color: #fe9400;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.1);
}

.tb-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #fff5e8, #fff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid #fee0b5;
}

.tb-card:hover .tb-card-icon {
    background: #fe9400;
    border-color: #fe9400;
}

.tb-card-icon i,
.tb-card-icon img {
    font-size: 36px;
    color: #fe9400;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
}

.tb-card:hover .tb-card-icon i,
.tb-card:hover .tb-card-icon img {
    color: #fff;
    filter: brightness(0) invert(1);
}

.tb-card-title {
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
}

.tb-card-text {
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   TECHBINGE - HERO SECTION
   ============================================ */

.tb-hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #f8faff 0%, #fff 100%);
    overflow: hidden;
}

.tb-hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.tb-hero-content {
    flex: 1;
}

.tb-hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #fe9400, #f97316);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.tb-hero-title {
    font-size: 42px;
    font-weight: 700;
    color: #0d1f4e;
    line-height: 1.2;
    margin-bottom: 20px;
}

.tb-hero-title span {
    color: #fe9400;
}

.tb-hero-text {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 30px;
}

.tb-hero-image {
    flex: 1;
    text-align: center;
}

.tb-hero-image img {
    max-width: 100%;
    height: auto;
    animation: tbFloat 3s ease-in-out infinite;
}

@keyframes tbFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* ============================================
   TECHBINGE - CTA SECTION
   ============================================ */

.tb-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #0d1f4e 0%, #1a2f5e 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tb-cta::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(
        circle,
        rgba(254, 148, 0, 0.1) 0%,
        transparent 70%
    );
    border-radius: 50%;
}

.tb-cta::after {
    content: "";
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(
        circle,
        rgba(254, 148, 0, 0.08) 0%,
        transparent 70%
    );
    border-radius: 50%;
}

.tb-cta-inner {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.tb-cta-title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.tb-cta-text {
    font-size: 16px;
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* ============================================
   TECHBINGE - BACKGROUND COLORS
   ============================================ */

.tb-bg-white {
    background: #fff;
}

.tb-bg-light {
    background: #f8faff;
}

.tb-bg-gray {
    background: #f6f8ff;
}

.tb-bg-dark {
    background: #0d1f4e;
}

/* ============================================
   TECHBINGE - SECTION PADDING
   ============================================ */

.tb-py-60 {
    padding: 60px 0;
}

.tb-py-80 {
    padding: 80px 0;
}

.tb-py-100 {
    padding: 100px 0;
}

/* ============================================
   TECHBINGE - WEBSITE PROCESS DEPLOYMENT SECTION
   Prefix: tb-wps-
   ============================================ */

/* ============================================
   TECHBINGE - SERVICES SECTION
   ============================================ */


/* ============================================
   TECHBINGE - WHY CHOOSE TECHBINGE SECTION
   Scope: #tbWhy
   Prefix: tb-why-
   ============================================ */

.tb-why {
    --tb-orange: #FF9800;
    --tb-orange-light: #FFB74D;
    --tb-navy: #07153D;
    --tb-navy-deep: #050F2E;
    --tb-muted: rgba(226, 232, 245, 0.62);
    --tb-muted-bright: rgba(226, 232, 245, 0.9);
    --tb-border: rgba(255, 255, 255, 0.12);
    --tb-ease: cubic-bezier(0.16, 1, 0.3, 1);

    position: relative;
    background: var(--tb-navy);
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    padding: 130px 24px;
    overflow: hidden;
    box-sizing: border-box;
}

.tb-why * {
    box-sizing: border-box;
}

/* faint ambient glow in the background for depth */
.tb-why::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(45% 40% at 85% 20%, rgba(255, 152, 0, 0.08) 0%, rgba(255, 152, 0, 0) 70%),
        radial-gradient(35% 35% at 5% 90%, rgba(255, 152, 0, 0.05) 0%, rgba(255, 152, 0, 0) 70%);
    pointer-events: none;
}

.tb-why-inner {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 64px;
    align-items: center;
}

/* ================= LEFT COLUMN ================= */
.tb-why-content {
    opacity: 0;
    transform: translateY(30px);
}

.tb-why.tb-in-view .tb-why-content {
    animation: tb-why-fade-up 0.8s var(--tb-ease) forwards;
}

.tb-why-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--tb-orange);
    margin-bottom: 18px;
}

.tb-why-label::before {
    content: '';
    width: 18px;
    height: 2px;
    background: var(--tb-orange);
    border-radius: 2px;
}

.tb-why-title {
    font-size: clamp(2rem, 3.6vw, 2.9rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.16;
    color: #FFFFFF;
    max-width: 480px;
}

/* ---------- Feature list ---------- */
.tb-why-features {
    list-style: none;
    margin: 44px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.tb-why-feature {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    opacity: 0;
    transform: translateY(24px);
    transition: transform 0.3s ease;
    cursor: default;
}

.tb-why.tb-in-view .tb-why-feature {
    animation: tb-why-fade-up 0.7s var(--tb-ease) forwards;
}

.tb-why-feature:hover {
    transform: translateX(6px);
}

.tb-why-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 152, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tb-orange);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}

.tb-why-icon svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.tb-why-feature:hover .tb-why-icon {
    border-color: var(--tb-orange);
    color: var(--tb-orange-light);
    box-shadow: 0 0 0 6px rgba(255, 152, 0, 0.08), 0 0 20px -4px rgba(255, 152, 0, 0.5);
}

.tb-why-feature-body h3 {
    font-size: 17.5px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 6px 0 8px;
    letter-spacing: -0.005em;
    transition: color 0.3s ease;
}

.tb-why-feature-body p {
    font-family: 'Inter', sans-serif;
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--tb-muted);
    max-width: 380px;
    transition: color 0.3s ease;
}

.tb-why-feature:hover .tb-why-feature-body h3 {
    color: #FFFFFF;
}

.tb-why-feature:hover .tb-why-feature-body p {
    color: var(--tb-muted-bright);
}

/* ---------- CTA button ---------- */
.tb-why-cta {
    margin-top: 48px;
    opacity: 0;
    transform: translateY(22px);
}

.tb-why.tb-in-view .tb-why-cta {
    animation: tb-why-fade-up 0.7s var(--tb-ease) forwards;
}

.tb-why-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: var(--tb-orange);
    background: transparent;
    border: 1.5px solid var(--tb-orange);
    border-radius: 12px;
    text-decoration: none;
    transition:
        background 0.35s var(--tb-ease),
        color 0.35s var(--tb-ease),
        box-shadow 0.35s var(--tb-ease),
        transform 0.35s var(--tb-ease);
}

.tb-why-btn:hover {
    background: var(--tb-orange);
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 14px 32px -8px rgba(255, 152, 0, 0.55), 0 0 24px rgba(255, 152, 0, 0.35);
}

.tb-why-btn .tb-arrow {
    transition: transform 0.3s var(--tb-ease);
}

.tb-why-btn:hover .tb-arrow {
    transform: translateX(4px);
}

/* ================= RIGHT COLUMN — VIDEO SHOWCASE ================= */
.tb-why-showcase {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(34px) scale(0.98);
}

.tb-why.tb-in-view .tb-why-showcase {
    animation: tb-why-fade-up-scale 0.9s var(--tb-ease) forwards;
    animation-delay: 0.45s;
}

/* soft ambient glow behind the video */
.tb-why-showcase::before {
    content: '';
    position: absolute;
    inset: -10%;
    background: radial-gradient(60% 60% at 50% 50%, rgba(255, 152, 0, 0.22) 0%, rgba(255, 152, 0, 0) 72%);
    filter: blur(10px);
    z-index: 0;
    pointer-events: none;
}

.tb-why-video-frame {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 600px;
    aspect-ratio: 16/9;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 30px 70px -20px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.04);
    animation: tb-why-float 5.2s ease-in-out infinite;
    will-change: transform;
}

.tb-why-video-frame video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* subtle orange grid overlay to match the tech aesthetic */
.tb-why-grid-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    opacity: 0.08;
    background-image:
        linear-gradient(rgba(255, 152, 0, 0.9) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 152, 0, 0.9) 1px, transparent 1px);
    background-size: 36px 36px;
}

/* faint bottom gradient so the frame reads as a cohesive card */
.tb-why-video-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(7, 21, 61, 0) 55%, rgba(5, 10, 25, 0.35) 100%);
    pointer-events: none;
}

@keyframes tb-why-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes tb-why-fade-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes tb-why-fade-up-scale {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .tb-why-video-frame {
        animation: none !important;
    }
    .tb-why-content, .tb-why-feature, .tb-why-cta, .tb-why-showcase {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

@media (max-width: 1024px) {
    .tb-why-inner {
        grid-template-columns: 1fr;
        gap: 56px;
    }
    .tb-why-showcase {
        order: 2;
    }
    .tb-why-content {
        order: 1;
    }
    .tb-why-title {
        max-width: 100%;
    }
    .tb-why-video-frame {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .tb-why {
        padding: 88px 18px;
    }
    .tb-why-inner {
        gap: 44px;
    }
    .tb-why-features {
        gap: 26px;
        margin-top: 36px;
    }
    .tb-why-cta {
        margin-top: 38px;
        width: 100%;
    }
    .tb-why-btn {
        width: 100%;
        justify-content: center;
    }
    .tb-why-video-frame {
        max-width: 100%;
        aspect-ratio: 4/3;
    }
}

/* ============================================
   TECHBINGE - EXPLORE BRANDS SECTION
   ============================================ */

/* ============================================
   TECHBINGE - PORTFOLIO SECTION
   ============================================ */

/* ============================================
   TECHBINGE - TOOLS WE USE SECTION
   ============================================ */


/* ============================================
   TECHBINGE - TESTIMONIALS SECTION
   ============================================ */

/* ============================================
   TECHBINGE - CTA SECTION
   ============================================ */
/* ============================================
   TECHBINGE - BLOG SECTION
   ============================================ */


/* Inquiry Modal */

/* Our Team */
.abtus-team-page {
    padding: 80px 0;
    background: #fff;
}

.abtus-team-one__single {
    margin-bottom: 30px;
}

.abtus-team-one__img {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.abtus-team-one__img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.abtus-team-one__single:hover .abtus-team-one__img img {
    transform: scale(1.05);
}

.abtus-team-one__social {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    opacity: 0;
    transition: all 0.3s ease;
    transform: translateY(20px);
}

.abtus-team-one__single:hover .abtus-team-one__social {
    opacity: 1;
    transform: translateY(0);
}

.abtus-team-one__social li {
    display: inline-block;
    margin: 0 5px;
}

.abtus-team-one__social li a {
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fe9400;
    transition: all 0.3s ease;
}

.abtus-team-one__social li a:hover {
    background: #fe9400;
    color: #fff;
}

.abtus-team-one__content-box {
    text-align: center;
    margin-top: 20px;
}

.abtus-team-one__name {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 5px;
}

.abtus-team-one__name a {
    color: #1e293b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.abtus-team-one__name a:hover {
    color: #fe9400;
}

.abtus-team-one__title {
    font-size: 14px;
    color: #fe9400;
    font-weight: 500;
    margin: 0;
}

@media (max-width: 768px) {
    .abtus-team-one__img img {
        height: 100%;
    }
}
.img-radius
{
    border-radius: 10px;
}