/* =====================================================
   ROOT
===================================================== */

:root {

    --white: #ffffff;
    --off-white: #f7f9fc;
    --soft-white: #eef2f7;

    --ink: #101828;
    --ink-soft: #475467;

    --blue: #246bfd;
    --blue-dark: #1554d1;

    --cyan: #27b8d6;

    --navy: #101b33;
    --navy-2: #16233f;

    --border: #e4e9f0;

    --shadow:
        0 20px 60px rgba(16, 24, 40, 0.08);

    --radius: 22px;

}


/* =====================================================
   RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {

    font-family: "DM Sans", sans-serif;

    color: var(--ink);

    background: var(--white);

    line-height: 1.6;

    overflow-x: hidden;

}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

button,
input,
textarea {
    font: inherit;
}


/* =====================================================
   LOGO
===================================================== */


.tbw-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    flex-shrink: 0;
}

.tbw-logo-mark {
    width: 37px;
    height: 37px;

    display: grid;
    place-items: center;

    border-radius: 11px;

    background:
        linear-gradient(
            135deg,
            #2563eb,
            #06b6d4
        );

    color: #ffffff;

    font-family: "Manrope", sans-serif;
    font-weight: 800;

    box-shadow:
        0 8px 20px rgba(37, 99, 235, 0.22);
}

.tbw-logo-text {
    font-family: "Manrope", sans-serif;

    font-size: 22px;
    font-weight: 800;

    letter-spacing: -1px;
}

.tbw-logo-text span {
    color: var(--tbw-primary);
}

.footer-p{
  margin-top: 15px;
}
/* =====================================================
   CONTAINER
===================================================== */

.container {

    width: min(1180px, calc(100% - 48px));

    margin: 0 auto;

}


/* =====================================================
   HEADER
===================================================== */

.site-header {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    background: rgba(255, 255, 255, 0.88);

    backdrop-filter: blur(18px);

    border-bottom: 1px solid transparent;

    transition: 0.35s ease;

}

.site-header.scrolled {

    background: rgba(255, 255, 255, 0.96);

    border-bottom-color: var(--border);

    box-shadow:
        0 10px 40px rgba(16, 24, 40, 0.06);

}

.header-inner {

    height: 82px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 35px;

}

.brand-logo img {

    width: 145px;

    height: auto;

}

.nav-menu {

    display: flex;

    align-items: center;

    gap: 30px;

}

.nav-menu a {

    position: relative;

    font-size: 14px;

    font-weight: 600;

    color: #475467;

    transition: 0.3s ease;

}

.nav-menu a:hover,
.nav-menu a.active {

    color: var(--ink);

}

.nav-menu a::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -8px;

    width: 0;

    height: 2px;

    background: var(--blue);

    transition: 0.3s ease;

}

.nav-menu a:hover::after,
.nav-menu a.active::after {

    width: 100%;

}

.header-cta {

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 12px 19px;

    color: white;

    background: var(--navy);

    border-radius: 50px;

    font-size: 13px;

    font-weight: 700;

    transition: 0.3s ease;

}

.header-cta:hover {

    background: var(--blue);

    transform: translateY(-2px);

}


/* =====================================================
   HERO
===================================================== */

.hero {

    position: relative;

    min-height: 820px;

    padding-top: 82px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(36, 107, 253, 0.10),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f5f8fc 100%
        );

}

.hero-grid {

    position: absolute;

    inset: 0;

    opacity: 0.45;

    background-image:
        linear-gradient(
            rgba(16, 24, 40, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(16, 24, 40, 0.035) 1px,
            transparent 1px
        );

    background-size: 60px 60px;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent
        );

}

.hero-orb {

    position: absolute;

    border-radius: 50%;

    filter: blur(2px);

    pointer-events: none;

    animation: floatOrb 8s ease-in-out infinite;

}

.hero-orb-one {

    width: 260px;

    height: 260px;

    right: -80px;

    top: 180px;

    background:
        radial-gradient(
            circle,
            rgba(39, 184, 214, 0.20),
            transparent 70%
        );

}

.hero-orb-two {

    width: 180px;

    height: 180px;

    left: -50px;

    bottom: 100px;

    background:
        radial-gradient(
            circle,
            rgba(36, 107, 253, 0.13),
            transparent 70%
        );

    animation-delay: -3s;

}

.hero-container {

    position: relative;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(450px, 0.9fr);

    gap: 70px;

    align-items: center;

}

.hero-content {

    animation: heroReveal 0.9s ease both;

}

.eyebrow {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 24px;

    color: var(--blue);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 0.16em;

}

