:root {
    --navy: #07111f;
    --navy2: #0b1d35;
    --blue: #1167d8;
    --blue2: #2e8cff;
    --gold: #d9a33a;
    --gold2: #f5c861;
    --ink: #101826;
    --muted: #687386;
    --paper: #f6f8fb;
    --white: #fff;
    --line: #e4e9f0;
    --radius: 24px;
    --max: 1180px;
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--paper);
    line-height: 1.6
}

body:has(.mobile-open) {
    overflow: hidden
}

a {
    color: inherit;
    text-decoration: none
}

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

button {
    font: inherit
}

.noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: .035;
    z-index: 20;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E")
}

.site-header {
    height: 76px;
    padding: 0 34px;
    display: flex;
    align-items: center;
    gap: 40px;
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(16px);
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(228, 233, 240, .8)
}

.brand {
    width: 170px;
    flex: 0 0 170px
}

.brand img {
    width: 100%;
    height: auto;
    object-fit: contain
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-left: auto;
    font-size: 14px;
    font-weight: 700;
    color: #475467
}

.desktop-nav a {
    transition: color .2s
}

.desktop-nav a:hover {
    color: var(--blue)
}

.header-cta {
    padding: 11px 18px;
    border-radius: 999px;
    background: var(--navy);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 8px 24px rgba(7, 17, 31, .14)
}

.header-cta span {
    color: var(--gold2);
    margin-left: 5px
}

.menu-toggle {
    display: none;
    border: 0;
    background: none;
    font-size: 24px;
    color: var(--ink)
}

.hero {
    min-height: 700px;
    background: var(--navy);
    color: #fff;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.04fr .96fr;
    align-items: center;
    padding: 80px max(34px, calc((100% - var(--max))/2))
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(to bottom, black, transparent 90%)
}

.hero-grid:after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 42%, rgba(22, 119, 255, .20), transparent 34%), radial-gradient(circle at 25% 20%, rgba(218, 165, 58, .08), transparent 24%)
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
    opacity: .5;
    pointer-events: none
}

.orb-one {
    width: 360px;
    height: 360px;
    right: -130px;
    top: 70px;
    background: radial-gradient(circle at 35% 35%, rgba(52, 147, 255, .5), transparent 65%)
}

.orb-two {
    width: 280px;
    height: 280px;
    left: -160px;
    bottom: -130px;
    background: radial-gradient(circle at 60% 40%, rgba(218, 165, 58, .28), transparent 65%)
}

.hero-copy,
.hero-visual {
    position: relative;
    z-index: 2
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 11px;
    letter-spacing: .18em;
    font-weight: 800;
    color: #b8c9de;
    margin-bottom: 22px
}

.eyebrow i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold2);
    box-shadow: 0 0 14px rgba(245, 200, 97, .7)
}

.eyebrow.dark {
    color: #66758b
}

.eyebrow.dark i {
    background: var(--blue);
    box-shadow: none
}

.hero h1 {
    font-size: clamp(48px, 6vw, 78px);
    line-height: .98;
    letter-spacing: -.055em;
    max-width: 720px;
    margin: 0 0 26px;
    font-weight: 850
}

.hero h1 span {
    color: var(--gold2)
}

.hero-lead {
    max-width: 630px;
    color: #b9c6d8;
    font-size: 18px;
    line-height: 1.75;
    margin: 0
}

.hero-actions {
    display: flex;
    gap: 12px;
    margin: 34px 0 28px;
    flex-wrap: wrap
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 21px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 14px;
    transition: transform .2s, box-shadow .2s, background .2s
}

.btn:hover {
    transform: translateY(-2px)
}

.btn-primary {
    background: linear-gradient(135deg, #2b8dff, #0d61d1);
    color: #fff;
    box-shadow: 0 15px 35px rgba(17, 103, 216, .28)
}

.btn-primary b {
    font-size: 17px
}

.btn-ghost {
    border: 1px solid rgba(255, 255, 255, .18);
    color: #fff;
    background: rgba(255, 255, 255, .04)
}

.hero-trust {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    color: #8191a7;
    font-size: 11px;
    font-weight: 700
}

.hero-trust span:before {
    content: "✓";
    color: var(--gold2);
    margin-right: 6px
}

.hero-visual {
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center
}

.product-card {
    width: min(500px, 92%);
    aspect-ratio: 1.08;
    background: linear-gradient(145deg, rgba(18, 42, 71, .95), rgba(6, 17, 31, .98));
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 30px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, .42);
    position: relative;
    overflow: hidden;
    padding: 27px
}

.product-card:before {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    right: -60px;
    top: -80px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 135, 255, .4), transparent 68%)
}

.card-top {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #90a4be;
    font-size: 9px;
    letter-spacing: .15em;
    font-weight: 800
}

.live-dot {
    width: 6px;
    height: 6px;
    background: #54e39a;
    border-radius: 50%;
    box-shadow: 0 0 10px #54e39a
}

.mini-pill {
    margin-left: auto;
    padding: 5px 8px;
    border-radius: 20px;
    border: 1px solid rgba(84, 227, 154, .22);
    color: #75e8a8
}

.card-title {
    font-size: 45px;
    line-height: 1.03;
    letter-spacing: -.04em;
    margin-top: 70px
}

.card-title strong {
    color: #66aaff
}

.signal {
    height: 115px;
    position: relative;
    margin-top: 40px
}

.signal-line {
    position: absolute;
    left: 8%;
    right: 8%;
    top: 53%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #2e8cff, transparent);
    transform: rotate(-7deg)
}

.signal-node {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #0c70e8;
    border: 3px solid #a6d1ff;
    box-shadow: 0 0 18px #1677ff
}

.n1 {
    left: 11%;
    top: 66%
}

.n2 {
    left: 38%;
    top: 48%
}

.n3 {
    left: 64%;
    top: 37%
}

.n4 {
    right: 10%;
    top: 25%
}

.metric-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: 16px;
    gap: 10px
}

.metric-row small {
    display: block;
    color: #71859e;
    font-size: 8px;
    letter-spacing: .14em
}

