/* =====================================================
   VARIABLES
===================================================== */

:root {

    --black: #050505;

    --black-2: #080808;

    --black-3: #0d0d0d;

    --card: #111111;

    --card-hover: #161616;

    --brand: #B1BF26;

    --brand-light: #c5d32f;

    --brand-dark: #929f1d;

    --brand-transparent:
        rgba(177, 191, 38, 0.10);

    --white: #ffffff;

    --text: #d2d2d2;

    --muted: #858585;

    --dark-muted: #5d5d5d;

    --border:
        rgba(255, 255, 255, 0.08);

    --border-brand:
        rgba(177, 191, 38, 0.25);

    --container: 1240px;

}


/* =====================================================
   RESET
===================================================== */

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

    background: var(--black);

    color: var(--white);

    font-family:
        "DM Sans",
        Arial,
        sans-serif;

    line-height: 1.6;

    overflow-x: hidden;

}


body::selection {

    background: var(--brand);

    color: #000;

}


a {

    color: inherit;

    text-decoration: none;

}


button,
input,
textarea {

    font-family: inherit;

}


button {

    cursor: pointer;

}


img {

    max-width: 100%;

    display: block;

}


.container {

    width: min(90%, var(--container));

    margin: 0 auto;

}


/* =====================================================
   HEADER
===================================================== */

.site-header {

    position: fixed;

    top: 18px;

    left: 0;

    width: 100%;

    z-index: 1000;

}


.navbar {

    width: min(92%, 1120px);

    min-height: 68px;

    margin: auto;

    padding: 8px 10px 8px 25px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    background:
        rgba(10, 10, 10, 0.78);

    border:
        1px solid rgba(255,255,255,0.09);

    border-radius: 50px;

    backdrop-filter: blur(20px);

    -webkit-backdrop-filter: blur(20px);

    box-shadow:
        0 20px 60px rgba(0,0,0,.35);

}


/* Logo */

.logo {

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 22px;

    font-weight: 700;

    letter-spacing: -1px;

}


.logo span {

    color: var(--brand);

}


/* Desktop nav */

.desktop-nav {

    display: flex;

    align-items: center;

    gap: 28px;

}


.desktop-nav a {

    color: #909090;

    font-size: 13px;

    transition:
        color .3s ease;

}


.desktop-nav a:hover {

    color: var(--brand);

}


/* Header CTA */

.header-cta {

    display: flex;

    align-items: center;

    gap: 9px;

    padding: 12px 20px;

    background: var(--brand);

    color: #000;

    border-radius: 30px;

    font-size: 13px;

    font-weight: 700;

    transition:
        transform .3s ease,
        background .3s ease;

}


.header-cta:hover {

    background: var(--white);

    transform: translateY(-2px);

}


.header-cta span {

    font-size: 17px;

}


/* Mobile */

.mobile-menu-button {

    display: none;

    width: 42px;

    height: 42px;

    border: 0;

    border-radius: 50%;

    background: #171717;

}


.mobile-menu-button span {

    display: block;

    width: 20px;

    height: 2px;

    margin: 4px auto;

    background: white;

}


.mobile-nav {

    display: none;

}


/* =====================================================
   HERO
===================================================== */

.hero-section {

    min-height: 100vh;

    position: relative;

    display: flex;

    align-items: center;

    padding:
        130px 0
        70px;

    overflow: hidden;

    background: var(--black);

}


/* Grid */

.hero-grid {

    position: absolute;

    inset: 0;

    opacity: .30;

    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: 70px 70px;

    mask-image:
        linear-gradient(
            to bottom,
            black 0%,
            transparent 95%
        );

}


/* Glow */

.hero-glow {

    position: absolute;

    border-radius: 50%;

    filter: blur(120px);

    pointer-events: none;

}


.hero-glow-1 {

    width: 550px;

    height: 550px;

    right: -100px;

    top: 15%;

    background:
        rgba(177,191,38,.08);

}


.hero-glow-2 {

    width: 300px;

    height: 300px;

    left: 5%;

    bottom: 5%;

    background:
        rgba(177,191,38,.045);

}


.hero-container {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        1.05fr .95fr;

    align-items: center;

    gap: 60px;

}


/* =====================================================
   HERO CONTENT
===================================================== */

.hero-content {

    animation:
        heroReveal 1s
        cubic-bezier(.2,.8,.2,1)
        forwards;

}


@keyframes heroReveal {

    from {

        opacity: 0;

        transform:
            translateY(35px);

    }

    to {

        opacity: 1;

        transform:
            translateY(0);

    }

}


/* Availability */

.availability {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding:
        8px 13px;

    margin-bottom: 25px;

    background:
        rgba(177,191,38,.05);

    border:
        1px solid
        rgba(177,191,38,.25);

    border-radius: 30px;

    color: #aaa;

    font-size: 11px;

}


.availability-dot {

    width: 7px;

    height: 7px;

    border-radius: 50%;

    background: var(--brand);

    box-shadow:
        0 0 15px var(--brand);

    animation:
        pulse 1.8s infinite;

}


@keyframes pulse {

    0%,
    100% {

        box-shadow:
            0 0 5px var(--brand);

    }

    50% {

        box-shadow:
            0 0 22px var(--brand);

    }

}


/* Eyebrow */

.eyebrow {

    margin-bottom: 18px;

    color: var(--brand);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 3px;

}


/* Hero heading */

.hero-content h1 {

    max-width: 760px;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        clamp(58px, 8vw, 100px);

    line-height: .88;

    letter-spacing: -6px;

    font-weight: 700;

}


.hero-content h1 span {

    display: block;

    color: var(--brand);

    text-shadow:
        0 0 60px
        rgba(177,191,38,.13);

}


/* Description */

.hero-description {

    max-width: 600px;

    margin:
        32px 0;

    color: var(--muted);

    font-size: 17px;

    line-height: 1.8;

}


/* Buttons */

.hero-actions {

    display: flex;

    flex-wrap: wrap;

    gap: 13px;

}


.button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding:
        15px 23px;

    border-radius: 40px;

    font-size: 13px;

    font-weight: 700;

    transition:
        all .35s ease;

}


.button-primary {

    background: var(--brand);

    color: #000;

}


.button-primary:hover {

    background: var(--white);

    transform:
        translateY(-4px);

    box-shadow:
        0 15px 40px
        rgba(177,191,38,.18);

}


.button-outline {

    border:
        1px solid var(--border);

    color: #bbb;

}


.button-outline:hover {

    color: var(--brand);

    border-color:
        var(--brand);

    transform:
        translateY(-4px);

}


/* Tech list */

.hero-tech-list {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 13px;

    margin-top: 38px;

    color: #686868;

    font-size: 10px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 1px;

}


.hero-tech-list i {

    width: 3px;

    height: 3px;

    border-radius: 50%;

    background: var(--brand);

}


/* =====================================================
   TECH SHOWCASE
===================================================== */

.tech-showcase {

    height: 560px;

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    animation:
        showcaseReveal 1.2s
        cubic-bezier(.2,.8,.2,1)
        forwards;

}


@keyframes showcaseReveal {

    from {

        opacity: 0;

        transform:
            scale(.82);

    }

    to {

        opacity: 1;

        transform:
            scale(1);

    }

}


/* Orbit */

.orbit {

    position: absolute;

    border:
        1px solid
        rgba(177,191,38,.12);

    border-radius: 50%;

}