.eyebrow span {

    width: 28px;

    height: 2px;

    background: var(--blue);

}

.hero h1 {

    max-width: 720px;

    font-family: "Manrope", sans-serif;

    font-size: clamp(48px, 5vw, 76px);

    line-height: 1.02;

    letter-spacing: -0.055em;

    font-weight: 800;

}

.hero h1 span {

    display: block;

    color: var(--blue);

}

.hero-content > p {

    max-width: 620px;

    margin-top: 28px;

    color: var(--ink-soft);

    font-size: 17px;

}

.hero-actions {

    display: flex;

    align-items: center;

    gap: 14px;

    margin-top: 36px;

}

.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    padding: 15px 22px;

    border-radius: 50px;

    font-size: 14px;

    font-weight: 700;

    transition: 0.3s ease;

}

.btn-primary {

    color: white;

    background: var(--blue);

    box-shadow:
        0 12px 30px rgba(36, 107, 253, 0.25);

}

.btn-primary:hover {

    background: var(--blue-dark);

    transform: translateY(-3px);

    box-shadow:
        0 18px 35px rgba(36, 107, 253, 0.30);

}

.btn-secondary {

    background: white;

    border: 1px solid var(--border);

}

.btn-secondary:hover {

    border-color: var(--blue);

    color: var(--blue);

    transform: translateY(-3px);

}

.hero-trust {

    display: flex;

    align-items: center;

    gap: 22px;

    margin-top: 55px;

}

.trust-item {

    display: flex;

    flex-direction: column;

}

.trust-item strong {

    font-family: "Manrope", sans-serif;

    font-size: 23px;

}

.trust-item span {

    color: #667085;

    font-size: 11px;

}

.trust-line {

    width: 1px;

    height: 35px;

    background: var(--border);

}


/* =====================================================
   HERO VISUAL
===================================================== */

.hero-visual {

    position: relative;

    min-height: 510px;

    animation:
        heroVisualReveal
        1s
        0.15s
        ease
        both;

}

.main-tech-card {

    position: absolute;

    top: 50px;

    right: 20px;

    width: 440px;

    min-height: 360px;

    padding: 26px;

    border: 1px solid rgba(255,255,255,0.7);

    border-radius: 28px;

    color: white;

    background:
        linear-gradient(
            145deg,
            #101b33,
            #1b2b4c
        );

    box-shadow:
        0 40px 80px rgba(16, 27, 51, 0.22);

    transform: perspective(900px) rotateY(-5deg);

}

.tech-card-top {

    display: flex;

    align-items: center;

    gap: 10px;

    color: #aab8d0;

    font-size: 10px;

    letter-spacing: 0.15em;

}

.tech-card-top i {

    margin-left: auto;

}

.status-dot {

    width: 8px;

    height: 8px;

    border-radius: 50%;

    background: #39d98a;

    box-shadow:
        0 0 0 5px rgba(57, 217, 138, 0.12);

}

.tech-code {

    display: flex;

    flex-direction: column;

    gap: 15px;

    margin-top: 55px;

    font-family: monospace;

    font-size: 16px;

}

.tech-code .code-comment {

    color: #6f83a8;

}

.tech-code b {

    color: #72b8ff;

}

.tech-code em {

    color: #71e6bd;

    font-style: normal;

}

.tech-progress {

    position: absolute;

    left: 26px;

    right: 26px;

    bottom: 28px;

}

.tech-progress > div:first-child {

    display: flex;

    justify-content: space-between;

    margin-bottom: 8px;

    color: #9eabc2;

    font-size: 11px;

}

.tech-progress b {

    color: white;

}

.progress-bar {

    height: 5px;

    overflow: hidden;

    border-radius: 10px;

    background: rgba(255,255,255,0.10);

}

.progress-bar span {

    display: block;

    height: 100%;

    border-radius: inherit;

    background:
        linear-gradient(
            90deg,
            var(--blue),
            var(--cyan)
        );

}

.floating-tech-card {

    position: absolute;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 13px 17px;

    border: 1px solid rgba(255,255,255,0.75);

    border-radius: 16px;

    background: rgba(255,255,255,0.88);

    backdrop-filter: blur(14px);

    box-shadow:
        0 20px 50px rgba(16,24,40,0.12);

    animation: floatingCard 5s ease-in-out infinite;

}

.floating-icon {

    width: 38px;

    height: 38px;

    display: grid;

    place-items: center;

    border-radius: 11px;

    color: var(--blue);

    background: #edf4ff;

}

.floating-tech-card strong,
.floating-tech-card span {

    display: block;

}