.metric-row b {
    font-size: 18px
}

.floating-card {
    position: absolute;
    background: rgba(14, 31, 53, .88);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 15px;
    padding: 12px 14px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .28);
    min-width: 190px
}

.floating-card span {
    color: var(--gold2);
    font-size: 18px;
    display: block
}

.floating-card b {
    display: block;
    font-size: 12px
}

.floating-card small {
    color: #8294aa;
    font-size: 9px
}

.float-a {
    left: 0;
    bottom: 42px
}

.float-b {
    right: -4px;
    top: 62px
}

.marquee {
    overflow: hidden;
    background: #fff;
    border-bottom: 1px solid var(--line);
    border-top: 1px solid var(--line);
    white-space: nowrap
}

.marquee-track {
    display: inline-flex;
    gap: 28px;
    padding: 18px 0;
    min-width: max-content;
    animation: scroll 35s linear infinite;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #5b687b
}

.marquee b {
    color: var(--gold)
}

@keyframes scroll {
    to {
        transform: translateX(-50%)
    }
}

.section {
    max-width: var(--max);
    margin: auto;
    padding: 115px 34px
}

.section-head {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 52px
}

.section-head.compact {
    margin-bottom: 44px
}

.section-head h2,
.capabilities h2 {
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.02;
    letter-spacing: -.055em;
    margin: 0;
    font-weight: 850
}

.section-head h2 em,
.capabilities h2 em {
    font-style: normal;
    color: #7d8ba0
}

.section-head>p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
    margin: 0;
    max-width: 440px
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px
}

.service-card {
    min-height: 300px;
    padding: 32px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #fff;
    position: relative;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease, color .25s ease
}

.service-card:hover {
    transform: translateY(-6px);
    background: linear-gradient(145deg, #0a1b30, #102d50);
    color: #fff;
    border-color: #183c65;
    box-shadow: 0 24px 60px rgba(7, 17, 31, .18)
}

.service-card.featured {
    background: linear-gradient(145deg, #0a1b30, #102d50);
    color: #fff;
    border-color: #183c65
}

.service-icon {
    font-size: 26px;
    color: var(--blue);
    height: 48px;
    transition: color .25s ease, transform .25s ease
}

.service-card:hover .service-icon,
.featured .service-icon {
    color: var(--gold2)
}

.service-card:hover .service-icon {
    transform: translateY(-2px)
}

.service-number {
    position: absolute;
    right: 28px;
    top: 28px;
    color: #a9b5c5;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .15em;
    transition: color .25s ease
}

.featured .service-number {
    color: #6985a4
}

.service-card:hover .service-number {
    color: #6985a4
}

.service-card h3 {
    font-size: 27px;
    letter-spacing: -.03em;
    margin: 35px 0 10px
}

.service-card p {
    color: #748196;
    max-width: 460px;
    margin: 0 0 25px;
    transition: color .25s ease
}

.service-card:hover p,
.featured p {
    color: #aab9cb
}

.service-card a {
    font-size: 12px;
    font-weight: 800;
    color: var(--blue);
    transition: color .25s ease
}

.service-card:hover a,
.featured a {
    color: var(--gold2)
}

.service-card a span {
    margin-left: 6px
}

.work {
    padding-top: 30px
}

.work-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 14px
}

.work-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    overflow: hidden;
    transition: transform .25s, box-shadow .25s
}

.work-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 55px rgba(18, 38, 65, .1)
}

.work-large {
    grid-row: span 2
}

.work-art {
    height: 280px;
    position: relative;
    overflow: hidden
}

.work-large .work-art {
    height: 590px
}

.art-softcyber {
    background: radial-gradient(circle at 75% 25%, #dceeff, transparent 26%), linear-gradient(135deg, #f6f9ff, #d9e6f7);
    padding: 34px
}

.art-softcyber:after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    right: 70px;
    top: 90px;
    border: 1px solid #a5bfdc;
    border-radius: 50%;
    box-shadow: 0 0 0 35px rgba(255, 255, 255, .4), 0 0 0 70px rgba(255, 255, 255, .25)
}

.art-label {
    font-size: 23px;
    font-weight: 900;
    letter-spacing: -.05em;
    color: #16283f;
    position: relative;
    z-index: 2
}

.art-window {
    position: absolute;
    left: 13%;
    bottom: 11%;
    width: 55%;
    height: 44%;
    border-radius: 14px;
    background: rgba(255, 255, 255, .8);
    border: 1px solid #c4d4e6;
    box-shadow: 20px 30px 70px rgba(51, 88, 130, .16);
    padding: 20px
}

.art-window div {
    height: 10px;
    background: #d3dfeb;
    border-radius: 10px;
    margin-bottom: 12px
}

.art-window div:nth-child(2) {
    width: 70%
}

.art-window div:nth-child(3) {
    width: 46%
}

.art-caption {
    position: absolute;
    right: 32px;
    bottom: 30px;
    color: #6380a0;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase
}