.orbit-large {

    width: 430px;

    height: 430px;

    animation:
        rotate 25s
        linear infinite;

}


.orbit-small {

    width: 285px;

    height: 285px;

    animation:
        rotateReverse 18s
        linear infinite;

}


@keyframes rotate {

    from {

        transform:
            rotate(0deg);

    }

    to {

        transform:
            rotate(360deg);

    }

}


@keyframes rotateReverse {

    from {

        transform:
            rotate(360deg);

    }

    to {

        transform:
            rotate(0deg);

    }

}


/* Center */

.tech-center {

    width: 150px;

    height: 150px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 8px;

    border:
        1px solid
        rgba(177,191,38,.35);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(177,191,38,.14),
            #0a0a0a 68%
        );

    box-shadow:
        0 0 100px
        rgba(177,191,38,.08);

    animation:
        centerFloat 4s
        ease-in-out infinite;

}


@keyframes centerFloat {

    0%,
    100% {

        transform:
            translateY(0);

    }

    50% {

        transform:
            translateY(-12px);

    }

}


.tech-center-icon {

    color: var(--brand);

    font-family: monospace;

    font-size: 29px;

    font-weight: 700;

}


.tech-center span {

    color: #666;

    font-size: 8px;

    letter-spacing: 3px;

}


/* =====================================================
   FLOATING TECH CARDS
===================================================== */

.floating-tech {

    position: absolute;

    display: flex;

    align-items: center;

    gap: 10px;

    padding:
        11px 14px;

    background:
        rgba(18,18,18,.88);

    border:
        1px solid
        rgba(255,255,255,.08);

    border-radius: 13px;

    backdrop-filter: blur(15px);

    box-shadow:
        0 20px 50px
        rgba(0,0,0,.45);

    animation:
        floatTech 4s
        ease-in-out infinite;

}


.floating-tech strong {

    display: block;

    color: #ddd;

    font-size: 12px;

}


.floating-tech small {

    display: block;

    margin-top: 2px;

    color: #606060;

    font-size: 9px;

}


.tech-icon {

    width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    border:
        1px solid
        rgba(177,191,38,.18);

    border-radius: 9px;

    background:
        rgba(177,191,38,.08);

    color: var(--brand);

    font-size: 11px;

    font-weight: 800;

}


@keyframes floatTech {

    0%,
    100% {

        transform:
            translateY(0);

    }

    50% {

        transform:
            translateY(-13px);

    }

}


.tech-python {

    top: 55px;

    right: 75px;

}


.tech-flask {

    top: 205px;

    right: 0;

    animation-delay:
        .5s;

}


.tech-django {

    bottom: 70px;

    right: 80px;

    animation-delay:
        1s;

}


.tech-laravel {

    bottom: 25px;

    left: 60px;

    animation-delay:
        1.5s;

}


.tech-js {

    top: 205px;

    left: 0;

    animation-delay:
        2s;

}


.tech-git {

    top: 50px;

    left: 70px;

    animation-delay:
        2.5s;

}


/* Scroll */

.scroll-down {

    position: absolute;

    bottom: 30px;

    left: 50%;

    transform:
        translateX(-50%);

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 6px;

    color: #555;

    font-size: 9px;

    letter-spacing: 2px;

    z-index: 5;

}


.scroll-down b {

    color: var(--brand);

    font-size: 17px;

    animation:
        scrollBounce 1.5s
        infinite;

}


@keyframes scrollBounce {

    0%,
    100% {

        transform:
            translateY(0);

    }

    50% {

        transform:
            translateY(6px);

    }

}


/* =====================================================
   GENERAL SECTIONS
===================================================== */

.section {

    position: relative;

    padding:
        130px 0;

    border-top:
        1px solid
        rgba(255,255,255,.045);

}


.section:nth-child(even) {

    background:
        #080808;

}


.section-header {

    max-width: 760px;

    margin-bottom: 70px;

}


.section-header.centered {

    text-align: center;

    margin-left: auto;

    margin-right: auto;

}


.section-label {

    color: var(--brand);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 3px;

}


.section-header h2 {

    margin-top: 16px;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        clamp(42px, 6vw, 72px);

    line-height: 1;

    letter-spacing: -4px;

}


.section-header h2 span {

    color: var(--brand);

}


.section-header p {

    max-width: 650px;

    margin:
        20px auto 0;

    color: var(--muted);

    font-size: 15px;

}


/* =====================================================
   ABOUT
===================================================== */

.about-layout {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 90px;

    align-items: start;

}


.about-intro .big-paragraph {

    color: var(--white);

    font-size: 24px;

    line-height: 1.6;

}


.about-intro p:not(.big-paragraph) {

    margin-top: 22px;

    color: var(--muted);

    font-size: 15px;

    line-height: 1.9;

}


.inline-link {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 28px;

    color: var(--brand);

    font-size: 13px;

    font-weight: 700;

}


.inline-link span {

    transition:
        transform .3s ease;

}


.inline-link:hover span {

    transform:
        translateX(5px);

}


.about-stats {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 14px;

}


.stat-card {

    min-height: 160px;

    padding: 28px;

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    background:
        var(--card);

    border:
        1px solid var(--border);

    border-radius: 14px;

    transition:
        transform .35s ease,
        border-color .35s ease;

}


.stat-card:hover {

    transform:
        translateY(-7px);

    border-color:
        var(--border-brand);

}


.stat-card strong {

    font-family:
        "Space Grotesk",
        sans-serif;

    color: var(--brand);

    font-size: 23px;

}


.stat-card span {

    margin-top: 6px;

    color: #777;

    font-size: 11px;

}


/* =====================================================
   TECHNOLOGY
===================================================== */

.technology-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 16px;

}


.technology-card {

    position: relative;

    min-height: 245px;

    padding: 28px;

    overflow: hidden;

    background:
        var(--card);

    border:
        1px solid var(--border);

    border-radius: 15px;

    transition:
        transform .4s ease,
        border-color .4s ease;

}


.technology-card::after {

    content: "";

    position: absolute;

    width: 120px;

    height: 120px;

    right: -50px;

    top: -50px;

    border-radius: 50%;

    background:
        rgba(177,191,38,.07);

    filter:
        blur(30px);

}


.technology-card:hover {

    transform:
        translateY(-9px);

    border-color:
        var(--border-brand);

}


.technology-logo {

    width: 48px;

    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 25px;

    border:
        1px solid
        rgba(177,191,38,.2);

    border-radius: 11px;

    background:
        rgba(177,191,38,.07);

    color: var(--brand);

    font-size: 12px;

    font-weight: 800;

}


.technology-card h3 {

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 19px;

}


.technology-card p {

    margin-top: 10px;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.7;

}


.tech-number {

    position: absolute;

    right: 22px;

    bottom: 20px;

    color: #333;

    font-size: 10px;

}


/* =====================================================
   SERVICES
===================================================== */

.services-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;

}


.service-card {

    position: relative;

    min-height: 330px;

    padding: 32px;

    background:
        var(--card);

    border:
        1px solid var(--border);

    border-radius: 15px;

    overflow: hidden;

    transition:
        transform .4s ease,
        border-color .4s ease;

}


.service-card:hover {

    transform:
        translateY(-9px);

    border-color:
        var(--border-brand);

}


.service-number {

    position: absolute;

    top: 25px;

    right: 28px;

    color: #333;

    font-size: 11px;

}


