/* =========================================================
   SACHIN KUMAR PORTFOLIO
   Modern Neumorphic UI
========================================================= */


/* =========================================================
   ROOT VARIABLES
========================================================= */

:root {
    --bg: #e8eef3;
    --bg-dark: #dfe6ec;
    --surface: #e8eef3;
    --surface-light: #f4f7fa;
    --text: #1b2633;
    --text-secondary: #526170;
    --text-muted: #7b8997;
    --primary: #246bfd;
    --primary-dark: #1552d8;
    --secondary: #6c5ce7;
    --success: #1fa774;
    --danger: #e24c4c;
    --white: #ffffff;
    --shadow-dark: 14px 14px 28px rgba(163, 174, 185, 0.55);
    --shadow-light: -14px -14px 28px rgba(255, 255, 255, 0.95);
    --shadow-soft: 8px 8px 20px rgba(163, 174, 185, 0.45), -8px -8px 20px rgba(255, 255, 255, 0.9);
    --shadow-small: 4px 4px 10px rgba(163, 174, 185, 0.4), -4px -4px 10px rgba(255, 255, 255, 0.9);
    --inset: inset 6px 6px 12px rgba(163, 174, 185, 0.35), inset -6px -6px 12px rgba(255, 255, 255, 0.9);
    --radius-xs: 8px;
    --radius-sm: 14px;
    --radius-md: 22px;
    --radius-lg: 32px;
    --radius-xl: 42px;
    --transition: 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    --max-width: 1200px;
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
}

body {
    min-width: 320px;
    overflow-x: hidden;
    background: radial-gradient( circle at 15% 10%, rgba(255, 255, 255, 0.75), transparent 30% ), radial-gradient( circle at 85% 70%, rgba(36, 107, 253, 0.06), transparent 30% ), var(--bg);
    color: var(--text);
    font-family: "Inter", sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

    body.menu-open {
        overflow: hidden;
    }

img,
svg,
video {
    max-width: 100%;
    height: auto;
}

button,
input,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}


/* =========================================================
   ACCESSIBILITY
========================================================= */

:focus-visible {
    outline: 3px solid rgba(36, 107, 253, 0.4);
    outline-offset: 4px;
}

::selection {
    background: rgba(36, 107, 253, 0.2);
}


/* =========================================================
   BACKGROUND
========================================================= */

.background-orb {
    position: fixed;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(10px);
    opacity: 0.35;
    z-index: -2;
}

.orb-one {
    top: 10%;
    left: -180px;
    background: radial-gradient( circle, rgba(36, 107, 253, 0.16), transparent 70% );
}

.orb-two {
    right: -180px;
    bottom: 5%;
    background: radial-gradient( circle, rgba(108, 92, 231, 0.14), transparent 70% );
}

.background-grid {
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.12;
    z-index: -3;
    background-image: linear-gradient( rgba(90, 105, 120, 0.05) 1px, transparent 1px ), linear-gradient( 90deg, rgba(90, 105, 120, 0.05) 1px, transparent 1px );
    background-size: 60px 60px;
    mask-image: linear-gradient( to bottom, black, transparent 80% );
}


/* =========================================================
   NEUMORPHISM
========================================================= */

.neumorphic {
    background: var(--surface);
    box-shadow: var(--shadow-dark), var(--shadow-light);
}

.neumorphic-inset {
    background: var(--surface);
    box-shadow: var(--inset);
}


/* =========================================================
   PAGE LOADER
========================================================= */