.art-usite {
    background: linear-gradient(135deg, #f3efff, #ded6ff);
    padding: 30px;
    color: #192c55
}

.art-usite span {
    font-size: 15px;
    font-weight: 900
}

.art-usite strong {
    position: absolute;
    left: 30px;
    bottom: 34px;
    font-size: 25px;
    line-height: 1.05;
    letter-spacing: -.04em
}

.art-usite i {
    position: absolute;
    right: 24px;
    top: 28px;
    border: 1px solid #7881a8;
    padding: 5px 8px;
    border-radius: 30px;
    font-style: normal;
    font-size: 8px;
    font-weight: 800
}

.art-viibits {
    background: linear-gradient(135deg, #075c80, #13b0a8);
    color: #fff;
    padding: 30px
}

.art-viibits span {
    font-weight: 900;
    font-size: 15px
}

.art-viibits strong {
    position: absolute;
    right: 26px;
    bottom: 32px;
    text-align: right;
    font-size: 23px;
    line-height: 1.05;
    letter-spacing: -.04em
}

.art-circles {
    position: absolute;
    width: 170px;
    height: 170px;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 50%;
    left: 50px;
    top: 50px;
    box-shadow: 0 0 0 35px rgba(255, 255, 255, .06), 0 0 0 70px rgba(255, 255, 255, .04)
}

.work-meta {
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.work-meta b {
    display: block;
    font-size: 15px
}

.work-meta small {
    color: #8390a1;
    font-size: 11px
}

.work-meta>span {
    font-size: 20px;
    color: var(--blue)
}

.capabilities {
    padding-top: 95px
}

.cap-layout {
    display: grid;
    grid-template-columns: 1fr .82fr;
    gap: 100px;
    align-items: center
}

.large-copy {
    font-size: 19px;
    color: #647185;
    max-width: 600px;
    line-height: 1.7;
    margin: 28px 0 34px
}

.check-list {
    display: grid;
    gap: 15px
}

.check-list>div {
    display: flex;
    gap: 13px;
    align-items: flex-start
}

.check-list span {
    width: 25px;
    height: 25px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #e7f1ff;
    color: var(--blue);
    font-size: 12px;
    font-weight: 900;
    flex: 0 0 25px
}

.check-list p {
    margin: 0;
    color: #7a8798;
    font-size: 13px;
    line-height: 1.5
}

.check-list b {
    color: var(--ink);
    font-size: 14px
}

.stack-card {
    background: var(--navy);
    color: #fff;
    border-radius: 26px;
    padding: 28px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 35px 80px rgba(7, 17, 31, .2)
}

.stack-glow {
    position: absolute;
    width: 280px;
    height: 280px;
    right: -120px;
    top: -130px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(29, 130, 255, .42), transparent 65%)
}

.stack-top {
    display: flex;
    justify-content: space-between;
    color: #70839c;
    font-size: 9px;
    letter-spacing: .16em;
    font-weight: 800;
    margin-bottom: 18px
}

.tech-row {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr 25px;
    align-items: center;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, .09)
}

.tech-row b {
    font-size: 15px
}

.tech-row span {
    color: #8092a8;
    font-size: 11px
}

.tech-row i {
    font-style: normal;
    color: var(--gold2);
    text-align: right
}

.process {
    padding-top: 40px
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line)
}

.process-step {
    padding: 30px 24px 20px 0;
    border-right: 1px solid var(--line);
    margin-right: 24px
}

.process-step:last-child {
    border-right: 0;
    margin-right: 0
}

.process-step>span {
    color: var(--blue);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .15em
}

.process-step h3 {
    font-size: 22px;
    margin: 30px 0 8px;
    letter-spacing: -.03em
}

.process-step p {
    color: #778498;
    font-size: 13px;
    line-height: 1.7;
    margin: 0
}

.cta {
    background: var(--navy);
    color: #fff;
    position: relative;
    overflow: hidden;
    padding: 120px 34px
}

.cta-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(to bottom, black, transparent)
}

.cta-grid:after {
    content: "";
    position: absolute;
    width: 650px;
    height: 650px;
    left: 50%;
    top: -300px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(30, 126, 255, .22), transparent 65%)
}

.cta-inner {
    max-width: var(--max);
    margin: auto;
    position: relative;
    text-align: center
}

.cta-inner .eyebrow {
    justify-content: center
}

.cta h2 {
    font-size: clamp(48px, 7vw, 82px);
    line-height: .96;
    letter-spacing: -.06em;
    margin: 0 auto 24px
}

.cta h2 span {
    color: var(--gold2)
}

.cta p {
    color: #aab8ca;
    max-width: 600px;
    margin: 0 auto;
    font-size: 16px
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 32px
}

.btn-primary.light {
    background: #fff;
    color: var(--navy);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .25)
}

.btn-outline-light {
    border: 1px solid rgba(255, 255, 255, .22);
    color: #fff
}

footer {
    background: #fff;
    padding: 55px 34px 24px;
    border-top: 1px solid var(--line);
    max-width: none
}

.footer-brand,
.footer-links,
.footer-bottom {
    max-width: var(--max);
    margin-left: auto;
    margin-right: auto
}

.footer-brand img {
    width: 180px
}

.footer-brand p {
    font-size: 12px;
    color: #8591a2;
    margin-top: 8px
}

.footer-links {
    display: flex;
    gap: 25px;
    justify-content: flex-end;
    margin-top: -35px;
    font-size: 12px;
    font-weight: 800;
    color: #566377
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--line);
    margin-top: 45px;
    padding-top: 18px;
    color: #909aaa;
    font-size: 10px
}

@media(max-width:900px) {
    .site-header {
        padding: 0 20px
    }

    .desktop-nav,
    .header-cta {
        display: none
    }

    .menu-toggle {
        display: block;
        margin-left: auto
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 70px 24px 55px;
        min-height: auto
    }

    .hero-copy {
        max-width: 720px
    }

    .hero-visual {
        min-height: 430px;
        margin-top: 25px
    }

    .float-a {
        left: 0
    }

    .float-b {
        right: 0
    }

    .section {
        padding: 85px 24px
    }

    .section-head,
    .cap-layout {
        grid-template-columns: 1fr;
        gap: 28px
    }

    .service-grid {
        grid-template-columns: 1fr
    }

    .work-grid {
        grid-template-columns: 1fr
    }

    .work-large {
        grid-row: auto
    }

    .work-large .work-art {
        height: 340px
    }

    .process-grid {
        grid-template-columns: 1fr 1fr
    }

    .process-step {
        border-right: 0;
        border-bottom: 1px solid var(--line);
        padding-bottom: 28px;
        margin-right: 20px
    }

    .cap-layout {
        gap: 55px
    }

    .cta {
        padding: 90px 24px
    }

    .footer-links {
        justify-content: flex-start;
        margin-top: 30px
    }

    .footer-bottom {
        gap: 15px;
        flex-direction: column
    }
}