.floating-tech-card strong {

    font-size: 12px;

}

.floating-tech-card span {

    color: #667085;

    font-size: 10px;

}

.card-cloud {

    top: 0;

    left: 5px;

}

.card-devops {

    right: -5px;

    bottom: 90px;

    animation-delay: -2s;

}

.card-ai {

    left: 35px;

    bottom: 25px;

    animation-delay: -3.5s;

}


/* =====================================================
   TECHNOLOGY STRIP
===================================================== */

.technology-strip {

    padding: 30px 0;

    border-top: 1px solid var(--border);

    border-bottom: 1px solid var(--border);

    background: white;

}

.technology-strip p {

    margin-bottom: 20px;

    color: #98a2b3;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 0.18em;

    text-align: center;

}

.technology-list {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 25px;

}

.technology-list span {

    color: #667085;

    font-family: "Manrope", sans-serif;

    font-size: 13px;

    font-weight: 800;

    opacity: 0.7;

}


/* =====================================================
   GLOBAL SECTION
===================================================== */

.section-padding {

    padding: 120px 0;

}

.section-label {

    margin-bottom: 18px;

    color: var(--blue);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 0.18em;

}

.section-top {

    display: flex;

    justify-content: space-between;

    align-items: end;

    gap: 60px;

    margin-bottom: 55px;

}

.section-top h2,
.about-heading h2 {

    max-width: 720px;

    font-family: "Manrope", sans-serif;

    font-size: clamp(38px, 4vw, 58px);

    line-height: 1.08;

    letter-spacing: -0.045em;

}

.section-top h2 span,
.about-heading h2 span,
.approach-content h2 span,
.clients-heading h2 span {

    color: var(--blue);

}

.section-top > p {

    max-width: 390px;

    color: var(--ink-soft);

}


/* =====================================================
   ABOUT
===================================================== */

.about-section {

    background: var(--off-white);

}

.about-layout {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

    align-items: start;

}

.about-content {

    padding-top: 10px;

}

.about-content p {

    color: var(--ink-soft);

}

.about-content .large-text {

    margin-bottom: 22px;

    color: var(--ink);

    font-size: 20px;

    line-height: 1.55;

}

.text-link {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 28px;

    color: var(--blue);

    font-size: 14px;

    font-weight: 800;

}

.text-link i {

    transition: 0.3s ease;

}

.text-link:hover i {

    transform: translateX(5px);

}

.about-stats {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    margin-top: 90px;

    border-top: 1px solid #dfe4eb;

}

.about-stat {

    min-height: 150px;

    padding: 30px 25px;

    border-right: 1px solid #dfe4eb;

}

.about-stat:first-child {

    padding-left: 0;

}

.about-stat strong {

    display: block;

    margin-bottom: 18px;

    color: var(--blue);

    font-size: 12px;

}

.about-stat span {

    color: #344054;

    font-family: "Manrope", sans-serif;

    font-size: 15px;

    font-weight: 700;

}


/* =====================================================
   SERVICES
===================================================== */

.services-section {

    background: white;

}

.services-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 16px;

}

.service-card {

    position: relative;

    min-height: 310px;

    padding: 30px;

    overflow: hidden;

    border: 1px solid var(--border);

    border-radius: var(--radius);

    background: white;

    transition: 0.4s ease;

}

.service-card:hover {

    border-color: rgba(36,107,253,0.25);

    transform: translateY(-8px);

    box-shadow: var(--shadow);

}

.service-number {

    position: absolute;

    top: 25px;

    right: 25px;

    color: #d0d5dd;

    font-size: 11px;

    font-weight: 800;

}

.service-icon {

    width: 52px;

    height: 52px;

    display: grid;

    place-items: center;

    margin-bottom: 60px;

    border-radius: 15px;

    color: var(--blue);

    background: #edf4ff;

    font-size: 19px;

    transition: 0.4s ease;

}

.service-card:hover .service-icon {

    color: white;

    background: var(--blue);

    transform: rotate(-5deg) scale(1.05);

}

.service-card h3 {

    margin-bottom: 10px;

    font-family: "Manrope", sans-serif;

    font-size: 20px;

}

.service-card p {

    max-width: 310px;

    color: #667085;

    font-size: 13px;

}

.service-arrow {

    position: absolute;

    right: 27px;

    bottom: 25px;

    color: #98a2b3;

    transition: 0.3s ease;

}

.service-card:hover .service-arrow {

    color: var(--blue);

    transform: translate(3px, -3px);

}