.page-loader {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: var(--bg);
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

    .page-loader.hidden {
        opacity: 0;
        visibility: hidden;
    }

.loader-orb {
    width: 70px;
    height: 70px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    box-shadow: var(--shadow-dark), var(--shadow-light);
}

    .loader-orb span {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        border: 4px solid rgba(36, 107, 253, 0.15);
        border-top-color: var(--primary);
        animation: spin 1s linear infinite;
    }

.page-loader p {
    color: var(--text-muted);
    font-size: 13px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}


/* =========================================================
   CONTAINER
========================================================= */

.container {
    width: min( calc(100% - 40px), var(--max-width) );
    margin-inline: auto;
}


/* =========================================================
   HEADER / NAVIGATION
========================================================= */

.site-header {
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding-inline: 20px;
    transition: var(--transition);
}

    .site-header.scrolled {
        top: 12px;
    }

.navbar {
    width: min( 100%, 1050px );
    min-height: 72px;
    margin-inline: auto;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 24px;
    position: relative;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.brand-mark {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: var(--primary);
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-size: 14px;
    box-shadow: var(--shadow-small);
}

.brand-text {
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

    .brand-text span {
        color: var(--primary);
    }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-item {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 11px 13px;
    border-radius: 15px;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 600;
    overflow: hidden;
    transition: var(--transition);
}

    .nav-item i {
        font-size: 12px;
    }

    .nav-item:hover,
    .nav-item.active {
        color: var(--primary);
        background: rgba(255, 255, 255, 0.35);
        box-shadow: inset 3px 3px 7px rgba(163, 174, 185, 0.15), inset -3px -3px 7px rgba(255, 255, 255, 0.7);
    }

.ripple-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.ripple {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: radial-gradient( circle, rgba(36, 107, 253, 0.28), rgba(36, 107, 253, 0.05) 60%, transparent 70% );
    transform: translate(-50%, -50%) scale(0);
    animation: ripple-animation 0.7s ease-out forwards;
}

@keyframes ripple-animation {

    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0.8;
    }

    100% {
        transform: translate(-50%, -50%) scale(15);
        opacity: 0;
    }
}

.mobile-menu-button {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    background: var(--surface);
    color: var(--text);
    box-shadow: var(--shadow-small);
}


/* =========================================================
   SECTIONS
========================================================= */

.section {
    position: relative;
    padding: 110px 0;
}

.section-muted {
    background: linear-gradient( 180deg, transparent, rgba(216, 224, 232, 0.22), transparent );
}

.hero {
    min-height: 100vh;
    padding-top: 150px;
    padding-bottom: 90px;
    display: flex;
    align-items: center;
}

.section-heading {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 60px;
}

.section-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 15px;
    background: var(--surface);
    box-shadow: var(--shadow-small);
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
}

.eyebrow {
    margin-bottom: 9px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-heading h2 {
    font-family: "Poppins", sans-serif;
    font-size: clamp( 32px, 5vw, 48px );
    line-height: 1.1;
    letter-spacing: -1.8px;
}

.gradient-text {
    color: var(--primary);
    background: linear-gradient( 135deg, var(--primary), var(--secondary) );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* =========================================================
   HERO
========================================================= */

.hero-container {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    align-items: center;
    gap: 70px;
}

.availability-badge {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 14px;
    border-radius: 50px;
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 22px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 0 5px rgba(31, 167, 116, 0.1);
    animation: status-pulse 2s infinite;
}

@keyframes status-pulse {

    0%, 100% {
        box-shadow: 0 0 0 4px rgba(31, 167, 116, 0.08);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(31, 167, 116, 0.02);
    }
}

.hero-content .eyebrow {
    margin-bottom: 3px;
}

.hero-content h1 {
    font-family: "Poppins", sans-serif;
    font-size: clamp( 52px, 8vw, 92px );
    line-height: 0.98;
    letter-spacing: -5px;
    margin-bottom: 22px;
}

.hero-role {
    min-height: 44px;
    font-family: "Poppins", sans-serif;
    font-size: clamp( 22px, 3vw, 32px );
    line-height: 1.3;
}

#typingText {
    color: var(--primary);
}

.typing-cursor {
    color: var(--primary);
    animation: blink 0.8s infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

.hero-description {
    max-width: 680px;
    margin-top: 22px;
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.btn {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 23px;
    border: 0;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 700;
    transition: var(--transition);
}

    .btn:hover {
        transform: translateY(-3px);
    }

.btn-primary {
    color: white;
    background: linear-gradient( 135deg, var(--primary), var(--secondary) );
    box-shadow: 7px 7px 15px rgba(79, 95, 130, 0.28), -5px -5px 12px rgba(255, 255, 255, 0.75);
}

    .btn-primary:hover {
        box-shadow: 10px 10px 20px rgba(79, 95, 130, 0.32), -6px -6px 14px rgba(255, 255, 255, 0.8);
    }

.btn-secondary {
    color: var(--text);
    background: var(--surface);
    box-shadow: var(--shadow-small);
}

    .btn-secondary:hover {
        color: var(--primary);
    }

.hero-socials {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.social-button {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: var(--text-secondary);
    transition: var(--transition);
}

    .social-button:hover {
        color: var(--primary);
        transform: translateY(-4px);
    }


/* =========================================================
   HERO VISUAL
========================================================= */

.hero-visual {
    min-height: 500px;
    display: grid;
    place-items: center;
}

.profile-scene {
    position: relative;
    width: min( 100%, 480px );
    aspect-ratio: 1;
}

.profile-card {
    position: absolute;
    inset: 11% 9%;
    border-radius: 40px;
    padding: 42px 36px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    isolation: isolate;
}

.profile-card-glow {
    position: absolute;
    width: 230px;
    height: 230px;
    top: -90px;
    right: -60px;
    border-radius: 50%;
    background: radial-gradient( circle, rgba(36, 107, 253, 0.17), transparent 70% );
    filter: blur(5px);
    z-index: -1;
}

.profile-avatar {
    width: 125px;
    height: 125px;
    display: grid;
    place-items: center;
    margin-bottom: auto;
    border-radius: 38px;
    background: linear-gradient( 145deg, #f5f8fb, #d8e0e8 );
    color: var(--primary);
    box-shadow: var(--shadow-soft);
    font-family: "Poppins", sans-serif;
    font-size: 32px;
    font-weight: 800;
}

.profile-label {
    color: var(--primary);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.profile-card h3 {
    margin-top: 8px;
    font-family: "Poppins", sans-serif;
    font-size: clamp( 25px, 3vw, 34px );
    line-height: 1.15;
    letter-spacing: -1px;
}

.profile-mini-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 28px;
}

    .profile-mini-stats div {
        padding: 12px 10px;
        border-radius: 15px;
        box-shadow: var(--inset);
    }

    .profile-mini-stats strong,
    .profile-mini-stats span {
        display: block;
    }

    .profile-mini-stats strong {
        color: var(--primary);
        font-size: 12px;
    }

    .profile-mini-stats span {
        margin-top: 2px;
        color: var(--text-muted);
        font-size: 8px;
    }

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 17px;
    border-radius: 18px;
    z-index: 3;
    animation: float-card 4s ease-in-out infinite;
}

    .floating-card i {
        width: 38px;
        height: 38px;
        display: grid;
        place-items: center;
        border-radius: 12px;
        color: var(--primary);
        box-shadow: var(--inset);
    }

    .floating-card strong,
    .floating-card small {
        display: block;
    }

    .floating-card strong {
        font-size: 12px;
    }

    .floating-card small {
        color: var(--text-muted);
        font-size: 9px;
    }

.card-top {
    top: 8%;
    right: -2%;
}

.card-bottom {
    left: -3%;
    bottom: 10%;
    animation-delay: -2s;
}

@keyframes float-card {

    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: var(--text-muted);
    font-size: 10px;
    font-weight: 600;
    animation: scroll-bounce 2s infinite;
}

    .scroll-indicator i {
        color: var(--primary);
    }

@keyframes scroll-bounce {

    0%, 100% {
        transform: translate(-50%, 0);
    }

    50% {
        transform: translate(-50%, 6px);
    }
}


/* =========================================================
   ABOUT
========================================================= */

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
    gap: 30px;
}

.about-main {
    padding: 42px;
    border-radius: var(--radius-lg);
}

.about-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    margin-bottom: 24px;
    border-radius: 18px;
    color: var(--primary);
    box-shadow: var(--inset);
    font-size: 22px;
}

.about-main h3 {
    max-width: 650px;
    font-family: "Poppins", sans-serif;
    font-size: 28px;
    line-height: 1.3;
    letter-spacing: -1px;
}

.about-main p {
    margin-top: 18px;
    color: var(--text-secondary);
    font-size: 15px;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px;
    margin-top: 28px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 600;
}

    .highlight-item i {
        color: var(--success);
        font-size: 11px;
    }

.about-side {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.info-card {
    min-height: 105px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border-radius: 22px;
    transition: var(--transition);
}

    .info-card:hover {
        transform: translateX(5px);
    }

.info-card-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border-radius: 15px;
    color: var(--primary);
    box-shadow: var(--inset);
}

.info-card span,
.info-card strong {
    display: block;
}

.info-card span {
    color: var(--text-muted);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.info-card strong {
    margin-top: 4px;
    font-size: 12px;
}


/* =========================================================
   EDUCATION
========================================================= */

.education-wrapper {
    margin-top: 30px;
    padding: 35px 40px;
    border-radius: var(--radius-lg);
}

.education-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
}

.education-icon {
    width: 55px;
    height: 55px;
    display: grid;
    place-items: center;
    border-radius: 17px;
    color: var(--primary);
    box-shadow: var(--shadow-small);
}

.education-header h3 {
    font-family: "Poppins", sans-serif;
    font-size: 23px;
}

.education-content {
    position: relative;
    padding-left: 30px;
}

.timeline-line {
    position: absolute;
    top: 5px;
    bottom: 5px;
    left: 7px;
    width: 2px;
    background: linear-gradient( to bottom, var(--primary), rgba(36, 107, 253, 0.05) );
}

.timeline-item {
    position: relative;
    display: flex;
    gap: 20px;
}

.timeline-dot {
    position: absolute;
    left: -28px;
    top: 6px;
    width: 16px;
    height: 16px;
    border: 4px solid var(--surface);
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 4px rgba(36, 107, 253, 0.12);
}

.timeline-item h4 {
    font-family: "Poppins", sans-serif;
    font-size: 17px;
}

.timeline-item p {
    max-width: 750px;
    margin-top: 7px;
    color: var(--text-secondary);
    font-size: 13px;
}


/* =========================================================
   SKILLS
========================================================= */

.skills-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 25px;
}

.skill-card {
    padding: 28px;
    border-radius: 25px;
    transition: var(--transition);
}

    .skill-card:hover {
        transform: translateY(-6px);
    }

.skill-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

    .skill-card-header > span {
        color: var(--text-muted);
        font-size: 10px;
        font-weight: 800;
    }

.skill-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: var(--primary);
    box-shadow: var(--inset);
}

.skill-card h3 {
    margin-bottom: 18px;
    font-family: "Poppins", sans-serif;
    font-size: 19px;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

    .skill-tags span,
    .project-tags span {
        padding: 7px 10px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.22);
        box-shadow: inset 2px 2px 5px rgba(163, 174, 185, 0.18), inset -2px -2px 5px rgba(255, 255, 255, 0.6);
        color: var(--text-secondary);
        font-size: 9px;
        font-weight: 700;
    }


/* =========================================================
   EXPERIENCE
========================================================= */

.experience-card {
    padding: 38px;
    border-radius: var(--radius-lg);
}

.experience-top {
    display: flex;
    align-items: center;
    gap: 20px;
}

.company-mark {
    width: 68px;
    height: 68px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border-radius: 21px;
    color: var(--primary);
    background: linear-gradient( 145deg, #f2f6fa, #d9e1e8 );
    box-shadow: var(--shadow-soft);
    font-family: "Poppins", sans-serif;
    font-size: 17px;
    font-weight: 800;
}

.experience-title {
    flex: 1;
}

.experience-period {
    color: var(--primary);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.experience-title h3 {
    margin-top: 4px;
    font-family: "Poppins", sans-serif;
    font-size: 24px;
}

.experience-title p {
    color: var(--text-secondary);
    font-size: 13px;
}

.experience-badge {
    padding: 8px 12px;
    border-radius: 30px;
    color: var(--primary);
    box-shadow: var(--inset);
    font-size: 9px;
    font-weight: 800;
}

.experience-body {
    margin-top: 35px;
    padding-top: 30px;
    border-top: 1px solid rgba(120, 135, 150, 0.12);
}

    .experience-body > p {
        max-width: 850px;
        color: var(--text-secondary);
        font-size: 14px;
    }

.experience-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
    margin-top: 25px;
}

    .experience-points div {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        padding: 14px;
        border-radius: 15px;
        box-shadow: var(--inset);
        color: var(--text-secondary);
        font-size: 11px;
    }

    .experience-points i {
        margin-top: 3px;
        color: var(--primary);
    }


/* =========================================================
   PROJECTS
========================================================= */

.projects-heading {
    align-items: flex-end;
    justify-content: space-between;
}

    .projects-heading > p {
        max-width: 420px;
        color: var(--text-secondary);
        font-size: 13px;
        text-align: right;
    }

.project-filters {
    width: fit-content;
    display: flex;
    gap: 5px;
    margin: 0 auto 45px;
    padding: 6px;
    border-radius: 15px;
}

.filter-button {
    padding: 10px 17px;
    border: 0;
    border-radius: 11px;
    background: transparent;
    color: var(--text-secondary);
    font-size: 11px;
    font-weight: 700;
    transition: var(--transition);
}

    .filter-button:hover,
    .filter-button.active {
        color: var(--primary);
        background: var(--surface);
        box-shadow: var(--shadow-small);
    }

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
}

.project-card {
    overflow: hidden;
    border-radius: 30px;
    transition: var(--transition);
}

    .project-card:hover {
        transform: translateY(-7px);
    }

    .project-card.hidden {
        display: none;
    }

.project-visual {
    position: relative;
    height: 280px;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.project-blue {
    background: linear-gradient( 135deg, rgba(36, 107, 253, 0.1), rgba(108, 92, 231, 0.12) );
}

.project-purple {
    background: linear-gradient( 135deg, rgba(108, 92, 231, 0.1), rgba(36, 107, 253, 0.12) );
}

.project-green {
    background: linear-gradient( 135deg, rgba(31, 167, 116, 0.1), rgba(36, 107, 253, 0.08) );
}

.project-orange {
    background: linear-gradient( 135deg, rgba(242, 145, 45, 0.1), rgba(36, 107, 253, 0.08) );
}

.project-red {
    background: linear-gradient( 135deg, rgba(226, 76, 76, 0.08), rgba(108, 92, 231, 0.08) );
}

.project-cyan {
    background: linear-gradient( 135deg, rgba(27, 169, 187, 0.1), rgba(36, 107, 253, 0.08) );
}

.project-number {
    position: absolute;
    top: 20px;
    right: 24px;
    color: rgba(27, 38, 51, 0.16);
    font-family: "Poppins", sans-serif;
    font-size: 42px;
    font-weight: 800;
}


/* Project mock window */

.project-window {
    width: 70%;
    height: 68%;
    overflow: hidden;
    border-radius: 16px;
    background: var(--surface);
    box-shadow: var(--shadow-soft);
}

.window-dots {
    display: flex;
    gap: 5px;
    padding: 11px 13px;
}

    .window-dots span {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #aab5c0;
    }

.window-content {
    display: flex;
    height: calc(100% - 30px);
    padding: 10px 12px;
    gap: 10px;
}

.mock-sidebar {
    width: 18%;
    border-radius: 7px;
    box-shadow: var(--inset);
}

.mock-main {
    flex: 1;
}

.mock-line {
    width: 65%;
    height: 8px;
    margin-bottom: 7px;
    border-radius: 5px;
    background: rgba(36, 107, 253, 0.18);
}

    .mock-line.large {
        width: 40%;
        height: 11px;
    }

.mock-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 7px;
    margin-top: 20px;
}

    .mock-cards span {
        height: 70px;
        border-radius: 8px;
        box-shadow: var(--inset);
    }


/* Phone */

.phone-mockup {
    position: relative;
    width: 150px;
    height: 245px;
    padding: 8px;
    border-radius: 25px;
    background: #dce4eb;
    box-shadow: var(--shadow-soft);
}

.phone-speaker {
    position: absolute;
    top: 14px;
    left: 50%;
    width: 35px;
    height: 5px;
    transform: translateX(-50%);
    border-radius: 10px;
    background: #b3bec9;
}

.phone-screen {
    height: 100%;
    overflow: hidden;
    padding: 28px 10px 10px;
    border-radius: 19px;
    background: #edf2f6;
}

.phone-header {
    display: flex;
    justify-content: space-between;
    font-size: 8px;
    font-weight: 800;
}

    .phone-header i {
        color: var(--primary);
    }

.map-mock {
    position: relative;
    height: 105px;
    margin-top: 12px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--inset);
    background: linear-gradient( 135deg, rgba(36, 107, 253, 0.08), rgba(31, 167, 116, 0.08) );
}

    .map-mock::before,
    .map-mock::after {
        content: "";
        position: absolute;
        background: rgba(36, 107, 253, 0.15);
        transform: rotate(35deg);
    }

    .map-mock::before {
        width: 180px;
        height: 4px;
        top: 45%;
        left: -20px;
    }

    .map-mock::after {
        width: 120px;
        height: 4px;
        top: 20%;
        left: 20px;
        transform: rotate(-25deg);
    }

    .map-mock span {
        position: absolute;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--primary);
        box-shadow: 0 0 0 5px rgba(36, 107, 253, 0.1);
    }

        .map-mock span:nth-child(1) {
            top: 25px;
            left: 25px;
        }

        .map-mock span:nth-child(2) {
            top: 65px;
            right: 25px;
        }

        .map-mock span:nth-child(3) {
            bottom: 15px;
            left: 55px;
        }