.service-icon {

    width: 52px;

    height: 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 35px;

    border-radius: 12px;

    background:
        var(--brand-transparent);

    color: var(--brand);

    font-family: monospace;

    font-size: 15px;

    font-weight: 700;

}


.service-card h3 {

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 21px;

}


.service-card p {

    margin-top: 12px;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.8;

}


.service-card a {

    position: absolute;

    bottom: 28px;

    color: var(--brand);

    font-size: 11px;

    font-weight: 700;

}


/* =====================================================
   PROJECTS
===================================================== */

.projects-grid {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 22px;

}


.project-card {

    overflow: hidden;

    background:
        var(--card);

    border:
        1px solid var(--border);

    border-radius: 17px;

    transition:
        transform .4s ease,
        border-color .4s ease;

}


.project-card:hover {

    transform:
        translateY(-9px);

    border-color:
        var(--border-brand);

}


/* Project visual */

.project-visual {

    height: 300px;

    position: relative;

    display: flex;

    align-items: flex-end;

    padding: 25px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #171717,
            #080808
        );

}


.project-visual::before {

    content: "";

    position: absolute;

    width: 280px;

    height: 280px;

    right: -80px;

    top: -80px;

    border-radius: 50%;

    background:
        rgba(177,191,38,.09);

    filter:
        blur(60px);

}


.project-tag {

    position: relative;

    z-index: 2;

    padding: 7px 11px;

    background:
        rgba(0,0,0,.75);

    border:
        1px solid
        rgba(177,191,38,.3);

    color: var(--brand);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1px;

}


/* Project UI */

.project-window {

    position: absolute;

    width: 70%;

    height: 70%;

    top: 15%;

    left: 15%;

    padding: 12px;

    background:
        #101010;

    border:
        1px solid #252525;

    border-radius: 10px;

    box-shadow:
        0 30px 70px
        rgba(0,0,0,.6);

    transform:
        perspective(800px)
        rotateX(5deg)
        rotateY(-5deg);

}


.window-top {

    display: flex;

    gap: 5px;

}


.window-top span {

    width: 6px;

    height: 6px;

    border-radius: 50%;

    background:
        #333;

}


.dashboard-lines {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 8px;

    margin-top: 25px;

}


.dashboard-lines div {

    height: 55px;

    background:
        linear-gradient(
            135deg,
            #1b1b1b,
            #111
        );

    border-radius: 5px;

}


/* Ecommerce */

.mock-store {

    position: absolute;

    width: 72%;

    height: 65%;

    top: 18%;

    left: 14%;

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 10px;

}


.mock-product {

    border:
        1px solid #292929;

    border-radius: 8px;

    background:
        linear-gradient(
            145deg,
            #202020,
            #111
        );

}


/* Chatbot */

.chat-window {

    position: absolute;

    width: 65%;

    top: 15%;

    left: 18%;

    padding: 18px;

    border:
        1px solid #282828;

    border-radius: 12px;

    background:
        #101010;

}


.chat-message {

    width: 75%;

    padding: 9px 12px;

    margin-bottom: 10px;

    border-radius: 8px;

    background:
        #1d1d1d;

    color: #888;

    font-size: 9px;

}


.chat-message.user {

    margin-left: auto;

    background:
        rgba(177,191,38,.12);

    color: var(--brand);

}


/* Task */

.task-board {

    position: absolute;

    width: 70%;

    height: 65%;

    top: 18%;

    left: 15%;

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 9px;

}


.task-board div {

    background:
        #151515;

    border:
        1px solid #272727;

    border-radius: 7px;

}


.task-board div:first-child {

    border-top:
        2px solid var(--brand);

}


.task-board div:nth-child(2) {

    border-top:
        2px solid #777;

}


/* Real estate */

.property-cards {

    position: absolute;

    width: 70%;

    height: 65%;

    top: 18%;

    left: 15%;

    display: flex;

    gap: 12px;

}


.property-cards div {

    flex: 1;

    border-radius: 10px;

    border:
        1px solid #292929;

    background:
        linear-gradient(
            135deg,
            #222,
            #101010
        );

}


/* Business */

.business-ui {

    position: absolute;

    width: 70%;

    height: 65%;

    top: 18%;

    left: 15%;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 9px;

}


.business-ui div {

    background:
        #161616;

    border:
        1px solid #272727;

    border-radius: 8px;

}


.business-ui div:first-child {

    grid-column:
        span 2;

}


/* Project info */

.project-info {

    padding: 30px;

}


.project-type {

    color: var(--brand);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;

}


.project-info h3 {

    margin:
        12px 0;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 25px;

}


.project-info p {

    color: var(--muted);

    font-size: 13px;

    line-height: 1.8;

}


.project-technologies {

    display: flex;

    flex-wrap: wrap;

    gap: 7px;

    margin-top: 20px;

}


.project-technologies span {

    padding:
        6px 9px;

    border:
        1px solid var(--border);

    color: #777;

    font-size: 9px;

}


/* =====================================================
   EDUCATION
===================================================== */

.education-card {

    position: relative;

    display: flex;

    align-items: center;

    gap: 30px;

    padding: 35px;

    background:
        var(--card);

    border:
        1px solid var(--border);

    border-radius: 15px;

    transition:
        border-color .3s ease,
        transform .3s ease;

}


.education-card:hover {

    border-color:
        var(--border-brand);

    transform:
        translateY(-5px);

}


.education-icon {

    width: 85px;

    height: 85px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    background:
        var(--brand-transparent);

    border:
        1px solid
        var(--border-brand);

    color: var(--brand);

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 15px;

    font-weight: 700;

}


.education-info span {

    color: var(--brand);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;

}


.education-info h3 {

    margin:
        8px 0;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 25px;

}


.education-info p {

    color: var(--muted);

    font-size: 13px;

}


.education-arrow {

    margin-left: auto;

    color: var(--brand);

    font-size: 25px;

}


/* =====================================================
   WHY HIRE ME
===================================================== */

.why-layout {

    display: grid;

    grid-template-columns:
        .9fr 1.1fr;

    gap: 100px;

}


.why-content {

    display: flex;

    flex-direction: column;

}


.why-item {

    display: grid;

    grid-template-columns:
        45px 1fr;

    gap: 20px;

    padding:
        28px 0;

    border-bottom:
        1px solid var(--border);

}


.why-item > span {

    color: var(--brand);

    font-size: 11px;

    font-weight: 800;

}


.why-item h3 {

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 20px;

}


.why-item p {

    margin-top: 8px;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.8;

}


/* Banner */

.hire-banner {

    margin-top: 90px;

    padding:
        45px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    background:
        radial-gradient(
            circle at 70% 50%,
            rgba(177,191,38,.10),
            transparent 50%
        );

    border:
        1px solid var(--border-brand);

    border-radius: 15px;

}


.hire-banner > div span {

    color: var(--brand);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;

}


.hire-banner h3 {

    margin-top: 8px;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 30px;

}


/* =====================================================
   FAQ
===================================================== */

.faq-list {

    max-width: 900px;

    margin: auto;

}


.faq-item {

    border-bottom:
        1px solid var(--border);

}


.faq-item summary {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding:
        27px 5px;

    list-style: none;

    cursor: pointer;

    color: #ddd;

    font-size: 16px;

    font-weight: 600;

}


.faq-item summary::-webkit-details-marker {

    display: none;

}