.service-dark {

    color: white;

    border-color: var(--navy);

    background: var(--navy);

}

.service-dark p {

    color: #aab8d0;

}

.service-dark .service-number {

    color: #61718e;

}

.service-dark .service-icon {

    color: #8ec5ff;

    background: rgba(255,255,255,0.08);

}

.service-dark:hover {

    box-shadow:
        0 30px 70px rgba(16,27,51,0.25);

}


/* =====================================================
   WORK
===================================================== */

.work-section {

    background: var(--off-white);

}

.work-grid {

    display: grid;

    grid-template-columns: 1.35fr 1fr;

    gap: 16px;

}

.work-card {

    min-height: 340px;

}

.work-card-large {

    grid-row: span 2;

}

.work-image {

    position: relative;

    width: 100%;

    height: 100%;

    min-height: 340px;

    overflow: hidden;

    border-radius: 24px;

    background-position: center;

    background-size: cover;

}

.work-card-large .work-image {

    min-height: 696px;

}

.work-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(8,17,35,0.88),
            rgba(8,17,35,0.12) 70%
        );

}

.work-image::before {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            120deg,
            rgba(36,107,253,0.30),
            transparent 50%
        );

    opacity: 0;

    transition: 0.5s ease;

    z-index: 1;

}

.work-card:hover .work-image::before {

    opacity: 1;

}

.work-image {

    transition: 0.5s ease;

}

.work-card:hover .work-image {

    transform: scale(1.015);

}

.work-category {

    position: absolute;

    top: 25px;

    left: 25px;

    z-index: 2;

    padding: 7px 11px;

    border: 1px solid rgba(255,255,255,0.22);

    border-radius: 50px;

    color: white;

    background: rgba(255,255,255,0.10);

    backdrop-filter: blur(10px);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 0.12em;

}

.work-content {

    position: absolute;

    left: 28px;

    right: 70px;

    bottom: 28px;

    z-index: 2;

    color: white;

}

.work-content h3 {

    margin-bottom: 6px;

    font-family: "Manrope", sans-serif;

    font-size: 23px;

}

.work-content p {

    color: rgba(255,255,255,0.75);

    font-size: 12px;

}

.work-open {

    position: absolute;

    right: 25px;

    bottom: 25px;

    z-index: 3;

    width: 42px;

    height: 42px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    color: var(--ink);

    background: white;

    transition: 0.3s ease;

}

.work-card:hover .work-open {

    color: white;

    background: var(--blue);

    transform: rotate(8deg);

}


/* =====================================================
   APPROACH
===================================================== */

.approach-section {

    background: white;

}

.approach-box {

    display: grid;

    grid-template-columns: 1fr 1fr;

    overflow: hidden;

    border-radius: 30px;

    color: white;

    background:
        linear-gradient(
            120deg,
            #101b33,
            #1c3156
        );

    box-shadow:
        0 35px 80px rgba(16,27,51,0.18);

}

.approach-content {

    padding: 70px;

}

.approach-content .section-label {

    color: #83b9ff;

}

.approach-content h2 {

    max-width: 500px;

    font-family: "Manrope", sans-serif;

    font-size: clamp(38px, 4vw, 55px);

    line-height: 1.05;

    letter-spacing: -0.045em;

}

.approach-content p {

    max-width: 490px;

    margin: 25px 0 30px;

    color: #b6c2d6;

}

.btn-light {

    color: var(--navy);

    background: white;

}

.btn-light:hover {

    color: white;

    background: var(--blue);

}

.approach-steps {

    padding: 60px;

    background:
        rgba(255,255,255,0.035);

}

.approach-step {

    display: flex;

    gap: 25px;

    padding: 25px 0;

    border-bottom: 1px solid rgba(255,255,255,0.10);

}

.approach-step:last-child {

    border-bottom: 0;

}

.approach-step > span {

    color: #7194c7;

    font-size: 11px;

    font-weight: 800;

}

.approach-step strong {

    display: block;

    margin-bottom: 5px;

    font-family: "Manrope", sans-serif;

}

.approach-step p {

    color: #9baaca;

    font-size: 12px;

}


/* =====================================================
   CLIENTS
===================================================== */

.clients-section {

    padding: 100px 0 90px;

    overflow: hidden;

    background: #f7f9fc;

}

.clients-heading {

    text-align: center;

}

.clients-heading h2 {

    font-family: "Manrope", sans-serif;

    font-size: clamp(35px, 4vw, 52px);

    line-height: 1.05;

    letter-spacing: -0.045em;

}

.client-marquee {

    margin-top: 65px;

    overflow: hidden;

}