.ride-mock-card {
    margin-top: 10px;
    padding: 10px;
    border-radius: 10px;
    box-shadow: var(--shadow-small);
}

    .ride-mock-card strong,
    .ride-mock-card small {
        display: block;
    }

    .ride-mock-card strong {
        font-size: 8px;
    }

    .ride-mock-card small {
        margin-top: 2px;
        color: var(--text-muted);
        font-size: 6px;
    }


/* Analytics */

.analytics-mock {
    width: 70%;
    height: 62%;
    padding: 20px;
    border-radius: 20px;
    background: var(--surface);
    box-shadow: var(--shadow-soft);
}

.analytics-header {
    display: flex;
    justify-content: space-between;
    font-size: 9px;
    font-weight: 800;
}

    .analytics-header span:last-child {
        color: var(--text-muted);
    }

.chart-area {
    height: calc(100% - 25px);
    display: flex;
    align-items: flex-end;
    margin-top: 15px;
    padding: 12px;
    border-radius: 12px;
    box-shadow: var(--inset);
}

.chart-bars {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    gap: 10px;
}

    .chart-bars span {
        flex: 1;
        min-height: 15px;
        border-radius: 6px 6px 3px 3px;
        background: linear-gradient( to top, var(--primary), var(--secondary) );
    }