.faq-item summary span {

    color: var(--brand);

    font-size: 23px;

    font-weight: 400;

}


.faq-item p {

    max-width: 750px;

    padding:
        0 5px 28px;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.8;

}


/* =====================================================
   CONTACT
===================================================== */

.contact-section {

    background:
        #080808;

}


.contact-layout {

    display: grid;

    grid-template-columns:
        .9fr 1.1fr;

    gap: 90px;

}


.contact-intro h2 {

    margin-top: 18px;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        clamp(45px,6vw,70px);

    line-height: .95;

    letter-spacing: -4px;

}


.contact-intro h2 span {

    display: block;

    color: var(--brand);

}


.contact-intro > p {

    max-width: 500px;

    margin:
        25px 0 35px;

    color: var(--muted);

    font-size: 15px;

    line-height: 1.8;

}


.contact-links {

    display: flex;

    flex-direction: column;

    gap: 18px;

}


.contact-links a {

    display: flex;

    flex-direction: column;

    gap: 3px;

    color: #aaa;

    font-size: 13px;

    transition:
        color .3s ease;

}


.contact-links a:hover {

    color: var(--brand);

}


.contact-links small {

    color: var(--brand);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 2px;

}


/* Form */

.contact-form-card {

    padding: 38px;

    background:
        var(--card);

    border:
        1px solid var(--border);

    border-radius: 15px;

}


.contact-form {

    display: flex;

    flex-direction: column;

    gap: 20px;

}


.form-row {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 18px;

}


.form-group {

    display: flex;

    flex-direction: column;

    gap: 8px;

}


.form-group label {

    color: #aaa;

    font-size: 11px;

    font-weight: 600;

}


.form-group input,
.form-group textarea {

    width: 100%;

    padding:
        15px;

    outline: none;

    border:
        1px solid var(--border);

    border-radius: 7px;

    background:
        #080808;

    color: white;

    font-size: 13px;

    transition:
        border-color .3s ease,
        box-shadow .3s ease;

}


.form-group input:focus,
.form-group textarea:focus {

    border-color:
        var(--brand);

    box-shadow:
        0 0 0 3px
        rgba(177,191,38,.06);

}


.form-group input::placeholder,
.form-group textarea::placeholder {

    color: #555;

}


.form-group textarea {

    resize: vertical;

    min-height: 160px;

}


.submit-button {

    border: 0;

    width: fit-content;

}


/* =====================================================
   FOOTER
===================================================== */

.site-footer {

    padding:
        45px 0;

    border-top:
        1px solid var(--border);

    background:
        var(--black);

}


.footer-container {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}


.footer-brand p {

    margin-top: 5px;

    color: #666;

    font-size: 11px;

}


.footer-socials {

    display: flex;

    gap: 25px;

}


.footer-socials a {

    color: #777;

    font-size: 11px;

    transition:
        color .3s ease;

}


.footer-socials a:hover {

    color: var(--brand);

}


.copyright {

    color: #555;

    font-size: 10px;

}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1050px) {


    .hero-container {

        grid-template-columns:
            1fr;

        text-align: center;

    }


    .hero-description {

        margin-left: auto;

        margin-right: auto;

    }


    .hero-actions {

        justify-content: center;

    }


    .hero-tech-list {

        justify-content: center;

    }


    .tech-showcase {

        width: 600px;

        max-width: 100%;

        margin:
            -20px auto 0;

    }


    .technology-grid {

        grid-template-columns:
            repeat(2,1fr);

    }


    .services-grid {

        grid-template-columns:
            repeat(2,1fr);

    }


    .about-layout {

        grid-template-columns:
            1fr;

        gap: 60px;

    }


    .why-layout {

        grid-template-columns:
            1fr;

        gap: 50px;

    }


    .contact-layout {

        grid-template-columns:
            1fr;

        gap: 60px;

    }

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 800px) {


    .desktop-nav,
    .header-cta {

        display: none;

    }


    .mobile-menu-button {

        display: block;

    }


    .navbar {

        padding-left: 20px;

    }


    .mobile-nav {

        width: min(92%, 1120px);

        margin:
            8px auto 0;

        padding: 15px;

        flex-direction: column;

        gap: 4px;

        background:
            rgba(10,10,10,.95);

        border:
            1px solid var(--border);

        border-radius: 20px;

        backdrop-filter:
            blur(20px);

    }


    .mobile-nav.active {

        display: flex;

    }


    .mobile-nav a {

        padding:
            13px 15px;

        color: #aaa;

        border-radius: 10px;

        font-size: 13px;

    }


    .mobile-nav a:hover {

        color: var(--brand);

        background:
            rgba(177,191,38,.05);

    }


    .projects-grid {

        grid-template-columns:
            1fr;

    }


    .hire-banner {

        flex-direction: column;

        align-items: flex-start;

    }


    .footer-container {

        flex-direction: column;

        text-align: center;

    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 550px) {


    .container {

        width: 92%;

    }


    .hero-section {

        padding-top:
            130px;

    }


    .hero-content h1 {

        font-size:
            51px;

        letter-spacing:
            -3px;

    }


    .hero-description {

        font-size:
            14px;

    }


    .hero-actions {

        flex-direction:
            column;

    }


    .hero-actions .button {

        width: 100%;

    }


    .hero-tech-list {

        gap: 8px;

    }


    .hero-tech-list i {

        display: none;

    }


    .tech-showcase {

        height:
            390px;

        transform:
            scale(.68);

        margin:
            -60px auto -40px;

    }


    .section {

        padding:
            90px 0;

    }


    .section-header {

        margin-bottom:
            45px;

    }


    .section-header h2 {

        font-size:
            42px;

        letter-spacing:
            -2px;

    }


    .about-stats {

        grid-template-columns:
            1fr;

    }


    .technology-grid {

        grid-template-columns:
            1fr;

    }


    .services-grid {

        grid-template-columns:
            1fr;

    }


    .education-card {

        flex-direction:
            column;

        align-items:
            flex-start;

    }


    .education-arrow {

        display:
            none;

    }


    .form-row {

        grid-template-columns:
            1fr;

    }


    .contact-form-card {

        padding:
            25px;

    }


    .contact-intro h2 {

        font-size:
            45px;

    }


    .footer-socials {

        flex-wrap:
            wrap;

        justify-content:
            center;

    }

}

/* =========================================
   THANK YOU PAGE
========================================= */

.thank-you-page {
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 40px 20px;

    background: #000000;

    position: relative;
    overflow: hidden;
}


/* Glow effects */

.thank-you-page::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    background: rgba(177, 191, 38, 0.12);

    border-radius: 50%;

    filter: blur(100px);

    top: -200px;
    right: -150px;
}


.thank-you-page::after {
    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    background: rgba(177, 191, 38, 0.08);

    border-radius: 50%;

    filter: blur(100px);

    bottom: -200px;
    left: -150px;
}


/* Card */

.thank-you-card {

    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 650px;

    text-align: center;

    padding: 70px 50px;

    background: rgba(255, 255, 255, 0.04);

    border: 1px solid rgba(177, 191, 38, 0.25);

    border-radius: 30px;

    backdrop-filter: blur(20px);

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.5);

    animation: thankYouAppear 0.8s ease forwards;
}


/* Check icon */