.client-track {

    width: max-content;

    display: flex;

    align-items: center;

    gap: 85px;

    animation: marquee 28s linear infinite;

}

.client-logo {

    color: #667085;

    font-family: "Manrope", sans-serif;

    font-size: 19px;

    font-weight: 800;

    white-space: nowrap;

    opacity: 0.65;

    transition: 0.3s ease;

}

.client-logo:hover {

    color: var(--blue);

    opacity: 1;

}

.client-logo span {

    color: var(--blue);

}


/* =====================================================
   CONTACT
===================================================== */

.contact-section {

    padding-top: 80px;

    padding-bottom: 100px;

    background: #f7f9fc;

}

.contact-box {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 60px;

    padding: 65px;

    border-radius: 28px;

    background: white;

    border: 1px solid var(--border);

    box-shadow:
        0 25px 70px rgba(16,24,40,0.06);

}

.contact-box h2 {

    max-width: 600px;

    font-family: "Manrope", sans-serif;

    font-size: clamp(38px, 4vw, 58px);

    line-height: 1;

    letter-spacing: -0.045em;

}

.contact-box p {

    max-width: 540px;

    margin-top: 18px;

    color: var(--ink-soft);

}

.contact-button {

    display: flex;

    align-items: center;

    gap: 20px;

    min-width: 210px;

    padding: 7px 7px 7px 22px;

    border-radius: 50px;

    color: white;

    background: var(--navy);

    font-size: 13px;

    font-weight: 700;

    transition: 0.3s ease;

}

.contact-button span {

    width: 44px;

    height: 44px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background: var(--blue);

}

.contact-button:hover {

    background: var(--blue);

    transform: translateY(-3px);

}


/* =====================================================
   FOOTER
===================================================== */

.site-footer {

    color: #aebbd0;

    background: #0d172b;

}

.footer-main {

    display: grid;

    grid-template-columns:
        1.6fr
        1fr
        1fr
        1.2fr;

    gap: 50px;

    padding: 75px 0;

}

.footer-brand img {

    width: 145px;

    margin-bottom: 22px;

}

.footer-brand p {

    max-width: 310px;

    color: #8493ad;

    font-size: 13px;

}

.footer-social {

    display: flex;

    gap: 9px;

    margin-top: 25px;

}

.footer-social a {

    width: 35px;

    height: 35px;

    display: grid;

    place-items: center;

    border: 1px solid rgba(255,255,255,0.10);

    border-radius: 50%;

    color: #aebbd0;

    transition: 0.3s ease;

}

.footer-social a:hover {

    color: white;

    border-color: var(--blue);

    background: var(--blue);

    transform: translateY(-3px);

}

.footer-column {

    display: flex;

    flex-direction: column;

    gap: 12px;

}

.footer-column h4 {

    margin-bottom: 10px;

    color: white;

    font-family: "Manrope", sans-serif;

    font-size: 13px;

}

.footer-column a,
.footer-column span {

    color: #8493ad;

    font-size: 12px;

    transition: 0.25s ease;

}

.footer-column a:hover {

    color: white;

    transform: translateX(3px);

}

.footer-contact a {

    color: white;

    font-size: 14px;

}

.footer-bottom {

    display: flex;

    justify-content: space-between;

    gap: 30px;

    padding: 22px 0;

    border-top: 1px solid rgba(255,255,255,0.08);

    color: #687892;

    font-size: 11px;

}

.footer-bottom div {

    display: flex;

    gap: 25px;

}

.footer-bottom a:hover {

    color: white;

}


/* =====================================================
   ANIMATIONS
===================================================== */

@keyframes heroReveal {

    from {

        opacity: 0;

        transform: translateY(25px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}

@keyframes heroVisualReveal {

    from {

        opacity: 0;

        transform: translateX(35px);

    }

    to {

        opacity: 1;

        transform: translateX(0);

    }

}

@keyframes floatingCard {

    0%,
    100% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-12px);

    }

}

@keyframes floatOrb {

    0%,
    100% {

        transform: translate(0, 0);

    }

    50% {

        transform: translate(15px, -20px);

    }

}

@keyframes marquee {

    from {

        transform: translateX(0);

    }

    to {

        transform: translateX(-50%);

    }

}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1050px) {

    .nav-menu {

        gap: 18px;

    }

    .hero-container {

        grid-template-columns: 1fr;

    }

    .hero {

        padding-bottom: 80px;

    }

    .hero-visual {

        max-width: 600px;

        width: 100%;

        margin: auto;

    }

    .services-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}