/* Dashboard */

.dashboard-mock {
    width: 74%;
    height: 65%;
    overflow: hidden;
    border-radius: 18px;
    background: var(--surface);
    box-shadow: var(--shadow-soft);
}

.dashboard-top {
    height: 30px;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0 12px;
    box-shadow: 0 3px 8px rgba(163, 174, 185, 0.2);
}

    .dashboard-top span {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #aab5c0;
    }

.dashboard-body {
    display: flex;
    height: calc(100% - 30px);
    padding: 10px;
    gap: 10px;
}

.dashboard-side {
    width: 18%;
    border-radius: 8px;
    box-shadow: var(--inset);
}

.dashboard-content {
    flex: 1;
}

.dashboard-stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}

    .dashboard-stat-row span {
        height: 30px;
        border-radius: 7px;
        box-shadow: var(--inset);
    }

.dashboard-chart {
    height: 100px;
    margin-top: 8px;
    border-radius: 8px;
    box-shadow: var(--inset);
}


/* Lawyer */

.law-dashboard {
    width: 65%;
    height: 60%;
    padding: 18px;
    border-radius: 18px;
    background: var(--surface);
    box-shadow: var(--shadow-soft);
}

.law-header {
    display: flex;
    justify-content: space-between;
    color: var(--primary);
    font-size: 10px;
    font-weight: 800;
}

