/* =========================================
   RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Vazirmatn", sans-serif;
    background: #080a0a;
    color: #f4f4f0;
    line-height: 1.9;
    overflow-x: hidden;
}

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

button {
    font-family: inherit;
}

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

::selection {
    background: #d5ff4b;
    color: #080a0a;
}


/* =========================================
   VARIABLES
========================================= */

:root {

    --bg: #080a0a;
    --bg-soft: #0d1110;
    --card: #111614;
    --card-light: #161c19;

    --text: #f4f4f0;
    --muted: #8e9892;

    --accent: #d5ff4b;
    --accent-dark: #9abf25;

    --border: rgba(255,255,255,.09);

    --max-width: 1240px;

}


/* =========================================
   GLOBAL
========================================= */

.container {
    width: min(92%, var(--max-width));
    margin: auto;
}

.section {
    padding: 130px 0;
}

.section-label {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--accent);
    font-weight: 700;
    direction: ltr;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 50px;
    margin-bottom: 70px;
}

.section-heading h2 {
    font-size: clamp(36px, 5vw, 65px);
    line-height: 1.3;
    font-weight: 800;
    margin-top: 18px;
}

.section-heading h2 span {
    color: var(--accent);
}

.section-heading > p {
    max-width: 410px;
    color: var(--muted);
    font-size: 15px;
}


/* =========================================
   HEADER
========================================= */

.header {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 84px;
    z-index: 1000;

    background: rgba(8,10,10,.78);
    backdrop-filter: blur(18px);

    border-bottom: 1px solid transparent;

    transition: .3s ease;
}

.header.scrolled {
    border-color: var(--border);
}

.nav-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-mark {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;

    background: var(--accent);
    color: #080a0a;

    font-size: 12px;
    font-weight: 900;
    letter-spacing: -1px;
}

.logo-text {
    font-weight: 700;
    font-size: 15px;
}

.navbar {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    position: relative;
    font-size: 13px;
    color: #9da59f;
    transition: .25s;
}

.nav-link::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -8px;

    width: 0;
    height: 2px;

    background: var(--accent);

    transition: .25s;
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
}

.nav-link.active::after,
.nav-link:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    border: 1px solid var(--border);
    background: transparent;

    cursor: pointer;

    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.menu-toggle span {
    width: 19px;
    height: 1px;
    background: #fff;
}


/* =========================================
   HERO
========================================= */

.hero {
    min-height: 100vh;
    position: relative;

    display: flex;
    align-items: center;

    padding-top: 100px;

    overflow: hidden;
}

.hero-grid {
    position: absolute;
    inset: 0;

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

    background-size: 70px 70px;

    mask-image: linear-gradient(to bottom, black, transparent);
}

.hero-glow {
    position: absolute;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    filter: blur(100px);

    opacity: .08;

    background: var(--accent);
}

.hero-glow-one {
    top: 10%;
    right: -150px;
}

.hero-glow-two {
    bottom: -200px;
    left: -150px;
}

.hero-container {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 1.1fr .9fr;

    gap: 100px;

    align-items: center;
}

.hero-content {
    direction: rtl;
}

.availability {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 8px 14px;

    border: 1px solid var(--border);
    background: rgba(255,255,255,.025);

    color: #aeb6b1;

    font-size: 11px;

    margin-bottom: 30px;
}

.availability-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--accent);

    box-shadow: 0 0 15px var(--accent);
}

.hero-intro {
    color: var(--muted);
    font-size: 18px;
    margin-bottom: 4px;
}

.hero h1 {
    font-size: clamp(65px, 9vw, 125px);
    line-height: .95;
    letter-spacing: -5px;
    font-weight: 900;
}

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

.hero-role {
    display: flex;
    gap: 12px;
    align-items: center;

    margin-top: 25px;

    direction: ltr;

    font-size: 13px;
    color: #c3cac6;
}

.hero-role i {
    color: var(--accent);
    font-style: normal;
}

.hero-description {
    max-width: 700px;

    margin-top: 30px;

    color: var(--muted);

    font-size: 16px;
    line-height: 2.2;
}