.thank-you-icon {

    width: 80px;
    height: 80px;

    margin: 0 auto 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #B1BF26;

    color: #000;

    font-size: 38px;
    font-weight: 800;

    box-shadow:
        0 0 40px rgba(177, 191, 38, 0.35);

    animation: checkPop 0.7s ease 0.3s both;
}


/* Small heading */

.small-heading {

    display: block;

    margin-bottom: 15px;

    color: #B1BF26;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 3px;
}


/* Heading */

.thank-you-card h1 {

    margin: 0 0 20px;

    color: #ffffff;

    font-size: clamp(42px, 7vw, 70px);

    line-height: 1;

}


/* Paragraph */

.thank-you-card p {

    max-width: 500px;

    margin: 0 auto 35px;

    color: rgba(255, 255, 255, 0.65);

    font-size: 17px;

    line-height: 1.7;
}


/* Button */

.back-home-btn {

    display: inline-flex;

    align-items: center;
    gap: 12px;

    padding: 15px 25px;

    border-radius: 50px;

    background: #B1BF26;

    color: #000;

    text-decoration: none;

    font-weight: 700;

    transition: all 0.3s ease;
}


.back-home-btn:hover {

    transform: translateY(-4px);

    box-shadow:
        0 15px 35px rgba(177, 191, 38, 0.25);
}


.back-home-btn span {

    font-size: 20px;

    transition: transform 0.3s ease;
}


.back-home-btn:hover span {

    transform: translateX(5px);
}


/* Animations */

@keyframes thankYouAppear {

    from {

        opacity: 0;

        transform: translateY(30px) scale(0.97);
    }

    to {

        opacity: 1;

        transform: translateY(0) scale(1);
    }
}


@keyframes checkPop {

    0% {

        opacity: 0;

        transform: scale(0.5);
    }

    70% {

        transform: scale(1.1);
    }

    100% {

        opacity: 1;

        transform: scale(1);
    }
}


/* Mobile */

@media (max-width: 600px) {

    .thank-you-card {

        padding: 50px 25px;

        border-radius: 22px;
    }

    .thank-you-card p {

        font-size: 15px;
    }

}

/* =====================================================
   TECHNOLOGY LOGO
===================================================== */

.technology-logo {
  width: 80px;
  height: 80px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 25px;

  border-radius: 20px;

  background: rgba(177, 191, 38, 0.06);

  border: 1px solid rgba(177, 191, 38, 0.18);

  overflow: hidden;

  transition: all 0.4s ease;
}


.technology-logo img {
  width: 55px;
  height: 55px;

  object-fit: contain;

  display: block;

  transition: all 0.4s ease;
}


/* Hover */

.technology-card:hover .technology-logo {
  transform: translateY(-5px);

  border-color: #B1BF26;

  background: rgba(177, 191, 38, 0.1);

  box-shadow:
    0 10px 30px rgba(177, 191, 38, 0.12);
}


.technology-card:hover .technology-logo img {
  transform: scale(1.12);
}

/* =====================================================
   HERO PRIMARY TECHNOLOGIES
===================================================== */

.hero-primary-tech {
  display: flex;
  align-items: center;
  gap: 14px;

  margin: 28px 0 25px;

  animation: heroTechAppear 0.8s ease forwards;
}


.hero-tech-item {
  display: flex;
  align-items: center;
  gap: 9px;

  padding: 9px 14px;

  border: 1px solid rgba(177, 191, 38, 0.2);

  border-radius: 50px;

  background: rgba(177, 191, 38, 0.04);

  transition: all 0.3s ease;
}


.hero-tech-item:hover {
  border-color: #B1BF26;

  background: rgba(177, 191, 38, 0.1);

  transform: translateY(-3px);

  box-shadow:
    0 8px 25px rgba(177, 191, 38, 0.12);
}


.hero-tech-item img {
  width: 25px;
  height: 25px;

  object-fit: contain;

  border-radius: 5px;

  transition: transform 0.3s ease;
}


.hero-tech-item:hover img {
  transform: scale(1.12);
}


.hero-tech-item span {
  color: #ffffff;

  font-size: 13px;

  font-weight: 600;

  letter-spacing: 0.3px;
}


.hero-tech-divider {
  width: 4px;
  height: 4px;

  border-radius: 50%;

  background: #B1BF26;

  opacity: 0.7;
}


/* =====================================================
   FLOATING TECHNOLOGY LOGOS
===================================================== */

.tech-icon {
  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;

  overflow: hidden;

  flex-shrink: 0;
}


.tech-icon img {
  width: 100%;
  height: 100%;

  object-fit: contain;

  border-radius: 10px;
}


/* =====================================================
   HERO TECHNOLOGY ANIMATION
===================================================== */

@keyframes heroTechAppear {

  from {
    opacity: 0;

    transform: translateY(15px);
  }

  to {
    opacity: 1;

    transform: translateY(0);
  }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

  .hero-primary-tech {

    flex-wrap: wrap;

    gap: 8px;

    margin-top: 22px;

  }


  .hero-tech-divider {

    display: none;

  }


  .hero-tech-item {

    padding: 8px 11px;

  }


  .hero-tech-item img {

    width: 22px;

    height: 22px;

  }


  .hero-tech-item span {

    font-size: 12px;

  }

}

/* =====================================================
   PROJECT IMAGE
===================================================== */

.project-image {

  position: relative;

  width: 100%;

  height: 260px;

  overflow: hidden;

  background: #0a0a0a;

}


/* Image */

.project-image img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  display: block;

  transition:
    transform 0.7s ease,
    filter 0.7s ease;

}


/* =====================================================
   IMAGE OVERLAY
===================================================== */

.project-overlay {

  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      135deg,
      rgba(177, 191, 38, 0.18),
      transparent 45%,
      rgba(0, 0, 0, 0.45)
    );

  opacity: 0.7;

  transition: opacity 0.4s ease;

}


/* =====================================================
   PROJECT CARD HOVER
===================================================== */

.project-card:hover .project-image img {

  transform: scale(1.07);

  filter: brightness(0.75);

}


.project-card:hover .project-overlay {

  opacity: 1;

}


/* =====================================================
   PROJECT TAG
===================================================== */

.project-image .project-tag {

  position: absolute;

  top: 18px;

  right: 18px;

  z-index: 2;

  padding: 7px 12px;

  border: 1px solid rgba(177, 191, 38, 0.4);

  border-radius: 30px;

  background: rgba(0, 0, 0, 0.7);

  backdrop-filter: blur(10px);

  color: #B1BF26;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 1px;

}


/* =====================================================
   PROJECT IMAGE SHINE
===================================================== */

.project-image::after {

  content: "";

  position: absolute;

  top: 0;

  left: -120%;

  width: 70%;

  height: 100%;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.08),
      transparent
    );

  transform: skewX(-20deg);

  transition: left 0.8s ease;

  pointer-events: none;

}


.project-card:hover .project-image::after {

  left: 140%;

}


/* =====================================================
   PROJECT INFO
===================================================== */

.project-info {

  padding: 28px;

}


.project-type {

  display: block;

  margin-bottom: 12px;

  color: #B1BF26;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 1.5px;

}


.project-info h3 {

  margin-bottom: 12px;

}


.project-info p {

  margin-bottom: 20px;

  color: rgba(255, 255, 255, 0.62);

  line-height: 1.7;

}


/* =====================================================
   TECHNOLOGY TAGS
===================================================== */

.project-technologies {

  display: flex;

  flex-wrap: wrap;

  gap: 8px;

}