.law-body {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 20px;
}

    .law-body span {
        height: 35px;
        border-radius: 8px;
        box-shadow: var(--inset);
    }


/* AI */

.ai-mock {
    width: 70%;
    height: 65%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    border-radius: 20px;
    background: var(--surface);
    box-shadow: var(--shadow-soft);
}

.ai-orb {
    width: 85px;
    height: 85px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--primary);
    font-size: 28px;
    box-shadow: var(--inset);
}

.ai-lines {
    width: 65%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .ai-lines span {
        height: 7px;
        border-radius: 8px;
        box-shadow: var(--inset);
    }

        .ai-lines span:nth-child(2) {
            width: 75%;
        }

        .ai-lines span:nth-child(3) {
            width: 50%;
        }


/* Project content */

.project-content {
    padding: 28px;
}

.project-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.project-type {
    color: var(--primary);
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-links {
    display: flex;
    gap: 7px;
}

.project-link {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    color: var(--text-secondary);
    box-shadow: var(--shadow-small);
    font-size: 11px;
    transition: var(--transition);
}

    .project-link:hover {
        color: var(--primary);
        transform: translateY(-2px);
    }

.project-content h3 {
    margin-top: 16px;
    font-family: "Poppins", sans-serif;
    font-size: 22px;
    letter-spacing: -0.6px;
}

.project-content p {
    margin-top: 9px;
    color: var(--text-secondary);
    font-size: 12px;
    line-height: 1.7;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 18px;
}


/* =========================================================
   HIRE
========================================================= */

.hire-card {
    position: relative;
    min-height: 520px;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
    align-items: center;
    gap: 50px;
    padding: 65px;
    overflow: hidden;
    border-radius: 40px;
}

    .hire-card::before {
        content: "";
        position: absolute;
        width: 500px;
        height: 500px;
        right: -250px;
        bottom: -300px;
        border-radius: 50%;
        background: radial-gradient( circle, rgba(36, 107, 253, 0.12), transparent 70% );
    }

.hire-content {
    position: relative;
    z-index: 2;
}

    .hire-content h2 {
        max-width: 700px;
        font-family: "Poppins", sans-serif;
        font-size: clamp( 34px, 5vw, 55px );
        line-height: 1.1;
        letter-spacing: -2px;
    }

    .hire-content > p:not(.eyebrow) {
        max-width: 650px;
        margin-top: 20px;
        color: var(--text-secondary);
        font-size: 14px;
    }

.service-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 20px;
    margin-top: 25px;
}

    .service-list div {
        display: flex;
        align-items: center;
        gap: 9px;
        color: var(--text-secondary);
        font-size: 11px;
        font-weight: 600;
    }

    .service-list i {
        color: var(--success);
        font-size: 12px;
    }

.hire-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}