.hero-description strong {
    color: #fff;
}

.hero-buttons {
    display: flex;
    gap: 12px;

    margin-top: 40px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 15px;

    min-width: 160px;
    height: 54px;

    padding: 0 24px;

    font-size: 13px;
    font-weight: 700;

    transition: .3s;
}

.btn-primary {
    background: var(--accent);
    color: #080a0a;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(213,255,75,.12);
}

.btn-outline {
    border: 1px solid var(--border);
    color: #fff;
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.hero-socials {
    display: flex;
    gap: 9px;
    margin-top: 35px;
    direction: ltr;
}

.hero-socials a {
    width: 35px;
    height: 35px;

    display: grid;
    place-items: center;

    border: 1px solid var(--border);

    color: #8e9792;

    font-size: 11px;
    font-weight: 700;

    transition: .3s;
}

.hero-socials a:hover {
    color: var(--accent);
    border-color: var(--accent);
}


/* =========================================
   HERO VISUAL
========================================= */

.hero-visual {
    min-height: 550px;

    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-card {
    width: 370px;
    min-height: 470px;

    padding: 30px;

    background:
        linear-gradient(145deg, #17201b, #0b0f0d);

    border: 1px solid rgba(213,255,75,.18);

    position: relative;

    box-shadow:
        0 40px 100px rgba(0,0,0,.4);

    transform: rotate(-4deg);

    transition: .5s;
}

.profile-card:hover {
    transform: rotate(0) translateY(-8px);
}

.card-top {
    display: flex;
    justify-content: space-between;

    direction: ltr;

    color: #68716b;

    font-size: 9px;
    letter-spacing: 2px;
}

.card-number {
    color: var(--accent);
}

.profile-symbol {
    height: 280px;

    display: grid;
    place-items: center;

    font-size: 110px;
    font-weight: 900;

    color: transparent;

    -webkit-text-stroke: 1px rgba(213,255,75,.5);

    letter-spacing: -12px;

    direction: ltr;
}

.profile-card-info h3 {
    font-size: 26px;
}

.profile-card-info p {
    color: var(--muted);
    font-size: 12px;
    direction: ltr;
    text-align: right;
}

.profile-line {
    height: 1px;
    background: var(--border);
    margin: 20px 0;
}

.profile-tags {
    display: flex;
    gap: 7px;
    direction: ltr;
}

.profile-tags span {
    border: 1px solid var(--border);
    padding: 4px 8px;
    color: #8e9892;
    font-size: 9px;
}

.floating-card {
    position: absolute;

    display: flex;
    align-items: center;

    gap: 12px;

    padding: 14px 18px;

    background: #111613;
    border: 1px solid var(--border);

    box-shadow: 0 20px 50px rgba(0,0,0,.35);

    animation: floating 5s ease-in-out infinite;
}

.floating-card strong {
    display: block;
    font-size: 11px;
    direction: ltr;
    text-align: right;
}

.floating-card small {
    color: var(--muted);
    font-size: 9px;
}

.floating-icon {
    width: 35px;
    height: 35px;

    display: grid;
    place-items: center;

    background: rgba(213,255,75,.08);
    color: var(--accent);
}

.floating-card-one {
    top: 18%;
    left: 0;
}

.floating-card-two {
    bottom: 15%;
    right: -20px;
    animation-delay: -2s;
}

@keyframes floating {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

}


/* =========================================
   SCROLL
========================================= */

.scroll-indicator {
    position: absolute;

    bottom: 35px;
    right: 4%;

    display: flex;
    align-items: center;
    gap: 15px;

    color: #56605a;

    font-size: 9px;
    letter-spacing: 3px;

    direction: ltr;
}

.scroll-line {
    width: 50px;
    height: 1px;
    background: #56605a;
}


/* =========================================
   STATS
========================================= */

.stats-section {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
}

.stat-item {
    padding: 35px 30px;

    border-left: 1px solid var(--border);
}

.stat-item:first-child {
    border-left: 0;
}

.stat-item strong {
    display: block;

    color: var(--accent);

    font-size: 40px;
    line-height: 1;

    direction: ltr;
}

.stat-item span {
    display: block;

    margin-top: 10px;

    color: var(--muted);

    font-size: 11px;
}


/* =========================================
   ABOUT
========================================= */

.about-grid {
    display: grid;

    grid-template-columns: 1.2fr .8fr;

    gap: 100px;
}

.about-main {
    max-width: 750px;
}

.about-main p {
    color: var(--muted);
    font-size: 15px;
    margin-bottom: 25px;
}

.about-main .large-text {
    color: #e6e8e5;

    font-size: 22px;
    line-height: 2.1;
}

.about-main strong {
    color: #fff;
}

.about-side {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.info-box {
    padding: 30px;

    border-top: 1px solid var(--border);

    position: relative;
}

.info-box:last-child {
    border-bottom: 1px solid var(--border);
}

.info-number {
    color: var(--accent);

    font-size: 10px;
}

.info-box h3 {
    font-size: 18px;
    margin: 12px 0 5px;
}

.info-box p {
    color: var(--muted);
    font-size: 12px;
}


/* =========================================
   BRANDING
========================================= */

.brand-section {
    position: relative;

    padding: 100px 0;

    background: var(--accent);

    color: #080a0a;

    overflow: hidden;
}

.brand-content {
    display: grid;

    grid-template-columns: 150px 1fr;

    gap: 60px;

    align-items: start;
}

.brand-number {
    font-size: 100px;

    font-weight: 900;

    line-height: .8;

    opacity: .2;
}

.brand-section .section-label {
    color: #080a0a;
    opacity: .55;
}

.brand-section h2 {
    max-width: 850px;

    margin-top: 20px;

    font-size: clamp(35px,5vw,65px);

    line-height: 1.35;
}

.brand-section h2 span {
    display: block;
    opacity: .55;
}

.brand-section p {
    max-width: 750px;

    margin-top: 30px;

    font-size: 15px;

    line-height: 2.2;

    opacity: .7;
}


/* =========================================
   EXPERTISE
========================================= */

.expertise-grid {
    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 1px;

    background: var(--border);
}

.expertise-card {
    min-height: 330px;

    padding: 35px;

    background: var(--bg);

    position: relative;

    transition: .35s;
}

.expertise-card:hover {
    background: var(--card);

    transform: translateY(-5px);

    z-index: 2;
}

.expertise-number {
    position: absolute;

    top: 30px;
    left: 30px;

    color: #414a45;

    font-size: 11px;
}

.expertise-icon {
    width: 55px;
    height: 55px;

    display: grid;
    place-items: center;

    border: 1px solid var(--border);

    color: var(--accent);

    font-size: 20px;

    margin-bottom: 35px;
}

.expertise-card h3 {
    font-size: 18px;
    direction: ltr;
    text-align: right;
}

.expertise-card h4 {
    color: var(--accent);

    font-size: 12px;

    margin-top: 3px;
}

.expertise-card p {
    color: var(--muted);

    font-size: 12px;

    margin-top: 20px;

    line-height: 2;
}


/* =========================================
   SKILLS
========================================= */

.skills-section {
    padding: 120px 0;

    background: #0d1110;

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.skills-layout {
    display: grid;

    grid-template-columns: .8fr 1.2fr;

    gap: 120px;

    align-items: center;
}

.skills-title h2 {
    font-size: clamp(35px,4vw,55px);

    line-height: 1.4;

    margin-top: 20px;
}

.skills-title h2 span {
    color: var(--accent);
}

.skills-title p {
    color: var(--muted);

    margin-top: 25px;

    font-size: 14px;
}

.skills-list {
    display: flex;
    flex-direction: column;

    gap: 30px;
}

.skill-header {
    display: flex;

    justify-content: space-between;

    direction: ltr;

    font-size: 12px;

    margin-bottom: 10px;
}

.skill-header strong {
    color: var(--accent);
}

.skill-bar {
    height: 2px;

    background: #272e2a;

    position: relative;
}

.skill-bar span {
    display: block;

    height: 100%;

    background: var(--accent);

    transform-origin: right;

    animation: skillLoad 1.5s ease forwards;
}

@keyframes skillLoad {

    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }

}


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

.project-card {
    display: grid;

    grid-template-columns: 80px 1fr 1fr;

    gap: 50px;

    padding: 60px;

    background: var(--card);

    border: 1px solid var(--border);

    position: relative;

    overflow: hidden;
}

.project-card::before {
    content: "PROJECT";

    position: absolute;

    left: -20px;
    bottom: -55px;

    font-size: 160px;

    font-weight: 900;

    color: rgba(255,255,255,.018);

    direction: ltr;
}

.project-number {
    color: var(--accent);

    font-size: 14px;
}

.project-label {
    color: var(--accent);

    font-size: 10px;

    letter-spacing: 2px;

    direction: ltr;
}

.project-main h3 {
    font-size: clamp(35px,4vw,55px);

    line-height: 1.35;

    margin: 20px 0;
}

.project-main p {
    color: var(--muted);

    font-size: 13px;

    margin-bottom: 15px;
}

.project-responsibilities {
    border-right: 1px solid var(--border);

    padding-right: 45px;
}

.project-responsibilities h4 {
    font-size: 16px;

    margin-bottom: 25px;
}

.project-responsibilities ul {
    list-style: none;
}

.project-responsibilities li {
    display: flex;

    align-items: center;

    gap: 15px;

    padding: 11px 0;

    border-bottom: 1px solid rgba(255,255,255,.05);

    color: #b5bdb8;

    font-size: 11px;
}

.project-responsibilities li span {
    color: var(--accent);

    font-size: 9px;

    direction: ltr;
}


/* =========================================
   PROCESS
========================================= */

.process-grid {
    display: grid;

    grid-template-columns: repeat(4,1fr);

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.process-item {
    padding: 40px 30px;

    border-left: 1px solid var(--border);

    min-height: 230px;
}

.process-item:first-child {
    border-left: 0;
}

.process-item > span {
    color: var(--accent);

    font-size: 10px;
}

.process-item h3 {
    margin-top: 35px;

    font-size: 24px;

    direction: ltr;
    text-align: right;
}

.process-item p {
    color: var(--muted);

    font-size: 11px;

    margin-top: 10px;
}


/* =========================================
   EDUCATION
========================================= */

.education-card {
    display: flex;

    align-items: center;

    gap: 30px;

    padding: 45px;

    border: 1px solid var(--border);

    background:
        linear-gradient(110deg, #111713, #0b0e0c);
}

.education-icon {
    width: 70px;
    height: 70px;

    display: grid;
    place-items: center;

    border: 1px solid var(--border);

    font-size: 28px;
}

.education-content {
    flex: 1;
}

.education-content h2 {
    font-size: 27px;

    margin-top: 10px;
}

.education-content p {
    color: var(--muted);

    direction: ltr;

    text-align: right;

    font-size: 12px;
}

.education-major {
    display: inline-block;

    margin-top: 12px;

    padding: 4px 10px;

    background: rgba(213,255,75,.08);

    color: var(--accent);

    font-size: 10px;
}

.education-side {
    text-align: left;

    direction: ltr;
}

.education-side span {
    display: block;

    font-size: 45px;

    font-weight: 900;

    color: rgba(255,255,255,.08);
}

.education-side small {
    color: #5e6862;

    font-size: 9px;
}


/* =========================================
   CHARACTER
========================================= */

.character-grid {
    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 1px;

    background: var(--border);
}

.character-card {
    background: var(--bg);

    padding: 35px;

    min-height: 220px;

    transition: .3s;
}

.character-card:hover {
    background: var(--card);
}

.character-card > span {
    color: var(--accent);

    font-size: 10px;
}

.character-card h3 {
    margin-top: 35px;

    font-size: 19px;
}

.character-card p {
    color: var(--muted);

    font-size: 12px;

    margin-top: 10px;
}


/* =========================================
   VISION
========================================= */

.vision-section {
    padding: 150px 0;

    background: var(--accent);

    color: #080a0a;

    position: relative;

    overflow: hidden;
}

.vision-grid {
    position: absolute;

    inset: 0;

    opacity: .08;

    background-image:
        linear-gradient(#000 1px, transparent 1px),
        linear-gradient(90deg,#000 1px,transparent 1px);

    background-size: 80px 80px;
}

.vision-content {
    position: relative;

    max-width: 1000px;

    margin: auto;

    text-align: center;
}

.vision-content .section-label {
    color: #080a0a;

    opacity: .55;
}

.vision-mark {
    font-family: Georgia, serif;

    font-size: 120px;

    height: 90px;

    opacity: .18;

    line-height: 1;
}

.vision-content h2 {
    font-size: clamp(40px,6vw,78px);

    line-height: 1.35;

    font-weight: 900;
}

.vision-content h2 span {
    display: block;

    opacity: .45;
}

.vision-content p {
    max-width: 720px;

    margin: 30px auto 0;

    font-size: 15px;

    line-height: 2.2;

    opacity: .65;
}

.vision-line {
    width: 70px;

    height: 2px;

    background: #080a0a;

    opacity: .3;

    margin: 45px auto 20px;
}

.vision-signature {
    font-family: Georgia, serif;

    font-size: 22px;

    direction: ltr;

    opacity: .6;
}


/* =========================================
   CONTACT
========================================= */

.contact-wrapper {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;
}

.contact-intro h2 {
    font-size: clamp(40px,5vw,70px);

    line-height: 1.3;

    margin-top: 20px;
}

.contact-intro h2 span {
    color: var(--accent);
}

.contact-intro p {
    color: var(--muted);

    font-size: 14px;

    max-width: 550px;

    margin-top: 25px;
}

.contact-details {
    border-top: 1px solid var(--border);
}

.contact-item {
    display: flex;

    align-items: center;

    gap: 20px;

    padding: 24px 0;

    border-bottom: 1px solid var(--border);

    transition: .3s;
}

.contact-item:hover {
    padding-right: 10px;
}

.contact-icon {
    width: 50px;
    height: 50px;

    display: grid;
    place-items: center;

    border: 1px solid var(--border);

    color: var(--accent);

    font-size: 13px;
}

.contact-item small {
    display: block;

    color: #5e6862;

    font-size: 8px;

    letter-spacing: 2px;

    direction: ltr;

    text-align: right;
}

.contact-item strong {
    display: block;

    margin-top: 3px;

    font-size: 13px;

    font-weight: 500;
}


/* =========================================
   FOOTER
========================================= */

.footer {
    border-top: 1px solid var(--border);

    padding: 40px 0;
}

.footer-content {
    display: flex;

    align-items: center;

    justify-content: space-between;
}

.footer-logo {
    display: grid;

    place-items: center;

    width: 40px;
    height: 40px;

    background: var(--accent);

    color: #080a0a;

    font-weight: 900;

    direction: ltr;
}

.footer-content p {
    margin-top: 10px;

    color: #65706a;

    font-size: 10px;

    direction: ltr;

    text-align: right;
}

.footer-right {
    display: flex;

    gap: 30px;

    color: #5e6862;

    font-size: 10px;

    direction: ltr;
}


/* =========================================
   BACK TO TOP
========================================= */

.back-to-top {
    position: fixed;

    bottom: 25px;
    left: 25px;

    width: 45px;
    height: 45px;

    border: 1px solid var(--border);

    background: #111613;

    color: var(--accent);

    cursor: pointer;

    opacity: 0;
    visibility: hidden;

    transition: .3s;

    z-index: 900;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}


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

@media (max-width: 1000px) {

    .navbar {
        gap: 15px;
    }

    .hero-container {
        gap: 50px;
    }

    .about-grid,
    .skills-layout,
    .contact-wrapper {
        gap: 50px;
    }

    .project-card {
        grid-template-columns: 50px 1fr;
    }

    .project-responsibilities {
        grid-column: 2;
        border-right: 0;
        border-top: 1px solid var(--border);
        padding-right: 0;
        padding-top: 30px;
    }

}


@media (max-width: 800px) {

    .header {
        height: 70px;
    }

    .navbar {
        position: fixed;

        top: 70px;
        right: 0;

        width: 100%;

        background: rgba(8,10,10,.98);

        border-bottom: 1px solid var(--border);

        display: flex;

        flex-direction: column;

        align-items: stretch;

        padding: 20px;

        transform: translateY(-120%);

        opacity: 0;

        pointer-events: none;

        transition: .35s;
    }

    .navbar.open {
        transform: translateY(0);

        opacity: 1;

        pointer-events: auto;
    }

    .nav-link {
        padding: 12px 0;

        border-bottom: 1px solid rgba(255,255,255,.05);
    }

    .menu-toggle {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;

        padding-top: 60px;
    }

    .hero {
        padding-top: 100px;
    }

    .hero-visual {
        min-height: 450px;
    }

    .profile-card {
        width: 320px;
        min-height: 410px;
    }

    .profile-symbol {
        height: 230px;
        font-size: 90px;
    }

    .floating-card-one {
        left: 0;
    }

    .floating-card-two {
        right: 0;
    }

    .section-heading {
        display: block;
    }

    .section-heading > p {
        margin-top: 25px;
    }

    .about-grid,
    .skills-layout,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

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

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

    .process-item:nth-child(3) {
        border-top: 1px solid var(--border);
    }

    .process-item:nth-child(2) {
        border-left: 0;
    }

    .brand-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .brand-number {
        font-size: 60px;
    }

    .project-card {
        padding: 35px;
    }

    .education-side {
        display: none;
    }

}


@media (max-width: 550px) {

    .section {
        padding: 90px 0;
    }

    .hero h1 {
        font-size: 65px;

        letter-spacing: -3px;
    }

    .hero-role {
        flex-wrap: wrap;

        font-size: 11px;
    }

    .hero-description {
        font-size: 13px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .hero-visual {
        min-height: 390px;
    }

    .profile-card {
        width: 280px;
        min-height: 370px;

        padding: 20px;
    }

    .profile-symbol {
        height: 200px;

        font-size: 75px;
    }

    .floating-card {
        padding: 10px;

        gap: 8px;
    }

    .floating-card-one {
        left: -10px;
    }

    .floating-card-two {
        right: -10px;
    }

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

    .stat-item {
        border-bottom: 1px solid var(--border);
    }

    .stat-item:nth-child(2) {
        border-left: 0;
    }

    .expertise-grid,
    .character-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-item {
        border-left: 0;
        border-top: 1px solid var(--border);
    }

    .process-item:first-child {
        border-top: 0;
    }

    .project-card {
        grid-template-columns: 1fr;

        padding: 25px;
    }

    .project-responsibilities {
        grid-column: auto;
    }

    .education-card {
        flex-direction: column;

        align-items: flex-start;

        padding: 30px;
    }

    .education-content h2 {
        font-size: 21px;
    }

    .footer-content {
        flex-direction: column;

        align-items: flex-start;

        gap: 25px;
    }

    .footer-right {
        flex-direction: column;

        gap: 5px;
    }

    .scroll-indicator {
        display: none;
    }

}
.hero-photo {
    width: 470px;
    height: 570px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(213,255,75,.18);
    background: #111613;
    transform: rotate(-3deg);
    transition: .5s ease;
    box-shadow: 0 40px 100px rgba(0,0,0,.45);
}

.hero-photo:hover {
    transform: rotate(0) scale(1.02);
}

.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(.9);
}

.hero-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(8,10,10,.85),
            transparent 45%
        );
}

.hero-photo-overlay {
    position: absolute;
    bottom: 25px;
    right: 25px;
    z-index: 2;
}

.hero-photo-overlay span {
    display: block;
    color: #d5ff4b;
    font-size: 9px;
    letter-spacing: 3px;
    direction: ltr;
}

.hero-photo-overlay strong {
    display: block;
    margin-top: 5px;
    font-size: 20px;
}
@media (max-width: 550px) {

    .hero-photo {
        width: 290px;
        height: 390px;
    }

}