@media (max-width: 850px) {

    .nav-menu {

        display: none;

    }

    .header-cta {

        margin-left: auto;

    }

    .hero h1 {

        font-size: 52px;

    }

    .about-layout {

        grid-template-columns: 1fr;

        gap: 35px;

    }

    .about-stats {

        grid-template-columns: repeat(2, 1fr);

    }

    .about-stat:nth-child(2) {

        border-right: 0;

    }

    .work-grid {

        grid-template-columns: 1fr;

    }

    .work-card-large {

        grid-row: auto;

    }

    .work-card-large .work-image {

        min-height: 430px;

    }

    .approach-box {

        grid-template-columns: 1fr;

    }

    .contact-box {

        flex-direction: column;

        align-items: flex-start;

    }

    .footer-main {

        grid-template-columns: repeat(2, 1fr);

    }

}


@media (max-width: 600px) {

    .container {

        width: min(100% - 30px, 1180px);

    }

    .section-padding {

        padding: 80px 0;

    }

    .header-inner {

        height: 72px;

    }

    .brand-logo img {

        width: 125px;

    }

    .hero {

        min-height: auto;

        padding-top: 125px;

    }

    .hero h1 {

        font-size: 43px;

    }

    .hero-content > p {

        font-size: 15px;

    }

    .hero-actions {

        flex-direction: column;

        align-items: stretch;

    }

    .btn {

        width: 100%;

    }

    .hero-trust {

        gap: 12px;

    }

    .trust-line {

        display: none;

    }

    .trust-item span {

        font-size: 9px;

    }

    .hero-visual {

        min-height: 430px;

    }

    .main-tech-card {

        right: 0;

        width: 100%;

        transform: none;

    }

    .card-cloud {

        top: -5px;

        left: 0;

    }

    .card-devops {

        right: 0;

        bottom: 70px;

    }

    .card-ai {

        left: 0;

        bottom: 0;

    }

    .technology-list {

        flex-wrap: wrap;

        justify-content: center;

    }

    .technology-list span {

        font-size: 11px;

    }

    .section-top {

        flex-direction: column;

        align-items: flex-start;

        gap: 20px;

    }

    .services-grid {

        grid-template-columns: 1fr;

    }

    .about-stats {

        grid-template-columns: 1fr 1fr;

        margin-top: 55px;

    }

    .about-stat {

        min-height: 130px;

    }

    .approach-content,
    .approach-steps {

        padding: 40px 25px;

    }

    .contact-box {

        padding: 40px 25px;

    }

    .footer-main {

        grid-template-columns: 1fr;

        gap: 35px;

    }

    .footer-bottom {

        flex-direction: column;

    }

}

/* =====================================================
   TECHBW CAREERS APPLICATION FORM
   Premium Corporate / Homepage-Matched Design
===================================================== */

.application-section {
    position: relative;
    padding: 110px 24px 120px;
    background: #f7faff;
    overflow: hidden;
}

.application-section::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    top: 80px;
    right: -260px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.045);
    pointer-events: none;
}

.application-section::after {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    bottom: 120px;
    left: -180px;
    border-radius: 50%;
    background: rgba(45, 212, 191, 0.04);
    pointer-events: none;
}


/* =====================================================
   APPLICATION HEADER
===================================================== */

.application-header {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto 58px;
    text-align: center;
}

.application-header > span {
    display: inline-block;
    margin-bottom: 16px;
    color: #2563eb;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.4px;
}

.application-header h2 {
    margin: 0;
    color: #101828;
    font-family: "Manrope", sans-serif;
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -2px;
}

.application-header h2 strong {
    color: #2563eb;
    font-weight: 800;
}

.application-header p {
    max-width: 620px;
    margin: 20px auto 0;
    color: #667085;
    font-size: 16px;
    line-height: 1.7;
}


/* =====================================================
   FORM
===================================================== */

.application-form {
    position: relative;
    z-index: 1;
    max-width: 1050px;
    margin: 0 auto;
}


/* =====================================================
   FORM SECTION
===================================================== */

.form-section {
    position: relative;
    margin-bottom: 22px;
    padding: 34px;
    border: 1px solid #e4eaf2;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.055);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.form-section:hover {
    border-color: #d4e1f5;
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.075);
}


/* =====================================================
   SECTION TITLE
===================================================== */

.form-section-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.form-section-title > span {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    border-radius: 13px;
    background: #eff6ff;
    color: #2563eb;
    font-family: "Manrope", sans-serif;
    font-size: 13px;
    font-weight: 800;
}