@media(max-width:560px) {
    .site-header {
        height: 68px
    }

    .brand {
        width: 145px;
        flex-basis: 145px
    }

    .hero {
        padding-top: 55px
    }

    .hero h1 {
        font-size: 47px
    }

    .hero-lead {
        font-size: 15px
    }

    .hero-visual {
        min-height: 370px
    }

    .product-card {
        padding: 20px;
        border-radius: 22px
    }

    .card-title {
        font-size: 34px;
        margin-top: 48px
    }

    .signal {
        margin-top: 24px
    }

    .floating-card {
        min-width: 150px;
        padding: 10px
    }

    .float-a {
        bottom: 20px
    }

    .float-b {
        top: 20px
    }

    .section-head h2,
    .capabilities h2 {
        font-size: 43px
    }

    .work-art,
    .work-large .work-art {
        height: 260px
    }

    .process-grid {
        grid-template-columns: 1fr
    }

    .process-step {
        margin-right: 0
    }

    .cta h2 {
        font-size: 48px
    }
}

.mobile-nav {
    display: none;
    position: fixed;
    inset: 68px 0 0;
    background: rgba(7, 17, 31, .98);
    z-index: 49;
    padding: 35px 24px
}

.mobile-nav a {
    display: block;
    color: #fff;
    font-size: 26px;
    font-weight: 800;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1)
}

.mobile-open .mobile-nav {
    display: block
}

.text-dark {
    color: rgba(7, 17, 31, .98) !important;
}

/* =========================================================
   TAJ — PROJECT SHOWCASE
========================================================= */

.taj-work-section {
    position: relative;
    padding: 120px 0;
    background:
        radial-gradient(circle at 10% 10%,
            rgba(17, 103, 216, 0.05),
            transparent 30%),
        #f6f8fb;
    overflow: hidden;
}

.taj-work-container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}


/* =========================================================
   HEADING
========================================================= */

.taj-work-heading {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 60px;
    align-items: end;
    margin-bottom: 42px;
}

.taj-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #65748a;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .18em;
    margin-bottom: 18px;
}

.taj-eyebrow span {
    width: 8px;
    height: 8px;
    background: #1167d8;
    border-radius: 50%;
}

.taj-work-heading h2 {
    margin: 0;
    color: #101826;
    font-size: clamp(42px, 5vw, 66px);
    line-height: 1;
    letter-spacing: -.055em;
    font-weight: 850;
}

.taj-work-heading h2 em {
    color: #7b899c;
    font-style: normal;
}

.taj-work-intro {
    max-width: 700px;
    margin: 25px 0 0;
    color: #6e7b8e;
    font-size: 15px;
    line-height: 1.75;
}

.taj-work-side-text {
    padding-left: 25px;
    border-left: 1px solid #d9e0e8;
    color: #d39b2e;
    font-size: 25px;
    line-height: 1.15;
    font-weight: 700;
    transform: rotate(-4deg);
}

.taj-work-side-text strong,
.taj-work-side-text span {
    display: block;
}


/* =========================================================
   FILTERS
========================================================= */

.taj-work-filters {
    display: flex;
    justify-content: center;
    gap: 4px;
    padding: 5px;
    margin: 0 auto 32px;
    width: fit-content;
    max-width: 100%;
    overflow-x: auto;
    background: rgba(255, 255, 255, .8);
    border: 1px solid #e2e7ee;
    border-radius: 999px;
    box-shadow: 0 8px 25px rgba(16, 24, 38, .04);
}

.taj-filter {
    border: 0;
    background: transparent;
    color: #65748a;
    border-radius: 999px;
    padding: 11px 19px;
    font-size: 12px;
    font-weight: 750;
    white-space: nowrap;
    cursor: pointer;
    transition:
        background .25s ease,
        color .25s ease,
        box-shadow .25s ease;
}

.taj-filter:hover {
    color: #1167d8;
}