.project-technologies span {

  padding: 6px 10px;

  border: 1px solid rgba(177, 191, 38, 0.15);

  border-radius: 5px;

  color: rgba(255, 255, 255, 0.65);

  background: rgba(177, 191, 38, 0.04);

  font-size: 11px;

  transition: all 0.3s ease;

}


.project-technologies span:hover {

  color: #B1BF26;

  border-color: rgba(177, 191, 38, 0.5);

  background: rgba(177, 191, 38, 0.08);

}


/* =====================================================
   PROJECT CARD
===================================================== */

.project-card {

  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.08);

  border-radius: 18px;

  background: #080808;

  transition:
    transform 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;

}


.project-card:hover {

  transform: translateY(-8px);

  border-color: rgba(177, 191, 38, 0.35);

  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.45),
    0 0 30px rgba(177, 191, 38, 0.06);

}

/* =====================================================
   FOOTER BOTTOM
===================================================== */

.footer-bottom {
  display: grid;

  grid-template-columns: 1fr auto 1fr;

  align-items: center;

  gap: 30px;

  padding: 25px 0;

  border-top: 1px solid rgba(255, 255, 255, 0.08);
}


/* Logo */

.footer-logo {
  justify-self: start;
}

.footer-logo a {
  color: #ffffff;

  text-decoration: none;

  font-weight: 700;

  font-size: 18px;
}


/* Copyright */

.copyright {
  margin: 0;

  text-align: center;

  color: rgba(255, 255, 255, 0.45);

  font-size: 13px;
}


/* Social Icons */

.footer-socials {
  display: flex;

  justify-content: flex-end;

  align-items: center;

  gap: 20px;
}

.footer-socials a {
  color: rgba(255, 255, 255, 0.65);

  text-decoration: none;

  font-size: 13px;

  transition: color 0.3s ease;
}

.footer-socials a:hover {
  color: #B1BF26;
}

/* =====================================================
   CONTACT SUBMIT BUTTON
===================================================== */

.contact-submit-btn {
  position: relative;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 14px;

  min-width: 190px;

  padding: 15px 22px;

  border: 1px solid #B1BF26;

  border-radius: 8px;

  background: #B1BF26;

  color: #000000;

  font-family: inherit;

  font-size: 13px;

  font-weight: 700;

  letter-spacing: 0.4px;

  cursor: pointer;

  overflow: hidden;

  transition:
    color 0.35s ease,
    background 0.35s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease;
}


/* Hover background layer */

.contact-submit-btn::before {
  content: "";

  position: absolute;

  inset: 0;

  background: #000000;

  transform: translateX(-101%);

  transition: transform 0.4s ease;

  z-index: 0;
}


/* Text and arrow */

.contact-submit-btn span {
  position: relative;

  z-index: 1;
}


/* Arrow */

.contact-submit-btn .submit-arrow {
  font-size: 18px;

  line-height: 1;

  transition: transform 0.35s ease;
}


/* Hover */

.contact-submit-btn:hover {
  color: #B1BF26;

  transform: translateY(-3px);

  box-shadow:
    0 10px 30px rgba(177, 191, 38, 0.18),
    0 0 20px rgba(177, 191, 38, 0.08);
}


.contact-submit-btn:hover::before {
  transform: translateX(0);
}


.contact-submit-btn:hover .submit-arrow {
  transform: translateX(6px);
}


/* Click */

.contact-submit-btn:active {
  transform: translateY(-1px);
}


/* Focus */

.contact-submit-btn:focus-visible {
  outline: 2px solid #B1BF26;

  outline-offset: 4px;
}

/* =====================================================
   HEADER LOGO
===================================================== */

.logo {
  display: inline-flex;

  align-items: center;

  text-decoration: none;
}