/* Orbit */

.hire-visual {
    min-height: 350px;
    display: grid;
    place-items: center;
}

.availability-orbit {
    position: relative;
    width: 320px;
    height: 320px;
    display: grid;
    place-items: center;
}

.orbit-ring {
    position: absolute;
    border: 1px solid rgba(36, 107, 253, 0.13);
    border-radius: 50%;
}

.ring-one {
    inset: 15px;
}

.ring-two {
    inset: 55px;
    border-style: dashed;
}

.hire-center {
    width: 115px;
    height: 115px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border-radius: 50%;
    color: var(--primary);
}

    .hire-center i {
        font-size: 25px;
    }

    .hire-center span {
        color: var(--text);
        font-size: 12px;
        font-weight: 800;
    }

.orbit-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    color: var(--primary);
    animation: orbit-float 4s ease-in-out infinite;
}

.icon-one {
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
}

.icon-two {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    animation-delay: -1s;
}

.icon-three {
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: -2s;
}

.icon-four {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    animation-delay: -3s;
}

@keyframes orbit-float {

    0%, 100% {
        margin-top: 0;
    }

    50% {
        margin-top: -8px;
    }
}


/* =========================================================
   CONTACT
========================================================= */

.contact-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
    gap: 30px;
    align-items: start;
}

.contact-intro {
    padding: 35px;
    border-radius: 28px;
}

.contact-icon-large {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    color: var(--primary);
    box-shadow: var(--inset);
    font-size: 24px;
}

.contact-intro h3 {
    margin-top: 25px;
    font-family: "Poppins", sans-serif;
    font-size: 27px;
    line-height: 1.25;
}

.contact-intro p {
    margin-top: 13px;
    color: var(--text-secondary);
    font-size: 13px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 18px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 18px;
    transition: var(--transition);
}

    .contact-detail:hover {
        transform: translateX(5px);
    }

.contact-detail-icon {
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border-radius: 13px;
    color: var(--primary);
    box-shadow: var(--inset);
    font-size: 14px;
}

.contact-detail span,
.contact-detail strong {
    display: block;
}