.taj-filter.active {
    color: #fff;
    background: linear-gradient(135deg,
            #176fdf,
            #084fae);
    box-shadow:
        0 8px 20px rgba(17, 103, 216, .22);
}


/* =========================================================
   PROJECT GRID
========================================================= */

.taj-project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.taj-project-card {
    background: #fff;
    border: 1px solid #e0e6ee;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(16, 24, 38, .045);
    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.taj-project-card:hover {
    transform: translateY(-7px);
    border-color: #c9d8ea;
    box-shadow:
        0 25px 60px rgba(16, 24, 38, .11);
}


/* =========================================================
   PROJECT VISUAL
========================================================= */

.taj-project-visual {
    height: 330px;
    position: relative;
    overflow: hidden;
}


/* category */

.taj-project-category {
    position: absolute;
    top: 17px;
    left: 17px;
    z-index: 8;

    display: inline-flex;
    align-items: center;
    gap: 7px;

    padding: 8px 12px;

    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: 999px;

    color: #17263b;
    font-size: 10px;
    font-weight: 800;

    box-shadow: 0 7px 20px rgba(0, 0, 0, .08);
}

.taj-category-icon {
    color: #1167d8;
    font-size: 14px;
}


/* =========================================================
   PROPERTY PROJECT
========================================================= */

.taj-project-property {
    background:
        radial-gradient(circle at 75% 20%,
            rgba(91, 166, 255, .5),
            transparent 25%),
        linear-gradient(145deg,
            #dcecff,
            #eef5fd);
}

.taj-browser {
    position: absolute;
    left: 8%;
    right: 8%;
    bottom: -5px;

    height: 245px;

    background: #fff;
    border-radius: 14px 14px 0 0;

    box-shadow:
        0 25px 50px rgba(20, 61, 100, .2);

    overflow: hidden;
}

.taj-browser-bar {
    height: 21px;
    display: flex;
    gap: 4px;
    align-items: center;
    padding-left: 10px;
    background: #edf2f7;
}

.taj-browser-bar span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #aab7c7;
}

.taj-property-screen {
    position: relative;
    height: calc(100% - 21px);
    overflow: hidden;
    background:
        linear-gradient(100deg,
            rgba(9, 70, 135, .95),
            rgba(20, 110, 200, .45));
}

.taj-property-nav {
    height: 35px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 0 14px;

    color: #fff;
    font-size: 7px;
}

.taj-property-nav b {
    font-size: 10px;
}

.taj-property-nav div {
    display: flex;
    gap: 10px;
    opacity: .85;
}

.taj-property-content {
    position: absolute;
    left: 18px;
    top: 58px;
    z-index: 2;
    color: #fff;
}

.taj-property-content small {
    font-size: 7px;
    letter-spacing: .15em;
    font-weight: 800;
}

.taj-property-content h4 {
    margin: 4px 0;
    font-size: 26px;
    line-height: .95;
    letter-spacing: -.05em;
}

.taj-property-content p {
    margin: 5px 0 13px;
    font-size: 8px;
}

.taj-property-search {
    width: 155px;
    padding: 8px 10px;
    border-radius: 5px;

    background: #fff;
    color: #738197;

    font-size: 7px;
}

.taj-property-search b {
    float: right;
    color: #1167d8;
}

.taj-house-shape {
    position: absolute;
    right: -25px;
    bottom: -55px;

    width: 230px;
    height: 170px;

    transform: rotate(-5deg);
    background:
        linear-gradient(135deg,
            #dfe8ef 50%,
            #a7b6c5 50%);

    opacity: .8;
}

.taj-house-shape:before {
    content: "";
    position: absolute;

    width: 160px;
    height: 100px;

    left: 35px;
    top: 40px;

    background: #f8fbff;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, .3);
}

.taj-house-shape:after {
    content: "";
    position: absolute;

    left: 20px;
    top: 5px;

    border-left: 105px solid transparent;
    border-right: 105px solid transparent;
    border-bottom: 70px solid #d0dce8;
}

.taj-property-stat {
    position: absolute;
    right: 15px;
    top: 60px;
    z-index: 5;

    padding: 9px 12px;

    background: #fff;
    border-radius: 8px;

    box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
}

.taj-property-stat strong {
    display: block;
    color: #1167d8;
    font-size: 17px;
}

.taj-property-stat span {
    color: #78879a;
    font-size: 7px;
}


/* =========================================================
   MOBILE APP PROJECT
========================================================= */

.taj-project-mobile {
    background:
        radial-gradient(circle at 50% 55%,
            rgba(24, 119, 255, .35),
            transparent 38%),
        linear-gradient(135deg,
            #06182d,
            #0d3158);
}

.taj-project-mobile:after {
    content: "";
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(135deg,
            rgba(255, 255, 255, .06) 1px,
            transparent 1px);

    background-size: 35px 35px;
    opacity: .45;
}

.taj-mobile-copy {
    position: absolute;
    left: 20px;
    bottom: 30px;
    z-index: 3;

    color: #fff;
}

.taj-mobile-copy span {
    display: block;
    color: #8bbdff;
    font-size: 7px;
    letter-spacing: .2em;
    font-weight: 800;
    margin-bottom: 7px;
}

.taj-mobile-copy strong {
    display: block;
    color: #f4c75d;
    font-size: 22px;
    line-height: 1;
    font-style: italic;
}

.taj-phone {
    position: absolute;
    z-index: 5;

    width: 125px;
    height: 245px;

    background: #f9fbff;

    border: 4px solid #182d46;
    border-radius: 20px;

    padding: 25px 10px 10px;

    box-shadow:
        0 25px 45px rgba(0, 0, 0, .35);

    color: #152238;
}

.taj-phone-one {
    right: 42%;
    top: 58px;
    transform: rotate(-8deg);
}

.taj-phone-two {
    right: 13%;
    top: 48px;
    transform: rotate(7deg);
}

.taj-phone-notch {
    position: absolute;
    top: 7px;
    left: 50%;
    width: 43px;
    height: 8px;

    background: #16283d;
    border-radius: 10px;

    transform: translateX(-50%);
}

.taj-phone small {
    font-size: 6px;
    color: #7a899b;
}

.taj-phone>b {
    display: block;
    font-size: 10px;
    margin-top: 2px;
}

.taj-balance {
    margin-top: 14px;
    padding: 11px 9px;

    color: #fff;

    border-radius: 10px;

    background:
        linear-gradient(135deg,
            #126bd7,
            #0a428e);
}

.taj-balance span {
    display: block;
    font-size: 5px;
    opacity: .8;
}

.taj-balance strong {
    font-size: 13px;
}

.taj-phone-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
}

.taj-phone-actions span {
    width: 18px;
    height: 18px;

    display: grid;
    place-items: center;

    border-radius: 50%;
    background: #edf3fa;

    color: #1167d8;
    font-size: 8px;
}

.taj-phone-lines {
    margin-top: 14px;
}

.taj-phone-lines i {
    display: block;
    width: 80%;
    height: 5px;

    margin-bottom: 7px;

    border-radius: 10px;
    background: #e7edf4;
}

.taj-phone-lines i:nth-child(2) {
    width: 55%;
}

.taj-phone-lines i:nth-child(3) {
    width: 70%;
}

.taj-contact {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 4px;
    margin-top: 10px;
}

.taj-contact span {
    grid-row: span 2;
    font-size: 11px;
}

.taj-contact b {
    font-size: 6px;
}

.taj-contact small {
    font-size: 5px;
}

.taj-phone-two button {
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 10px;

    border: 0;
    border-radius: 7px;

    padding: 7px;

    background: #1167d8;
    color: #fff;

    font-size: 6px;
    font-weight: 800;
}


/* =========================================================
   SOFTWARE DASHBOARD
========================================================= */

.taj-project-dashboard {
    background:
        radial-gradient(circle at 80% 15%,
            rgba(78, 138, 255, .4),
            transparent 30%),
        linear-gradient(135deg,
            #e8f0fa,
            #d6e6f7);
}

.taj-dashboard {
    position: absolute;

    left: 8%;
    right: 8%;
    bottom: -2px;

    height: 245px;

    display: flex;

    background: #fff;

    border-radius: 12px 12px 0 0;

    box-shadow:
        0 25px 55px rgba(19, 56, 91, .22);

    overflow: hidden;
}

.taj-dashboard-sidebar {
    width: 95px;
    flex-shrink: 0;

    padding: 16px 9px;

    background: #071a30;
    color: #fff;
}

.taj-dashboard-sidebar strong {
    display: block;
    font-size: 9px;
    margin-bottom: 22px;
}

.taj-dashboard-sidebar a {
    display: block;

    padding: 7px;

    margin-bottom: 2px;

    border-radius: 4px;

    color: #8295ad;

    font-size: 6px;
}

.taj-dashboard-sidebar a.active {
    color: #fff;
    background: #126bd7;
}

.taj-dashboard-main {
    flex: 1;
    padding: 16px;
    background: #f7f9fc;
}

.taj-dashboard-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.taj-dashboard-top small {
    color: #9aa7b7;
    font-size: 5px;
    letter-spacing: .1em;
}

.taj-dashboard-top h4 {
    margin: 2px 0 0;
    font-size: 14px;
}

.taj-avatar {
    width: 23px;
    height: 23px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #e1edff;
    color: #1167d8;

    font-size: 8px;
    font-weight: 800;
}

.taj-dashboard-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
    margin-top: 13px;
}

.taj-dashboard-stats div {
    padding: 7px;

    border-radius: 6px;

    background: #fff;
    border: 1px solid #e7ecf2;
}

.taj-dashboard-stats small {
    display: block;
    color: #9aa7b7;
    font-size: 4px;
}

.taj-dashboard-stats strong {
    font-size: 13px;
}

.taj-chart {
    height: 105px;

    margin-top: 7px;
    padding: 10px;

    border-radius: 7px;

    background: #fff;
    border: 1px solid #e7ecf2;
}

.taj-chart-heading {
    font-size: 6px;
    font-weight: 800;
}

.taj-chart-bars {
    height: 70px;

    display: flex;
    align-items: end;
    gap: 7px;

    margin-top: 6px;
}

.taj-chart-bars i {
    flex: 1;

    display: block;

    border-radius: 3px 3px 0 0;

    background:
        linear-gradient(to top,
            #126bd7,
            #7ebaff);
}


/* =========================================================
   PROJECT CONTENT
========================================================= */

.taj-project-content {
    padding: 22px;
}

.taj-project-content h3 {
    margin: 0 0 8px;

    color: #101826;

    font-size: 22px;
    letter-spacing: -.035em;
}

.taj-project-content p {
    min-height: 65px;

    margin: 0;

    color: #738197;

    font-size: 12px;
    line-height: 1.65;
}

.taj-tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;

    margin-top: 16px;
}

.taj-tech-stack span {
    padding: 6px 9px;

    border-radius: 999px;

    background: #f0f5fb;

    color: #61728a;

    font-size: 9px;
    font-weight: 750;
}

.taj-project-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 22px;
    padding-top: 16px;

    border-top: 1px solid #edf0f4;
}

.taj-case-link {
    color: #1167d8;
    font-size: 11px;
    font-weight: 850;
}

.taj-case-link b {
    margin-left: 5px;
    font-size: 15px;
}

.taj-live-link {
    color: #596a80;
    font-size: 10px;
    font-weight: 700;
}

.taj-live-link span {
    margin-left: 5px;
    color: #1167d8;
    font-size: 15px;
}


/* =========================================================
   RESULTS
========================================================= */

.taj-results {
    display: grid;

    grid-template-columns:
        1fr 1fr 1fr 1fr 1.15fr;

    gap: 0;

    margin-top: 28px;

    padding: 24px;

    background: #fff;

    border: 1px solid #e0e6ee;
    border-radius: 22px;

    box-shadow:
        0 12px 35px rgba(16, 24, 38, .04);
}

.taj-result {
    display: flex;
    align-items: center;
    gap: 13px;

    padding: 8px 20px;

    border-right: 1px solid #e6ebf1;
}

.taj-result-icon {
    width: 40px;
    height: 40px;

    flex-shrink: 0;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #e8f2ff;

    color: #1167d8;

    font-size: 18px;
}

.taj-result-icon.gold {
    background: #fff5dc;
    color: #d69b25;
}

.taj-result-icon.purple {
    background: #f1eaff;
    color: #7756d9;
}

.taj-result-icon.green {
    background: #e6f8ef;
    color: #20a66a;
}

.taj-result strong {
    display: block;

    color: #152238;

    font-size: 24px;
    line-height: 1;
}

.taj-result span {
    display: block;

    margin-top: 3px;

    color: #425168;

    font-size: 10px;
    font-weight: 750;
}

.taj-result small {
    display: block;

    margin-top: 2px;

    color: #99a5b4;

    font-size: 8px;
}

.taj-results-cta {
    padding-left: 28px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.taj-results-cta small {
    color: #8492a6;
    font-size: 8px;
    letter-spacing: .16em;
    font-weight: 800;
}

.taj-results-cta strong {
    margin: 2px 0 12px;

    color: #18253a;

    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.taj-results-cta a {
    width: fit-content;

    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 9px 14px;

    border-radius: 999px;

    background: #071a30;
    color: #fff;

    font-size: 9px;
    font-weight: 800;

    box-shadow:
        0 8px 20px rgba(7, 26, 48, .15);
}

.taj-results-cta a span {
    color: #f5c861;
    font-size: 13px;
}


/* =========================================================
   FILTER ANIMATION
========================================================= */

.taj-project-card.taj-hidden {
    display: none;
}

.taj-project-card.taj-filter-show {
    animation: tajProjectIn .35s ease both;
}

@keyframes tajProjectIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1050px) {

    .taj-project-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .taj-results {
        grid-template-columns: repeat(2, 1fr);
    }

    .taj-result {
        padding: 16px;
        border-bottom: 1px solid #e6ebf1;
    }

    .taj-result:nth-child(2) {
        border-right: 0;
    }

    .taj-results-cta {
        grid-column: span 2;
        padding: 20px 16px 5px;
    }
}


@media (max-width: 760px) {

    .taj-work-section {
        padding: 80px 0;
    }

    .taj-work-container {
        width: min(100% - 30px, 600px);
    }

    .taj-work-heading {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .taj-work-side-text {
        display: none;
    }

    .taj-work-heading h2 {
        font-size: 46px;
    }

    .taj-work-intro {
        font-size: 14px;
    }

    .taj-work-filters {
        width: 100%;
        justify-content: flex-start;
        border-radius: 15px;
    }

    .taj-project-grid {
        grid-template-columns: 1fr;
    }

    .taj-project-visual {
        height: 330px;
    }
}


@media (max-width: 480px) {

    .taj-results {
        grid-template-columns: 1fr;
        padding: 15px;
    }

    .taj-result {
        border-right: 0;
    }

    .taj-results-cta {
        grid-column: auto;
        padding: 20px 10px 5px;
    }

    .taj-project-actions {
        align-items: flex-start;
        gap: 10px;
    }

    .taj-phone {
        width: 110px;
    }

    .taj-phone-one {
        right: 42%;
    }

    .taj-phone-two {
        right: 8%;
    }
}
/* =========================================
   TAJ PROJECT SLIDER
========================================= */

.taj-project-slider-wrapper {
    position: relative;
    width: 100%;
    padding: 0 52px;
    box-sizing: border-box;
}

.taj-project-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.taj-project-track {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 18px;
    width: 100%;
    transition: transform .45s ease;
    will-change: transform;
}

/* CARD */

.taj-project-track .taj-project-card {
    flex: 0 0 calc((100% - 36px) / 3);
    width: calc((100% - 36px) / 3);
    min-width: 0;
    margin: 0;
    padding: 0;
    box-sizing: border-box;

    background: #fff;
    border: 1px solid #e3e8ef;
    border-radius: 18px;
    overflow: hidden;

    box-shadow: 0 8px 25px rgba(16, 24, 38, .05);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.taj-project-track .taj-project-card:hover {
    transform: translateY(-5px);
    border-color: #c9d7e7;
    box-shadow: 0 18px 40px rgba(16, 24, 38, .12);
}

/* IMAGE */

.taj-project-visual {
    position: relative;
    height: 205px;
    width: 100%;
    overflow: hidden;
    background: #edf3f9;
}

.taj-project-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.taj-project-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: transform .45s ease;
}

.taj-project-card:hover .taj-project-image img {
    transform: scale(1.04);
}

/* CATEGORY */

.taj-project-category {
    position: absolute;
    top: 13px;
    left: 13px;

    z-index: 5;

    display: inline-flex;
    align-items: center;
    gap: 6px;

    padding: 7px 11px;

    background: rgba(255,255,255,.95);
    color: #17263b;

    border-radius: 50px;

    font-size: 9px;
    font-weight: 800;

    box-shadow: 0 7px 18px rgba(0,0,0,.1);
}

.taj-category-icon {
    color: #1167d8;
    font-size: 12px;
}

/* IMAGE HOVER */

.taj-project-image-overlay {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    background: rgba(7,17,31,.65);
    color: #fff;

    opacity: 0;

    transition: opacity .25s ease;

    font-size: 11px;
    font-weight: 800;
}

.taj-project-card:hover .taj-project-image-overlay {
    opacity: 1;
}

.taj-project-image-overlay b {
    color: #f5c861;
    font-size: 16px;
}

/* CONTENT */

.taj-project-content {
    padding: 17px 18px 16px;
    box-sizing: border-box;
}

.taj-project-title-row {
    display: flex;
    align-items: center;
}

.taj-project-content h3 {
    margin: 0;

    color: #101826;

    font-size: 19px;
    line-height: 1.2;

    letter-spacing: -.035em;
}

.taj-project-content p {
    margin: 9px 0 0;

    color: #758296;

    font-size: 11px;
    line-height: 1.55;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;

    min-height: 34px;
}

/* TAGS */

.taj-project-content .taj-tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;

    margin-top: 12px;
}

.taj-project-content .taj-tech-stack span {
    display: inline-block;

    padding: 5px 8px;

    border-radius: 999px;

    background: #f1f5fa;
    color: #65758b;

    font-size: 8px;
    font-weight: 750;
}

/* ACTION */

.taj-project-actions {
    display: flex;
    justify-content: flex-end;

    margin-top: 13px;
    padding-top: 11px;

    border-top: 1px solid #edf0f4;
}

.taj-live-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;

    color: #1167d8;

    font-size: 9px;
    font-weight: 850;

    text-decoration: none;
}

.taj-live-link span {
    font-size: 13px;
}

/* ARROWS */

.taj-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    z-index: 20;

    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    border: 1px solid #dfe6ee;
    border-radius: 50%;

    background: #fff;
    color: #17263b;

    font-size: 17px;

    cursor: pointer;

    box-shadow: 0 8px 22px rgba(16,24,38,.1);

    transition:
        background .2s ease,
        color .2s ease,
        transform .2s ease;
}

.taj-slider-arrow:hover {
    background: #071a30;
    color: #fff;

    transform: translateY(-50%) scale(1.05);
}

.taj-slider-arrow:disabled {
    opacity: .35;
    cursor: default;
}

.taj-slider-prev {
    left: 0;
}

.taj-slider-next {
    right: 0;
}

/* DOTS */

.taj-slider-dots {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 6px;

    margin-top: 18px;
}

.taj-slider-dot {
    width: 6px;
    height: 6px;

    padding: 0;
    border: 0;

    border-radius: 50%;

    background: #d3dce8;

    cursor: pointer;

    transition:
        width .25s ease,
        background .25s ease;
}

.taj-slider-dot.active {
    width: 20px;
    border-radius: 20px;
    background: #1167d8;
}

/* EMPTY */

.taj-no-projects {
    width: 100%;
    padding: 40px;
    text-align: center;
    color: #758296;
}

/* TABLET */

@media (max-width: 1000px) {

    .taj-project-track .taj-project-card {
        flex-basis: calc((100% - 18px) / 2);
        width: calc((100% - 18px) / 2);
    }

}

/* MOBILE */

@media (max-width: 680px) {

    .taj-project-slider-wrapper {
        padding: 0 42px;
    }

    .taj-project-track .taj-project-card {
        flex-basis: 100%;
        width: 100%;
    }

    .taj-project-visual {
        height: 210px;
    }

    .taj-project-content {
        padding: 16px;
    }

    .taj-slider-arrow {
        width: 34px;
        height: 34px;
        font-size: 15px;
    }

}
/* =========================================
   TAJ CTA + CONTACT
========================================= */

.taj-contact-cta {
    position: relative;
    overflow: hidden;
}

.taj-contact-cta .cta-inner {
    position: relative;
    z-index: 2;
}


/* CONTACT BOX */

.taj-cta-contact-box {
    width: min(1000px, 100%);
    margin: 75px auto 0;

    display: grid;
    grid-template-columns: .75fr 1.25fr;

    text-align: left;

    border: 1px solid rgba(255,255,255,.13);
    border-radius: 24px;

    background: rgba(255,255,255,.045);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    overflow: hidden;

    box-shadow:
        0 30px 80px rgba(0,0,0,.20);
}


/* LEFT */

.taj-cta-contact-intro {
    padding: 38px;

    border-right: 1px solid rgba(255,255,255,.10);
}

.taj-cta-contact-label {
    color: #f5c861;

    font-size: 9px;
    font-weight: 850;
    letter-spacing: .16em;
}

.taj-cta-contact-intro h3 {
    margin: 13px 0 0;

    color: #fff;

    font-size: 32px;
    line-height: 1.05;
    letter-spacing: -.045em;
}

.taj-cta-contact-intro h3 span {
    color: #f5c861;
}

.taj-cta-contact-intro p {
    margin: 15px 0 0;

    color: #91a2b8;

    font-size: 11px;
    line-height: 1.65;
}


/* POINTS */

.taj-cta-contact-points {
    display: flex;
    flex-direction: column;
    gap: 12px;

    margin-top: 28px;
}

.taj-cta-contact-points div {
    display: flex;
    align-items: center;
    gap: 9px;
}

.taj-cta-contact-points span {
    width: 20px;
    height: 20px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: rgba(245,200,97,.12);
    color: #f5c861;

    font-size: 9px;
}

.taj-cta-contact-points small {
    color: #91a2b8;
    font-size: 9px;
}


/* FORM */

.taj-cta-form {
    padding: 38px;
}

.taj-cta-form form {
    width: 100%;
}


/* ROW */

.taj-cta-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}


/* FIELD */

.taj-cta-field {
    position: relative;
    margin-bottom: 18px;
}

.taj-cta-field label {
    display: block;

    margin-bottom: 7px;

    color: #8294ab;

    font-size: 8px;
    font-weight: 850;

    letter-spacing: .13em;
}

.taj-cta-field input,
.taj-cta-field textarea {

    width: 100%;
    box-sizing: border-box;

    border: 1px solid rgba(255,255,255,.13);
    border-radius: 10px;

    background: rgba(0,0,0,.16);

    color: #fff;

    padding: 13px 14px;

    outline: none;

    font-family: inherit;
    font-size: 11px;

    transition:
        border-color .2s ease,
        background .2s ease,
        box-shadow .2s ease;
}

.taj-cta-field textarea {
    resize: vertical;
    min-height: 120px;
}

.taj-cta-field input::placeholder,
.taj-cta-field textarea::placeholder {
    color: #62748c;
}

.taj-cta-field input:focus,
.taj-cta-field textarea:focus {
    border-color: rgba(245,200,97,.65);

    background: rgba(0,0,0,.25);

    box-shadow:
        0 0 0 3px rgba(245,200,97,.06);
}


/* COUNTER */

.taj-cta-counter {
    position: absolute;

    right: 11px;
    bottom: 9px;

    color: #62748c;

    font-size: 8px;
}


/* FORM BOTTOM */

.taj-cta-form-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    margin-top: 3px;
}