.logo img {
  display: block;

  width: 90px;

  height: auto;

  object-fit: contain;

  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

/* =====================================================
   FOOTER LOGO
===================================================== */

.footer-logo {
  display: flex;

  align-items: center;

  justify-content: flex-start;
}


.footer-logo a {
  display: inline-flex;

  align-items: center;

  text-decoration: none;
}


.footer-logo img {
  display: block;

  width: 70px;

  height: auto;

  object-fit: contain;

  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}


.footer-logo a:hover img {
  transform: translateY(-2px);

  opacity: 0.85;
}


.logo:hover img {
  transform: translateY(-2px);

  opacity: 0.85;
}

/* =====================================================
   FINAL RESPONSIVE OVERRIDES
   Mobile + Tablet + Small Screens
===================================================== */


/* =====================================================
   GENERAL RESPONSIVE SAFETY
===================================================== */

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

img,
svg,
video,
iframe {
  max-width: 100%;
}

.container {
  width: min(92%, var(--container));
  max-width: 100%;
}

section,
header,
footer,
main {
  max-width: 100%;
}

input,
textarea,
button,
select {
  max-width: 100%;
}


/* =====================================================
   LARGE TABLETS / SMALL LAPTOPS
===================================================== */

@media (max-width: 1100px) {

  .container {
    width: 92%;
  }


  /* Header */

  .navbar {
    width: 92%;
  }


  /* Hero */

  .hero-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-content {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
  }

  .hero-content h1 {
    max-width: 850px;
  }

  .hero-description {
    max-width: 700px;
  }

  .hero-actions {
    justify-content: flex-start;
  }


  /* Technology */

  .technology-grid {
    grid-template-columns: repeat(2, 1fr);
  }


  /* About */

  .about-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }


  /* Services */

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }


  /* Why hire */

  .why-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }


  /* Contact */

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 800px) {

  /* -------------------------------------------------
     HEADER
  ------------------------------------------------- */

  .site-header {
    top: 10px;
  }

  .navbar {
    width: 94%;
    min-height: 62px;
    padding: 7px 8px 7px 18px;
  }

  .logo img {
    width: 80px;
    height: auto;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .mobile-menu-button {
    display: block;
    flex-shrink: 0;
  }


  /* -------------------------------------------------
     HERO
  ------------------------------------------------- */

  .hero-section {
    min-height: auto;

    padding-top: 125px;
    padding-bottom: 80px;
  }

  .hero-container {
    display: flex;
    flex-direction: column;

    width: 92%;

    gap: 10px;
  }

  .hero-content {
    width: 100%;

    text-align: center;
  }


  /* Availability */

  .availability {
    max-width: 100%;

    margin-left: auto;
    margin-right: auto;

    justify-content: center;

    text-align: center;
  }


  /* Primary technologies */

  .hero-primary-tech {
    width: 100%;

    justify-content: center;

    flex-wrap: wrap;

    gap: 8px;

    margin-top: 20px;
  }


  /* Heading */

  .hero-content h1 {
    width: 100%;
    max-width: 100%;

    font-size: clamp(48px, 9vw, 72px);

    line-height: 0.95;

    letter-spacing: -4px;

    overflow-wrap: break-word;
  }


  /* Description */

  .hero-description {
    width: 100%;
    max-width: 650px;

    margin: 25px auto;

    font-size: 15px;
  }


  /* Buttons */

  .hero-actions {
    justify-content: center;

    width: 100%;
  }


  /* Tech list */

  .hero-tech-list {
    justify-content: center;

    width: 100%;
  }


  /* -------------------------------------------------
     HERO TECHNOLOGY SHOWCASE
  ------------------------------------------------- */

  .tech-showcase {
    position: relative;

    width: min(100%, 600px);

    max-width: 100%;

    height: 430px;

    margin: 0 auto;

    transform: none;
  }

  .orbit-large {
    width: 390px;
    height: 390px;
  }

  .orbit-small {
    width: 260px;
    height: 260px;
  }


  /* -------------------------------------------------
     SECTIONS
  ------------------------------------------------- */

  .section {
    padding: 100px 0;
  }

  .section-header {
    width: 100%;
    max-width: 760px;

    margin-bottom: 50px;
  }

  .section-header h2 {
    font-size: clamp(38px, 7vw, 58px);

    letter-spacing: -3px;
  }


  /* -------------------------------------------------
     PROJECTS
  ------------------------------------------------- */

  .projects-grid {
    grid-template-columns: 1fr;
  }


  /* -------------------------------------------------
     FOOTER
  ------------------------------------------------- */

  .footer-bottom {
    grid-template-columns: 1fr;

    text-align: center;

    gap: 20px;
  }

  .footer-logo {
    justify-content: center;

    order: 1;
  }

  .copyright {
    order: 2;

    white-space: normal;
  }

  .footer-socials {
    justify-content: center;

    order: 3;

    flex-wrap: wrap;
  }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

  /* -------------------------------------------------
     GLOBAL
  ------------------------------------------------- */

  .container {
    width: 92%;
  }


  /* -------------------------------------------------
     HEADER
  ------------------------------------------------- */

  .site-header {
    top: 8px;
  }

  .navbar {
    width: 94%;

    min-height: 58px;

    padding: 6px 7px 6px 15px;

    gap: 10px;
  }

  .logo img {
    width: 72px;
  }

  .mobile-menu-button {
    width: 40px;
    height: 40px;
  }


  /* -------------------------------------------------
     HERO
  ------------------------------------------------- */

  .hero-section {
    padding-top: 115px;
    padding-bottom: 70px;
  }

  .hero-container {
    width: 92%;
  }


  /* Availability */

  .availability {
    display: inline-flex;

    max-width: 100%;

    padding: 7px 10px;

    font-size: 10px;

    line-height: 1.4;
  }


  /* Primary technology */

  .hero-primary-tech {
    margin-top: 18px;
    margin-bottom: 22px;
  }

  .hero-tech-item {
    padding: 7px 10px;

    gap: 7px;
  }

  .hero-tech-item img {
    width: 21px;
    height: 21px;
  }

  .hero-tech-item span {
    font-size: 11px;
  }


  /* Eyebrow */

  .eyebrow {
    margin-bottom: 14px;

    font-size: 9px;

    letter-spacing: 2px;
  }


  /* Main heading */

  .hero-content h1 {
    font-size: clamp(40px, 13vw, 56px);

    line-height: 0.94;

    letter-spacing: -3px;
  }


  /* Description */

  .hero-description {
    margin: 22px auto;

    font-size: 14px;

    line-height: 1.75;
  }


  /* Buttons */

  .hero-actions {
    flex-direction: column;

    width: 100%;

    gap: 10px;
  }

  .hero-actions .button {
    width: 100%;

    min-height: 48px;
  }


  /* Tech list */

  .hero-tech-list {
    gap: 7px;

    margin-top: 28px;

    line-height: 1.8;
  }

  .hero-tech-list i {
    display: none;
  }


  /* -------------------------------------------------
     HERO SHOWCASE
  ------------------------------------------------- */

  .tech-showcase {
    width: 100%;

    height: 350px;

    margin: 10px auto 0;

    transform: scale(0.78);
    transform-origin: center top;
  }

  .orbit-large {
    width: 330px;
    height: 330px;
  }

  .orbit-small {
    width: 220px;
    height: 220px;
  }

  .tech-center {
    width: 125px;
    height: 125px;
  }

  .tech-center-icon {
    font-size: 24px;
  }

  .tech-center span {
    font-size: 7px;
  }

  .floating-tech {
    padding: 8px 10px;

    gap: 7px;
  }

  .tech-icon {
    width: 35px;
    height: 35px;
  }

  .floating-tech strong {
    font-size: 10px;
  }

  .floating-tech small {
    font-size: 8px;
  }


  /* Floating technology positions */

  .tech-python {
    top: 35px;
    right: 30px;
  }

  .tech-flask {
    top: 150px;
    right: 0;
  }

  .tech-django {
    bottom: 45px;
    right: 35px;
  }

  .tech-laravel {
    bottom: 15px;
    left: 25px;
  }

  .tech-js {
    top: 150px;
    left: 0;
  }

  .tech-git {
    top: 30px;
    left: 30px;
  }


  /* -------------------------------------------------
     SCROLL INDICATOR
  ------------------------------------------------- */

  .scroll-down {
    display: none;
  }


  /* -------------------------------------------------
     GENERAL SECTIONS
  ------------------------------------------------- */

  .section {
    padding: 80px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-label {
    font-size: 9px;

    letter-spacing: 2px;
  }

  .section-header h2 {
    margin-top: 12px;

    font-size: clamp(34px, 10vw, 45px);

    line-height: 1.05;

    letter-spacing: -2px;
  }

  .section-header p {
    font-size: 14px;

    line-height: 1.7;
  }


  /* -------------------------------------------------
     ABOUT
  ------------------------------------------------- */

  .about-layout {
    grid-template-columns: 1fr;

    gap: 40px;
  }

  .about-intro .big-paragraph {
    font-size: 20px;

    line-height: 1.5;
  }

  .about-intro p:not(.big-paragraph) {
    font-size: 14px;

    line-height: 1.8;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .stat-card {
    min-height: 135px;

    padding: 24px;
  }


  /* -------------------------------------------------
     TECHNOLOGY
  ------------------------------------------------- */

  .technology-grid {
    grid-template-columns: 1fr;

    gap: 14px;
  }

  .technology-card {
    min-height: 220px;

    padding: 24px;
  }

  .technology-logo {
    width: 65px;
    height: 65px;

    margin-bottom: 20px;
  }

  .technology-logo img {
    width: 45px;
    height: 45px;
  }


  /* -------------------------------------------------
     SERVICES
  ------------------------------------------------- */

  .services-grid {
    grid-template-columns: 1fr;

    gap: 14px;
  }

  .service-card {
    min-height: 280px;

    padding: 25px;
  }


  /* -------------------------------------------------
     PROJECTS
  ------------------------------------------------- */

  .projects-grid {
    grid-template-columns: 1fr;

    gap: 18px;
  }

  .project-visual {
    height: 230px;
  }

  .project-image {
    height: 220px;
  }

  .project-info {
    padding: 24px;
  }

  .project-info h3 {
    font-size: 22px;

    line-height: 1.25;
  }

  .project-info p {
    font-size: 13px;

    line-height: 1.7;
  }


  /* -------------------------------------------------
     EDUCATION
  ------------------------------------------------- */

  .education-card {
    flex-direction: column;

    align-items: flex-start;

    gap: 20px;

    padding: 25px;
  }

  .education-icon {
    width: 70px;
    height: 70px;
  }

  .education-info h3 {
    font-size: 21px;

    line-height: 1.3;
  }

  .education-arrow {
    display: none;
  }


  /* -------------------------------------------------
     WHY HIRE
  ------------------------------------------------- */

  .why-layout {
    grid-template-columns: 1fr;

    gap: 40px;
  }

  .why-item {
    grid-template-columns: 35px 1fr;

    gap: 12px;

    padding: 22px 0;
  }

  .why-item h3 {
    font-size: 18px;
  }

  .why-item p {
    font-size: 13px;
  }


  /* -------------------------------------------------
     HIRE BANNER
  ------------------------------------------------- */

  .hire-banner {
    flex-direction: column;

    align-items: flex-start;

    padding: 28px;

    gap: 25px;

    margin-top: 60px;
  }

  .hire-banner h3 {
    font-size: 24px;

    line-height: 1.3;
  }


  /* -------------------------------------------------
     FAQ
  ------------------------------------------------- */

  .faq-list {
    width: 100%;
  }

  .faq-item summary {
    padding: 20px 2px;

    gap: 15px;

    font-size: 14px;

    line-height: 1.5;
  }

  .faq-item summary span {
    flex-shrink: 0;
  }

  .faq-item p {
    padding: 0 2px 22px;

    font-size: 13px;

    line-height: 1.75;
  }


  /* -------------------------------------------------
     CONTACT
  ------------------------------------------------- */

  .contact-layout {
    grid-template-columns: 1fr;

    gap: 40px;
  }

  .contact-intro h2 {
    font-size: clamp(40px, 11vw, 52px);

    letter-spacing: -3px;
  }

  .contact-intro > p {
    font-size: 14px;

    line-height: 1.75;
  }

  .contact-form-card {
    width: 100%;

    padding: 22px;

    border-radius: 13px;
  }

  .form-row {
    grid-template-columns: 1fr;

    gap: 20px;
  }

  .form-group input,
  .form-group textarea {
    width: 100%;

    font-size: 13px;
  }

  .form-group textarea {
    min-height: 140px;
  }

  .contact-submit-btn {
    width: 100%;

    min-width: 0;
  }


  /* -------------------------------------------------
     FOOTER
  ------------------------------------------------- */

  .site-footer {
    padding: 30px 0;
  }

  .footer-bottom {
    grid-template-columns: 1fr;

    gap: 18px;

    padding: 22px 0;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-logo img {
    width: 65px;
  }

  .copyright {
    white-space: normal;

    font-size: 11px;

    line-height: 1.6;
  }

  .footer-socials {
    justify-content: center;

    flex-wrap: wrap;

    gap: 15px;
  }

}


/* =====================================================
   SMALL MOBILE
   390px and below
===================================================== */

@media (max-width: 390px) {

  .container {
    width: 90%;
  }


  /* Header */

  .navbar {
    width: 94%;

    padding-left: 13px;
  }

  .logo img {
    width: 68px;
  }

  .mobile-menu-button {
    width: 38px;
    height: 38px;
  }


  /* Hero */

  .hero-section {
    padding-top: 108px;
  }

  .availability {
    width: 100%;

    font-size: 9px;

    padding: 7px 8px;
  }

  .hero-content h1 {
    font-size: 39px;

    letter-spacing: -2.5px;
  }

  .hero-description {
    font-size: 13px;

    line-height: 1.7;
  }


  /* Primary technology */

  .hero-primary-tech {
    gap: 6px;
  }

  .hero-tech-item {
    padding: 6px 8px;

    gap: 5px;
  }

  .hero-tech-item img {
    width: 19px;
    height: 19px;
  }

  .hero-tech-item span {
    font-size: 10px;
  }


  /* Showcase */

  .tech-showcase {
    height: 320px;

    transform: scale(0.68);

    transform-origin: center top;

    margin-bottom: -55px;
  }


  /* Sections */

  .section {
    padding: 70px 0;
  }

  .section-header h2 {
    font-size: 34px;

    letter-spacing: -1.8px;
  }


  /* About */

  .about-intro .big-paragraph {
    font-size: 18px;
  }


  /* Cards */

  .technology-card,
  .service-card {
    padding: 20px;
  }


  /* Projects */

  .project-visual,
  .project-image {
    height: 200px;
  }

  .project-info {
    padding: 20px;
  }

  .project-info h3 {
    font-size: 20px;
  }


  /* Education */

  .education-card {
    padding: 20px;
  }


  /* Contact */

  .contact-form-card {
    padding: 18px;
  }

  .contact-intro h2 {
    font-size: 39px;

    letter-spacing: -2px;
  }


  /* Footer */

  .footer-socials {
    gap: 12px;
  }

}


/* =====================================================
   VERY SMALL / OLD MOBILE
   360px and below
===================================================== */

@media (max-width: 360px) {

  .container {
    width: 90%;
  }


  /* Header */

  .navbar {
    min-height: 55px;

    padding-left: 11px;
    padding-right: 6px;
  }

  .logo img {
    width: 62px;
  }

  .mobile-menu-button {
    width: 36px;
    height: 36px;
  }

  .mobile-menu-button span {
    width: 18px;
  }


  /* Hero */

  .hero-content h1 {
    font-size: 36px;

    letter-spacing: -2px;
  }

  .eyebrow {
    font-size: 8px;

    letter-spacing: 1.7px;
  }

  .hero-description {
    font-size: 12.5px;
  }


  /* Technology pills */

  .hero-tech-item {
    padding: 5px 7px;
  }

  .hero-tech-item img {
    width: 18px;
    height: 18px;
  }

  .hero-tech-item span {
    font-size: 9px;
  }


  /* Showcase */

  .tech-showcase {
    height: 300px;

    transform: scale(0.61);

    margin-top: 0;

    margin-bottom: -75px;
  }


  /* Section headings */

  .section-header h2 {
    font-size: 31px;

    letter-spacing: -1.5px;
  }

  .section-header p {
    font-size: 13px;
  }


  /* Cards */

  .technology-card {
    min-height: 200px;
  }

  .service-card {
    min-height: 260px;
  }


  /* Project */

  .project-visual,
  .project-image {
    height: 180px;
  }

  .project-info {
    padding: 18px;
  }


  /* Contact */

  .contact-form-card {
    padding: 16px;
  }

  .contact-submit-btn {
    padding: 14px 18px;

    font-size: 12px;
  }


  /* Footer */

  .footer-socials a {
    font-size: 11px;
  }

}


/* =====================================================
   EXTREMELY SMALL DEVICES
   320px and below
===================================================== */

@media (max-width: 320px) {

  .container {
    width: 92%;
  }


  /* Hero */

  .hero-section {
    padding-top: 100px;
  }

  .hero-content h1 {
    font-size: 33px;

    letter-spacing: -1.8px;
  }

  .hero-description {
    font-size: 12px;
  }


  /* Technology */

  .hero-primary-tech {
    gap: 5px;
  }

  .hero-tech-item {
    padding: 5px 6px;
  }

  .hero-tech-item img {
    width: 17px;
    height: 17px;
  }

  .hero-tech-item span {
    font-size: 8.5px;
  }


  /* Showcase */

  .tech-showcase {
    height: 280px;

    transform: scale(0.55);

    margin-bottom: -90px;
  }


  /* Sections */

  .section {
    padding: 60px 0;
  }

  .section-header h2 {
    font-size: 29px;
  }


  /* Project */

  .project-visual,
  .project-image {
    height: 165px;
  }


  /* Form */

  .contact-form-card {
    padding: 14px;
  }

  .form-group input,
  .form-group textarea {
    padding: 13px;

    font-size: 12px;
  }

  .contact-submit-btn {
    width: 100%;
  }

}