.contact-detail span {
    color: var(--text-muted);
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-detail strong {
    margin-top: 2px;
    font-size: 11px;
    overflow-wrap: anywhere;
}

.contact-form-card {
    padding: 38px;
    border-radius: 30px;
}

.form-header h3 {
    font-family: "Poppins", sans-serif;
    font-size: 26px;
    line-height: 1.25;
}

.contact-form {
    margin-top: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.form-group {
    margin-bottom: 18px;
}

    .form-group label {
        display: block;
        margin-bottom: 8px;
        color: var(--text-secondary);
        font-size: 10px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.8px;
    }

.input-wrapper {
    position: relative;
}

    .input-wrapper > i {
        position: absolute;
        top: 50%;
        left: 17px;
        transform: translateY(-50%);
        color: var(--text-muted);
        font-size: 12px;
        pointer-events: none;
        transition: var(--transition);
    }

    .input-wrapper textarea + i {
        top: 18px;
    }

    .input-wrapper:focus-within > i {
        color: var(--primary);
    }

    .input-wrapper input,
    .input-wrapper textarea {
        width: 100%;
        border: 0;
        border-radius: 15px;
        background: var(--surface);
        color: var(--text);
        box-shadow: var(--inset);
        outline: none;
        transition: var(--transition);
    }

    .input-wrapper input {
        height: 51px;
        padding: 0 15px 0 45px;
    }

    .input-wrapper textarea {
        min-height: 150px;
        resize: vertical;
        padding: 16px 15px 16px 45px;
    }

        .input-wrapper input::placeholder,
        .input-wrapper textarea::placeholder {
            color: #9ba6b0;
        }

        .input-wrapper input:focus,
        .input-wrapper textarea:focus {
            box-shadow: inset 5px 5px 10px rgba(163, 174, 185, 0.35), inset -5px -5px 10px rgba(255, 255, 255, 0.9), 0 0 0 2px rgba(36, 107, 253, 0.12);
        }

.field-error {
    display: block;
    min-height: 15px;
    margin-top: 5px;
    color: var(--danger);
    font-size: 9px;
}

.input-error input,
.input-error textarea {
    box-shadow: inset 5px 5px 10px rgba(163, 174, 185, 0.25), inset -5px -5px 10px rgba(255, 255, 255, 0.9), 0 0 0 2px rgba(226, 76, 76, 0.12);
}

.form-submit {
    width: 100%;
    margin-top: 5px;
}

    .form-submit.loading {
        opacity: 0.7;
        pointer-events: none;
    }

        .form-submit.loading i {
            animation: spin 0.8s linear infinite;
        }

.form-status {
    min-height: 22px;
    margin-top: 15px;
    text-align: center;
    font-size: 11px;
    font-weight: 700;
}

    .form-status.success {
        color: var(--success);
    }

    .form-status.error {
        color: var(--danger);
    }


/* =========================================================
   FOOTER
========================================================= */

.footer {
    padding-top: 45px;
    background: linear-gradient( 180deg, transparent, rgba(218, 226, 234, 0.45) );
}

.footer-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding-bottom: 35px;
}

.footer-brand p {
    margin-top: 12px;
    color: var(--text-muted);
    font-size: 10px;
}

.footer-socials {
    display: flex;
    gap: 9px;
}

    .footer-socials a {
        width: 39px;
        height: 39px;
        display: grid;
        place-items: center;
        border-radius: 12px;
        background: var(--surface);
        box-shadow: var(--shadow-small);
        color: var(--text-secondary);
        transition: var(--transition);
    }

        .footer-socials a:hover {
            color: var(--primary);
            transform: translateY(-3px);
        }

.footer-bottom {
    padding: 18px 0;
    border-top: 1px solid rgba(100, 115, 130, 0.1);
}

    .footer-bottom .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
    }

    .footer-bottom p,
    .footer-bottom a {
        color: var(--text-muted);
        font-size: 9px;
    }

    .footer-bottom a {
        display: flex;
        align-items: center;
        gap: 6px;
        transition: var(--transition);
    }

        .footer-bottom a:hover {
            color: var(--primary);
        }


/* =========================================================
   WHATSAPP
========================================================= */

.whatsapp-button {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    color: #19a76a;
    font-size: 27px;
    z-index: 900;
    transition: var(--transition);
}

    .whatsapp-button:hover {
        transform: translateY(-5px) scale(1.04);
        color: #128c58;
    }

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    width: max-content;
    padding: 8px 11px;
    border-radius: 9px;
    background: var(--surface);
    box-shadow: var(--shadow-small);
    color: var(--text-secondary);
    font-size: 9px;
    font-weight: 700;
    opacity: 0;
    pointer-events: none;
    transform: translateX(5px);
    transition: var(--transition);
}

.whatsapp-button:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}


/* =========================================================
   SCROLL PROGRESS
========================================================= */

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient( 90deg, var(--primary), var(--secondary) );
    z-index: 2000;
}


/* =========================================================
   SCROLL REVEAL
========================================================= */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .navbar {
        width: 100%;
    }

    .nav-item {
        padding-inline: 10px;
    }

        .nav-item span:not(.ripple-container) {
            display: none;
        }

    .hero-container {
        gap: 35px;
    }

    .skills-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hire-card {
        padding: 50px;
    }
}


/* =========================================================
   MOBILE NAV
========================================================= */