.form-section-title h3 {
    margin: 0 0 4px;
    color: #101828;
    font-family: "Manrope", sans-serif;
    font-size: 19px;
    font-weight: 750;
}

.form-section-title p {
    margin: 0;
    color: #98a2b3;
    font-size: 13px;
}


/* =====================================================
   FORM GRID
===================================================== */

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.form-group.full {
    grid-column: 1 / -1;
}


/* =====================================================
   FORM GROUP
===================================================== */

.form-group {
    min-width: 0;
}

.form-group > label {
    display: block;
    margin-bottom: 9px;
    color: #344054;
    font-size: 13px;
    font-weight: 650;
}

.form-group > label em {
    color: #2563eb;
    font-style: normal;
}


/* =====================================================
   INPUTS / SELECT / TEXTAREA
===================================================== */

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="url"],
.form-group input[type="date"],
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid #d8e0eb;
    border-radius: 12px;
    outline: none;
    background: #fbfcfe;
    color: #101828;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="url"],
.form-group input[type="date"],
.form-group select {
    height: 52px;
    padding: 0 15px;
}

.form-group textarea {
    min-height: 120px;
    padding: 14px 15px;
    resize: vertical;
    line-height: 1.6;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #98a2b3;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: #bdcbe0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #2563eb;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}


/* =====================================================
   RADIO BUTTONS
===================================================== */

.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.radio-label {
    position: relative;
    display: inline-flex !important;
    align-items: center;
    gap: 9px;
    min-height: 46px;
    margin: 0 !important;
    padding: 0 15px;
    border: 1px solid #dfe6ef;
    border-radius: 11px;
    background: #fbfcfe;
    color: #475467 !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    cursor: pointer;
    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        color 0.2s ease;
}

.radio-label input {
    width: 15px;
    height: 15px;
    margin: 0;
    accent-color: #2563eb;
}

.radio-label:has(input:checked) {
    border-color: #2563eb;
    background: #eff6ff;
    color: #155eef !important;
}


/* =====================================================
   DOMAIN CHECKBOXES
===================================================== */

.helper-text {
    margin: -2px 0 15px;
    color: #98a2b3;
    font-size: 12px;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.checkbox-card {
    position: relative;
    display: block;
    cursor: pointer;
}

.checkbox-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.checkbox-card span {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 58px;
    padding: 9px 13px;
    border: 1px solid #e0e6ee;
    border-radius: 13px;
    background: #fbfcfe;
    color: #344054;
    font-size: 12.5px;
    font-weight: 600;
    line-height: 1.35;
    transition:
        border-color 0.25s ease,
        background 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.checkbox-card span i {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    border-radius: 9px;
    background: #eff6ff;
    color: #2563eb;
    font-size: 13px;
}

.checkbox-card:hover span {
    transform: translateY(-2px);
    border-color: #bfd3f3;
    background: #ffffff;
}

.checkbox-card input:checked + span {
    border-color: #2563eb;
    background: #eff6ff;
    color: #155eef;
    box-shadow: 0 8px 22px rgba(37, 99, 235, 0.09);
}

.checkbox-card input:checked + span i {
    background: #2563eb;
    color: #ffffff;
}


/* =====================================================
   RESUME UPLOAD
===================================================== */

.file-upload {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 100px;
    padding: 20px 22px;
    border: 1.5px dashed #b9c7da;
    border-radius: 15px;
    background: #f8fbff;
    cursor: pointer;
    overflow: hidden;
    transition:
        border-color 0.25s ease,
        background 0.25s ease;
}

.file-upload:hover {
    border-color: #2563eb;
    background: #f1f7ff;
}

.file-upload > i {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border-radius: 13px;
    background: #eaf2ff;
    color: #2563eb;
    font-size: 19px;
}

.file-upload strong {
    display: block;
    margin-bottom: 5px;
    color: #101828;
    font-size: 14px;
}

.file-upload span {
    display: block;
    color: #98a2b3;
    font-size: 12px;
    line-height: 1.5;
}

.file-upload input[type="file"] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}


/* =====================================================
   DURATION BOX
===================================================== */

.duration-box {
    margin-bottom: 24px;
    padding: 17px 19px;
    border: 1px solid #dce7f7;
    border-radius: 14px;
    background: linear-gradient(
        135deg,
        #f5f9ff 0%,
        #ffffff 100%
    );
}

.duration-box > div {
    display: flex;
    align-items: center;
    gap: 13px;
}

.duration-box i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: #eaf2ff;
    color: #2563eb;
}

.duration-box strong {
    display: block;
    margin-bottom: 3px;
    color: #101828;
    font-size: 13px;
}

.duration-box span {
    color: #667085;
    font-size: 12px;
}


/* =====================================================
   DECLARATION
===================================================== */

.declaration-section {
    background: #101828;
    border-color: #101828;
}

.declaration-section .form-section-title > span {
    background: rgba(255, 255, 255, 0.1);
    color: #63e6be;
}

.declaration-section .form-section-title h3 {
    color: #ffffff;
}

.declaration-section .form-section-title p {
    color: #98a2b3;
}

.declaration-check {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.045);
    color: #d0d5dd;
    font-size: 13px;
    line-height: 1.7;
    cursor: pointer;
}