/* PRIVATE */

.taj-cta-private {
    display: flex;
    align-items: center;
    gap: 7px;
}

.taj-cta-private span {
    width: 20px;
    height: 20px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: rgba(70,190,120,.12);

    color: #65cf91;

    font-size: 9px;
}

.taj-cta-private small {
    color: #71849c;
    font-size: 8px;
}


/* SUBMIT */

.taj-cta-submit {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 13px 18px;

    border: 0;
    border-radius: 10px;

    background: #f5c861;
    color: #071a30;

    font-family: inherit;

    font-size: 10px;
    font-weight: 850;

    cursor: pointer;

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}

.taj-cta-submit b {
    font-size: 14px;
}

.taj-cta-submit:hover {
    transform: translateY(-2px);

    box-shadow:
        0 12px 30px rgba(245,200,97,.20);
}

.taj-cta-submit:disabled {
    opacity: .55;
    cursor: wait;
}


/* SUCCESS */

.taj-cta-success {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 18px;
    padding: 12px 14px;

    border: 1px solid rgba(80,200,130,.25);
    border-radius: 10px;

    background: rgba(60,180,110,.08);
}

.taj-cta-success > span {
    width: 24px;
    height: 24px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #299357;
    color: #fff;

    font-size: 10px;
}

.taj-cta-success strong {
    display: block;

    color: #75d39b;

    font-size: 9px;
}

.taj-cta-success small {
    display: block;

    margin-top: 2px;

    color: #718f7d;

    font-size: 8px;
}


/* HONEYPOT */

.taj-honeypot {
    position: absolute !important;

    left: -9999px !important;

    width: 1px !important;
    height: 1px !important;

    opacity: 0 !important;
    overflow: hidden !important;
}


/* TABLET */

@media (max-width: 850px) {

    .taj-cta-contact-box {
        grid-template-columns: 1fr;
    }

    .taj-cta-contact-intro {
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.10);
    }

}


/* MOBILE */

@media (max-width: 600px) {

    .taj-cta-contact-box {
        margin-top: 50px;
        border-radius: 18px;
    }

    .taj-cta-contact-intro,
    .taj-cta-form {
        padding: 24px;
    }

    .taj-cta-contact-intro h3 {
        font-size: 27px;
    }

    .taj-cta-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .taj-cta-form-bottom {
        align-items: stretch;
        flex-direction: column;
    }

    .taj-cta-submit {
        justify-content: center;
        width: 100%;
    }

}