@media (max-width: 780px) {

    .site-header {
        top: 12px;
        padding-inline: 12px;
    }

        .site-header.scrolled {
            top: 8px;
        }

    .navbar {
        min-height: 64px;
        padding: 9px 10px;
        border-radius: 20px;
    }

    .mobile-menu-button {
        display: grid;
        place-items: center;
        position: relative;
        z-index: 5;
    }

    .nav-menu {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        padding: 10px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        border-radius: 20px;
        background: var(--surface);
        box-shadow: var(--shadow-dark), var(--shadow-light);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px) scale(0.98);
        transition: var(--transition);
    }

        .nav-menu.open {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scale(1);
        }

    .nav-item {
        justify-content: flex-start;
        padding: 13px 15px;
        gap: 12px;
    }

        .nav-item span:not(.ripple-container) {
            display: inline;
        }

        .nav-item i {
            width: 18px;
            text-align: center;
        }

    .section {
        padding: 85px 0;
    }

    .hero {
        padding-top: 130px;
        min-height: auto;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-description {
        max-width: 650px;
    }

    .hero-socials {
        justify-content: center;
    }

    .hero-visual {
        min-height: 430px;
    }

    .scroll-indicator {
        display: none;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-side {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .info-card {
        min-height: 125px;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }

    .experience-top {
        align-items: flex-start;
    }

    .experience-badge {
        display: none;
    }

    .hire-card {
        grid-template-columns: 1fr;
        padding: 45px 35px;
    }

    .hire-visual {
        min-height: 300px;
    }

    .projects-heading {
        align-items: flex-start;
        flex-direction: column;
    }

        .projects-heading > p {
            text-align: left;
        }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 600px) {

    .container {
        width: min( calc(100% - 28px), var(--max-width) );
    }

    .brand-text {
        font-size: 17px;
    }

    .brand-mark {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }

    .section-heading {
        gap: 15px;
        margin-bottom: 40px;
    }

    .section-number {
        width: 40px;
        height: 40px;
        border-radius: 12px;
        flex-shrink: 0;
    }

    .hero-content h1 {
        font-size: clamp( 48px, 16vw, 70px );
        letter-spacing: -4px;
    }

    .hero-role {
        font-size: 20px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-actions {
        width: 100%;
        flex-direction: column;
    }

        .hero-actions .btn {
            width: 100%;
        }

    .hero-visual {
        min-height: 360px;
    }

    .profile-scene {
        width: 100%;
    }

    .profile-card {
        inset: 8% 4%;
        padding: 30px 25px;
        border-radius: 30px;
    }

    .profile-avatar {
        width: 90px;
        height: 90px;
        border-radius: 27px;
        font-size: 25px;
    }

    .profile-card h3 {
        font-size: 23px;
    }

    .profile-mini-stats {
        margin-top: 18px;
    }

    .floating-card {
        padding: 10px 12px;
        border-radius: 15px;
    }

        .floating-card i {
            width: 32px;
            height: 32px;
        }

    .card-top {
        right: -3%;
    }

    .card-bottom {
        left: -2%;
    }

    .about-main {
        padding: 28px 24px;
    }

        .about-main h3 {
            font-size: 23px;
        }

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .about-side {
        grid-template-columns: 1fr;
    }

    .info-card {
        min-height: auto;
        flex-direction: row;
        align-items: center;
    }

    .education-wrapper {
        padding: 28px 24px;
    }

    .skills-grid {
        grid-template-columns: 1fr;
    }

    .experience-card {
        padding: 28px 24px;
    }

    .experience-top {
        gap: 14px;
    }

    .company-mark {
        width: 54px;
        height: 54px;
        border-radius: 17px;
    }

    .experience-title h3 {
        font-size: 18px;
    }

    .experience-points {
        grid-template-columns: 1fr;
    }

    .project-filters {
        width: 100%;
        overflow-x: auto;
        justify-content: flex-start;
        scrollbar-width: none;
    }

        .project-filters::-webkit-scrollbar {
            display: none;
        }

    .filter-button {
        flex-shrink: 0;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .project-visual {
        height: 240px;
    }

    .project-window,
    .analytics-mock,
    .dashboard-mock {
        width: 78%;
    }

    .project-content {
        padding: 23px;
    }

    .hire-card {
        padding: 35px 24px;
        border-radius: 30px;
    }

    .service-list {
        grid-template-columns: 1fr;
    }

    .hire-actions {
        flex-direction: column;
    }

        .hire-actions .btn {
            width: 100%;
        }

    .availability-orbit {
        width: 270px;
        height: 270px;
    }

    .contact-form-card,
    .contact-intro {
        padding: 27px 23px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-container,
    .footer-bottom .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-socials {
        align-self: flex-start;
    }

    .whatsapp-button {
        right: 17px;
        bottom: 17px;
        width: 53px;
        height: 53px;
        border-radius: 17px;
    }

    .whatsapp-tooltip {
        display: none;
    }
}


/* =========================================================
   VERY SMALL DEVICES
========================================================= */

@media (max-width: 380px) {

    .hero-content h1 {
        font-size: 46px;
    }

    .hero-role {
        font-size: 18px;
    }

    .profile-card {
        padding: 25px 20px;
    }

    .profile-avatar {
        width: 75px;
        height: 75px;
    }

    .profile-card h3 {
        font-size: 20px;
    }

    .profile-mini-stats {
        gap: 5px;
    }

        .profile-mini-stats div {
            padding: 9px 7px;
        }

        .profile-mini-stats strong {
            font-size: 10px;
        }

        .profile-mini-stats span {
            font-size: 7px;
        }

    .floating-card {
        transform: scale(0.85);
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