.declaration-check input {
    flex: 0 0 auto;
    width: 17px;
    height: 17px;
    margin-top: 3px;
    accent-color: #2563eb;
}


/* =====================================================
   SUBMIT BUTTON
===================================================== */

.submit-application {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 220px;
    height: 54px;
    margin-top: 25px;
    padding: 0 25px;
    border: 0;
    border-radius: 12px;
    background: #2563eb;
    color: #ffffff;
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    font-weight: 750;
    letter-spacing: 0.5px;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.25);
    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.submit-application i {
    color: #63e6be;
    transition: transform 0.25s ease;
}

.submit-application:hover {
    transform: translateY(-2px);
    background: #1d4ed8;
    box-shadow: 0 16px 35px rgba(37, 99, 235, 0.32);
}

.submit-application:hover i {
    transform: translateX(4px);
}

.submit-application:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
}


/* =====================================================
   FORM NOTE
===================================================== */

.form-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 16px 0 0;
    color: #98a2b3;
    font-size: 11px;
    line-height: 1.5;
}

.form-note i {
    color: #63e6be;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 900px) {

    .application-section {
        padding: 85px 20px 90px;
    }

    .form-section {
        padding: 28px;
    }

    .checkbox-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


@media (max-width: 650px) {

    .application-section {
        padding: 70px 15px 75px;
    }

    .application-header {
        margin-bottom: 40px;
    }

    .application-header h2 {
        font-size: 36px;
        letter-spacing: -1.2px;
    }

    .application-header p {
        font-size: 14px;
    }

    .form-section {
        margin-bottom: 16px;
        padding: 22px 18px;
        border-radius: 17px;
    }

    .form-section-title {
        gap: 12px;
        margin-bottom: 23px;
    }

    .form-section-title > span {
        flex-basis: 40px;
        width: 40px;
        height: 40px;
        border-radius: 11px;
    }

    .form-section-title h3 {
        font-size: 17px;
    }

    .form-grid,
    .checkbox-grid {
        grid-template-columns: 1fr;
    }

    .radio-group {
        flex-direction: column;
        align-items: stretch;
    }

    .radio-label {
        width: 100%;
    }

    .file-upload {
        align-items: flex-start;
        padding: 17px;
    }

    .submit-application {
        width: 100%;
    }

    .declaration-check {
        font-size: 12px;
    }
}

/* =====================================================
   TRUSTED TECHNOLOGIES / LOGO CAROUSEL
===================================================== */

.trusted-section {
    padding: 70px 0;
    background: #f7f8fa;
    border-top: 1px solid #e8eaee;
    border-bottom: 1px solid #e8eaee;
    overflow: hidden;
}

.trusted-title {
    margin: 0 0 35px;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #7b8491;
}

.logo-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.logo-track {
    display: flex;
    align-items: center;
    width: max-content;
    gap: 70px;
    animation: logoScroll 28s linear infinite;
}

.company-logo {
    min-width: 150px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.3px;
    color: #4b5563;

    white-space: nowrap;
    opacity: 0.72;

    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

.company-logo i {
    font-size: 25px;
}

.company-logo:hover {
    opacity: 1;
    transform: translateY(-2px);
}

/* Continuous scrolling */

@keyframes logoScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Pause when user hovers */

.logo-slider:hover .logo-track {
    animation-play-state: paused;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 768px) {
    .trusted-section {
        padding: 55px 0;
    }

    .trusted-title {
        padding: 0 20px;
        margin-bottom: 25px;
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    .logo-track {
        gap: 45px;
        animation-duration: 22s;
    }

    .company-logo {
        min-width: 125px;
        height: 50px;
        font-size: 17px;
    }

    .company-logo i {
        font-size: 21px;
    }
}

@media (max-width: 480px) {
    .logo-track {
        gap: 35px;
    }

    .company-logo {
        min-width: 110px;
        font-size: 15px;
    }

    .company-logo i {
        font-size: 19px;
    }
}