/* =========================================================
   RASOUL PERSONAL WEBSITE
   VERSION 7
========================================================= */


:root {

    --bg: #0a0d14;

    --surface: rgba(19, 25, 38, 0.82);

    --text: #ffffff;

    --text-soft: #d5dae4;

    --text-secondary: #bcc4d1;

    --muted: #9aa4b5;

    --line: rgba(255, 255, 255, 0.09);

    --line-strong: rgba(255, 255, 255, 0.16);

    --accent: #7f91ff;

    --accent-light: #b2bcff;

    --purple: #a98cff;

    --green: #61e6ac;

    --container: 1200px;

    --radius: 20px;

    --radius-large: 28px;

    --transition: 0.28s ease;

}


/* Reset */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}


body {

    min-height: 100vh;

    overflow-x: hidden;

    position: relative;

    background-color: var(--bg);

    color: var(--text);

    font-family:
        "Vazirmatn",
        Tahoma,
        Arial,
        sans-serif;

    font-size: 17px;

    line-height: 2;

    direction: rtl;

    -webkit-font-smoothing: antialiased;

}


body.menu-open {
    overflow: hidden;
}


a {
    color: inherit;
    text-decoration: none;
}


button {
    font: inherit;
}


img {
    display: block;
    max-width: 100%;
}


::selection {
    color: #fff;
    background: var(--accent);
}


/* Background */

body::before {

    content: "";

    position: fixed;

    inset: 0;

    z-index: -3;

    pointer-events: none;

    background-image:

        linear-gradient(
            rgba(255,255,255,.034) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(255,255,255,.034) 1px,
            transparent 1px
        ),

        radial-gradient(
            circle,
            rgba(255,255,255,.055) 1px,
            transparent 1.3px
        );

    background-size:
        52px 52px,
        52px 52px,
        26px 26px;

}


body::after {

    content: "";

    position: fixed;

    inset: 0;

    z-index: -2;

    pointer-events: none;

    background:
        linear-gradient(
            to bottom,
            rgba(10,13,20,.03),
            rgba(10,13,20,.3)
        );

}


.background-effects {

    position: fixed;

    inset: 0;

    z-index: -1;

    overflow: hidden;

    pointer-events: none;

}


.glow {

    position: absolute;

    border-radius: 50%;

    filter: blur(110px);

    opacity: .65;

}


.glow-one {

    width: 520px;
    height: 520px;

    top: -250px;
    right: -100px;

    background: rgba(104,124,255,.18);

}


.glow-two {

    width: 550px;
    height: 550px;

    top: 38%;
    left: -280px;

    background: rgba(150,102,255,.10);

}


.glow-three {

    width: 460px;
    height: 460px;

    bottom: -230px;
    right: 22%;

    background: rgba(82,139,255,.09);

}


/* General */

.container {

    width: min(
        calc(100% - 44px),
        var(--container)
    );

    margin-inline: auto;

}


.section {

    position: relative;

    padding: 130px 0;

    border-top: 1px solid var(--line);

}


.section-heading {

    max-width: 840px;

    margin-bottom: 68px;

}


.section-label {

    width: fit-content;

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 18px;

    color: var(--muted);

    font-size: 14px;

    font-weight: 500;

}


.section-label span {

    min-width: 44px;

    height: 28px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    border: 1px solid var(--line-strong);

    border-radius: 50px;

    color: var(--accent-light);

    background: rgba(255,255,255,.02);

    font-family: "Inter", sans-serif;

    font-size: 10px;

}


.section-heading h2,
.contact-content h2 {

    color: var(--text);

    font-size: clamp(
        34px,
        4.2vw,
        56px
    );

    font-weight: 800;

    line-height: 1.45;

    letter-spacing: -1.3px;

}


.section-heading h2 span,
.contact-content h2 span {
    color: var(--accent-light);
}


/* Header */

.site-header {

    position: fixed;

    top: 0;
    right: 0;
    left: 0;

    z-index: 1000;

    border-bottom:
        1px solid transparent;

    transition: var(--transition);

}


.site-header.scrolled {

    background:
        rgba(10,13,20,.84);

    border-color: var(--line);

    backdrop-filter: blur(20px);

}


.header-container {

    min-height: 82px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}


.brand {

    direction: ltr;

    color: #fff;

    font-family: "Inter", sans-serif;

    font-size: 25px;

    font-weight: 800;

    letter-spacing: -1.2px;

}


.brand span {
    color: var(--accent);
}


.main-nav {

    display: flex;

    align-items: center;

    gap: 31px;

    color: var(--text-secondary);

    font-size: 14px;

    font-weight: 500;

}


.main-nav a {

    position: relative;

    padding: 12px 0;

}


.main-nav a::after {

    content: "";

    position: absolute;

    right: 0;

    bottom: 4px;

    width: 0;

    height: 1px;

    background: var(--accent);

    transition: width .28s ease;

}


.main-nav a:hover {
    color: #fff;
}


.main-nav a:hover::after {
    width: 100%;
}


.header-actions {

    display: flex;

    align-items: center;

    gap: 20px;

}


.language-switcher {

    direction: ltr;

    display: flex;

    align-items: center;

    gap: 8px;

    color: var(--muted);

    font-family:
        "Inter",
        "Vazirmatn",
        sans-serif;

    font-size: 12px;

}


.language-switcher a {
    color: #d1d6df;
}


.language-switcher a:hover {
    color: var(--accent-light);
}


.active-language {
    color: #fff;
}


.menu-toggle {

    width: 41px;
    height: 41px;

    display: none;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    gap: 5px;

    border: 1px solid var(--line-strong);

    border-radius: 11px;

    background:
        rgba(255,255,255,.025);

    cursor: pointer;

}


.menu-toggle span {

    width: 17px;
    height: 1px;

    background: #fff;

    transition: .28s ease;

}


/* Hero */

.hero {

    min-height: 100vh;

    display: flex;

    align-items: center;

    padding: 150px 0 105px;

}


.hero-container {

    display: grid;

    grid-template-columns:
        minmax(0,1.05fr)
        minmax(330px,.95fr);

    align-items: center;

    gap: 90px;

}


.hero-status {

    width: fit-content;

    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 26px;

    padding: 8px 14px;

    border:
        1px solid
        rgba(97,230,172,.18);

    border-radius: 100px;

    background:
        rgba(97,230,172,.045);

    color: #c6ccd6;

    font-size: 12px;

}


.status-dot {

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--green);

    box-shadow:
        0 0 0 5px rgba(97,230,172,.08),
        0 0 18px rgba(97,230,172,.4);

}


.hero-eyebrow {

    direction: ltr;

    width: fit-content;

    display: flex;

    gap: 9px;

    margin-bottom: 14px;

    color: var(--accent-light);

    font-family: "Inter", sans-serif;

    font-size: 11px;

    letter-spacing: 1.5px;

}


.hero h1 {

    margin-bottom: 27px;

    color: #fff;

    font-size:
        clamp(52px,7vw,90px);

    font-weight: 900;

    line-height: 1.18;

    letter-spacing: -3px;

}


.accent-text {
    color: var(--accent);
}


.hero-description {

    max-width: 680px;

    color: #d6dbe5;

    font-size: 17px;

    line-height: 2.15;

}


.hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 13px;

    margin-top: 38px;

}


.button {

    min-height: 52px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    padding: 0 24px;

    border-radius: 12px;

    font-size: 14px;

    font-weight: 600;

    transition: .28s ease;

}


.button:hover {
    transform: translateY(-2px);
}


.button-primary {

    background: var(--accent);

    color: #fff;

    box-shadow:
        0 12px 35px
        rgba(127,145,255,.22);

}


.button-secondary {

    border: 1px solid var(--line-strong);

    background:
        rgba(255,255,255,.035);

}


.hero-meta {

    display: flex;

    align-items: center;

    gap: 27px;

    margin-top: 55px;

}


.hero-meta-item {

    display: flex;

    flex-direction: column;

    gap: 3px;

}


.hero-meta-item span {

    color: var(--muted);

    font-size: 11px;

}


.hero-meta-item strong {

    direction: ltr;

    color: #dce1eb;

    font-family: "Inter",sans-serif;

    font-size: 12px;

}


.hero-meta-line {

    width: 1px;

    height: 32px;

    background: var(--line-strong);

}


/* Developer Card */

.hero-visual {
    position: relative;
}


.hero-visual::before {

    content: "";

    position: absolute;

    inset: 15%;

    z-index: -1;

    border-radius: 50%;

    background:
        rgba(127,145,255,.25);

    filter: blur(85px);

}


.developer-card {

    overflow: hidden;

    border:
        1px solid
        rgba(255,255,255,.14);

    border-radius: var(--radius-large);

    background:
        linear-gradient(
            140deg,
            rgba(30,38,57,.9),
            rgba(14,18,29,.83)
        );

    backdrop-filter: blur(18px);

    box-shadow:
        0 30px 80px
        rgba(0,0,0,.3);

    transform: rotate(-1.5deg);

}


.developer-card-header {

    min-height: 57px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    direction: ltr;

    padding: 0 21px;

    border-bottom: 1px solid var(--line);

}


.window-dots {
    display: flex;
    gap: 7px;
}


.window-dots span {

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background:
        rgba(255,255,255,.28);

}


.file-name {

    color: #8e98a9;

    font-family: "Inter", monospace;

    font-size: 11px;

}


.developer-card-body {

    direction: ltr;

    padding: 48px 29px;

    font-family:
        "Courier New",
        monospace;

    font-size: 13px;

    line-height: 2.35;

}


.code-line {

    display: grid;

    grid-template-columns:
        27px 1fr;

    gap: 17px;

}


.code-number {
    color: #647083;
}


.code-indent {
    padding-left: 25px;
}


.code-purple {
    color: #d0a8ff;
}


.code-blue {
    color: #a3b4ff;
}


.code-green {
    color: #83e3b5;
}


.code-white {
    color: #f1f3f7;
}


.code-muted {
    color: #8f98a8;
}


.developer-card-footer {

    min-height: 53px;

    display: flex;

    align-items: center;

    gap: 9px;

    direction: ltr;

    padding: 0 21px;

    border-top: 1px solid var(--line);

    color: #9ba4b2;

    font-family: "Inter",sans-serif;

    font-size: 10px;

}


.online-indicator {

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--green);

}


/* About */

.about-grid {

    display: grid;

    grid-template-columns:
        1.1fr .9fr;

    gap: 90px;

}


.about-text p {

    margin-bottom: 22px;

    color: #d3d8e2;

    font-size: 16px;

}


.about-details {
    border-top: 1px solid var(--line);
}


.about-detail {

    min-height: 80px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    border-bottom:
        1px solid var(--line);

}


.about-detail span {

    color: var(--muted);

    font-size: 13px;

}


.about-detail strong {

    direction: ltr;

    color: #e8ebf2;

    font-family:
        "Inter",
        "Vazirmatn",
        sans-serif;

    font-size: 13px;

}


.available-text {
    color: var(--green) !important;
}


/* Skills */

.skills-grid {

    display: grid;

    grid-template-columns:
        repeat(3,minmax(0,1fr));

    gap: 16px;

}


.skill-card {

    min-height: 330px;

    position: relative;

    overflow: hidden;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    padding: 26px;

    border: 1px solid var(--line);

    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            rgba(27,34,50,.9),
            rgba(14,19,30,.8)
        );

    transition: .35s ease;

}


.skill-card:hover {

    transform: translateY(-7px);

    border-color:
        rgba(127,145,255,.4);

    box-shadow:
        0 25px 60px
        rgba(0,0,0,.26);

}


.skill-index {

    position: absolute;

    top: 20px;
    right: 23px;

    color: #8b95a7;

    font-family: "Inter",sans-serif;

    font-size: 10px;

}


.skill-visual {

    height: 170px;

    display: flex;

    align-items: center;

    justify-content: center;

    position: relative;

}


.skill-visual::before {

    content: "";

    position: absolute;

    width: 128px;
    height: 128px;

    border:
        1px solid
        rgba(127,145,255,.1);

    border-radius: 50%;

    background:
        rgba(127,145,255,.025);

}


.skill-visual::after {

    content: "";

    position: absolute;

    width: 92px;
    height: 92px;

    border:
        1px dashed
        rgba(178,188,255,.1);

    border-radius: 50%;

}


.skill-visual svg {

    z-index: 2;

    width: 92px;
    height: 92px;

    fill: none;

    stroke: var(--accent-light);

    stroke-width: 1.7;

    stroke-linecap: round;

    stroke-linejoin: round;

    transition: .35s ease;

}


.skill-card:hover .skill-visual svg {

    transform:
        translateY(-4px)
        scale(1.07);

    stroke: #d3d9ff;

}


.skill-content {

    border-top:
        1px solid
        rgba(255,255,255,.055);

}


.skill-content h3 {

    direction: ltr;

    margin-top: 15px;
    margin-bottom: 7px;

    color: #fff;

    font-family: "Inter",sans-serif;

    font-size: 19px;

    text-align: right;

}


.skill-content p {

    color: #b5bdca;

    font-size: 14px;

}


/* Services */

.services-list {
    border-top: 1px solid var(--line);
}


.service-item {

    display: grid;

    grid-template-columns:
        60px
        minmax(180px,.65fr)
        1.35fr
        40px;

    align-items: center;

    gap: 30px;

    padding: 34px 10px;

    border-bottom:
        1px solid var(--line);

}


.service-number {

    color: #808a9b;

    font-family: "Inter",sans-serif;

    font-size: 11px;

}


.service-title h3 {

    color: #fff;

    font-size: 21px;

}


.service-item p {

    color: #b1bac8;

    font-size: 14px;

}


.service-arrow {

    color: #7a8495;

    font-size: 20px;

}


/* =========================================================
   FEATURED PROJECT
========================================================= */

.projects-section {

    overflow: hidden;

}


.featured-project {

    position: relative;

    display: grid;

    grid-template-columns:
        minmax(0,1.12fr)
        minmax(330px,.88fr);

    gap: 60px;

    align-items: stretch;

    padding: 28px;

    border:
        1px solid
        rgba(255,255,255,.11);

    border-radius: 30px;

    background:
        linear-gradient(
            145deg,
            rgba(27,34,51,.88),
            rgba(13,18,28,.76)
        );

    backdrop-filter: blur(18px);

    box-shadow:
        0 35px 90px
        rgba(0,0,0,.22);

}


.featured-project::before {

    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    border-radius: inherit;

    background:
        linear-gradient(
            110deg,
            rgba(127,145,255,.06),
            transparent 40%,
            rgba(169,140,255,.035)
        );

}


.featured-project-visual {

    position: relative;

    min-width: 0;

}


.project-browser {

    position: relative;

    z-index: 2;

    overflow: hidden;

    height: 100%;

    min-height: 500px;

    border:
        1px solid
        rgba(255,255,255,.12);

    border-radius: 22px;

    background: #0d121c;

    box-shadow:
        0 20px 50px
        rgba(0,0,0,.25);

    transition: .35s ease;

}


.featured-project:hover .project-browser {

    transform: translateY(-4px);

}


.project-browser-header {

    height: 54px;

    display: grid;

    grid-template-columns:
        80px 1fr 80px;

    align-items: center;

    direction: ltr;

    padding: 0 17px;

    border-bottom:
        1px solid
        rgba(255,255,255,.08);

    background:
        rgba(255,255,255,.025);

}


.browser-dots {

    display: flex;

    gap: 6px;

}


.browser-dots span {

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background:
        rgba(255,255,255,.19);

}


.browser-address {

    width: min(100%,320px);

    height: 30px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    justify-self: center;

    border:
        1px solid
        rgba(255,255,255,.07);

    border-radius: 8px;

    color: #8e98aa;

    background:
        rgba(0,0,0,.15);

    font-family: "Inter",sans-serif;

    font-size: 10px;

}


.browser-lock {

    color: var(--green);

}


.browser-menu {

    justify-self: end;

    color: #778195;

    font-family: "Inter",sans-serif;

    font-size: 13px;

}


.maralora-preview {

    position: relative;

    min-height: 445px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 75% 40%,
            rgba(127,145,255,.16),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #0c111a,
            #101827
        );

}


.preview-grid {

    position: absolute;

    inset: 0;

    opacity: .8;

    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: 32px 32px;

}


.preview-navbar {

    position: relative;

    z-index: 2;

    height: 70px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    direction: ltr;

    padding: 0 30px;

    border-bottom:
        1px solid
        rgba(255,255,255,.06);

}


.preview-navbar strong {

    color: #f4f6fb;

    font-family: "Inter",sans-serif;

    font-size: 13px;

    letter-spacing: 2px;

}


.preview-navbar > div {

    display: flex;

    gap: 16px;

}


.preview-navbar > div span {

    width: 37px;

    height: 4px;

    border-radius: 10px;

    background:
        rgba(255,255,255,.13);

}


.preview-hero {

    position: relative;

    z-index: 2;

    min-height: 375px;

    display: grid;

    grid-template-columns:
        1fr .8fr;

    align-items: center;

    gap: 25px;

    direction: ltr;

    padding: 45px 40px;

}


.preview-copy {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

}


.preview-label {

    margin-bottom: 20px;

    color: var(--accent-light);

    font-family: "Inter",sans-serif;

    font-size: 8px;

    letter-spacing: 2px;

}


.preview-heading {

    width: 90%;

    height: 20px;

    margin-bottom: 10px;

    border-radius: 6px;

    background:
        rgba(255,255,255,.88);

}


.preview-heading.small {

    width: 62%;

    margin-bottom: 24px;

}


.preview-text {

    width: 78%;

    height: 7px;

    margin-bottom: 9px;

    border-radius: 4px;

    background:
        rgba(255,255,255,.21);

}


.preview-text.short {
    width: 55%;
}


.preview-button {

    width: 92px;

    height: 31px;

    margin-top: 22px;

    border-radius: 8px;

    background: var(--accent);

    box-shadow:
        0 10px 30px
        rgba(127,145,255,.25);

}


.preview-art {

    display: flex;

    align-items: center;

    justify-content: center;

}


.preview-art svg {

    width: 190px;

    max-width: 100%;

    fill:
        rgba(127,145,255,.035);

    stroke:
        rgba(178,188,255,.65);

    stroke-width: 1.5;

    filter:
        drop-shadow(
            0 0 25px
            rgba(127,145,255,.18)
        );

}


.preview-floating-tag {

    position: absolute;

    z-index: 4;

    direction: ltr;

    padding: 7px 11px;

    border:
        1px solid
        rgba(255,255,255,.11);

    border-radius: 9px;

    color: #cbd1dd;

    background:
        rgba(14,19,30,.83);

    backdrop-filter: blur(12px);

    font-family: "Inter",sans-serif;

    font-size: 9px;

    box-shadow:
        0 10px 25px
        rgba(0,0,0,.18);

}


.tag-one {

    right: 25px;

    bottom: 35px;

}


.tag-two {

    right: 115px;

    bottom: 77px;

}


.project-glow {

    position: absolute;

    inset: 15%;

    z-index: 0;

    border-radius: 50%;

    background:
        rgba(127,145,255,.14);

    filter: blur(70px);

}


.featured-project-content {

    position: relative;

    z-index: 2;

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 20px 15px;

}


.project-topline {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin-bottom: 25px;

}


.featured-badge {

    direction: ltr;

    padding: 6px 10px;

    border:
        1px solid
        rgba(127,145,255,.22);

    border-radius: 50px;

    color: var(--accent-light);

    background:
        rgba(127,145,255,.055);

    font-family: "Inter",sans-serif;

    font-size: 9px;

    letter-spacing: 1.2px;

}


.project-year {

    color: #828c9e;

    font-family: "Inter",sans-serif;

    font-size: 11px;

}


.featured-project-content h3 {

    direction: ltr;

    margin-bottom: 19px;

    color: #fff;

    font-family: "Inter",sans-serif;

    font-size:
        clamp(38px,5vw,64px);

    font-weight: 800;

    letter-spacing: -2px;

}


.project-lead {

    margin-bottom: 31px;

    color: #c2c9d5;

    font-size: 15px;

    line-height: 2;

}


.project-facts {

    display: grid;

    grid-template-columns:
        repeat(2,minmax(0,1fr));

    gap: 12px;

    margin-bottom: 28px;

}


.project-facts > div {

    min-height: 82px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    gap: 3px;

    padding: 15px;

    border:
        1px solid
        rgba(255,255,255,.075);

    border-radius: 13px;

    background:
        rgba(255,255,255,.018);

}


.project-facts span {

    color: #8993a4;

    font-size: 11px;

}


.project-facts strong {

    direction: ltr;

    color: #e4e8ef;

    font-family:
        "Inter",
        "Vazirmatn",
        sans-serif;

    font-size: 11px;

    font-weight: 500;

}


.project-tech {

    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin-bottom: 34px;

}


.project-tech span {

    direction: ltr;

    padding: 6px 10px;

    border:
        1px solid
        rgba(255,255,255,.09);

    border-radius: 8px;

    color: #abb4c3;

    background:
        rgba(255,255,255,.025);

    font-family: "Inter",sans-serif;

    font-size: 9px;

}


.project-visit {

    width: fit-content;

    min-height: 50px;

    display: inline-flex;

    align-items: center;

    gap: 35px;

    padding: 0 18px;

    border:
        1px solid
        rgba(127,145,255,.28);

    border-radius: 11px;

    color: #fff;

    background:
        rgba(127,145,255,.06);

    font-size: 13px;

    font-weight: 600;

    transition: .28s ease;

}


.project-visit i {

    direction: ltr;

    color: var(--accent-light);

    font-size: 18px;

    font-style: normal;

    transition: .28s ease;

}


.project-visit:hover {

    transform: translateY(-2px);

    border-color:
        rgba(127,145,255,.5);

    background:
        rgba(127,145,255,.11);

}


.project-visit:hover i {

    transform: translate(3px,-3px);

}


/* Contact */

.contact-grid {

    display: grid;

    grid-template-columns:
        .9fr 1.1fr;

    gap: 100px;

}


.contact-content p {

    color: #b8c0cd;

    font-size: 15px;

}


.contact-links {
    border-top: 1px solid var(--line);
}


.contact-link {

    min-height: 96px;

    display: grid;

    grid-template-columns:
        105px 1fr 30px;

    align-items: center;

    gap: 20px;

    border-bottom:
        1px solid var(--line);

}


.contact-name {

    color: #a0a9b8;

    font-family: "Inter",sans-serif;

    font-size: 11px;

}


.contact-value {

    color: #d1d6e0;

    font-size: 13px;

}


.contact-arrow {

    color: #7e8899;

    font-size: 19px;

}


/* Footer */

.site-footer {

    border-top: 1px solid var(--line);

    background:
        rgba(7,9,14,.68);

}


.footer-container {

    min-height: 92px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    color: #8993a3;

    font-size: 11px;

}


.footer-container a {
    color: #c8ced8;
}


/* Animation */

.reveal {

    opacity: 0;

    transform: translateY(24px);

    transition:
        opacity .7s ease,
        transform .7s ease;

}


.reveal.visible {

    opacity: 1;

    transform: translateY(0);

}


/* Tablet */

@media (max-width: 1024px) {

    .hero-container {

        grid-template-columns:
            1fr .85fr;

        gap: 50px;

    }


    .skills-grid {

        grid-template-columns:
            repeat(2,minmax(0,1fr));

    }


    .about-grid {
        gap: 50px;
    }


    .featured-project {

        grid-template-columns: 1fr;

    }


    .project-browser {
        min-height: 460px;
    }


    .contact-grid {
        gap: 60px;
    }

}


/* Mobile */

@media (max-width: 820px) {

    .section {
        padding: 95px 0;
    }


    .menu-toggle {
        display: flex;
    }


    .main-nav {

        position: fixed;

        top: 82px;

        right: 20px;
        left: 20px;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        padding: 10px;

        opacity: 0;

        visibility: hidden;

        transform:
            translateY(-10px);

        border:
            1px solid
            var(--line-strong);

        border-radius: 18px;

        background:
            rgba(14,18,28,.98);

        backdrop-filter:
            blur(22px);

        transition: .28s ease;

    }


    .main-nav.open {

        opacity: 1;

        visibility: visible;

        transform: translateY(0);

    }


    .main-nav a {

        padding: 15px 13px;

        border-bottom:
            1px solid var(--line);

    }


    .main-nav a:last-child {
        border-bottom: none;
    }


    .menu-toggle.active span:nth-child(1) {

        transform:
            translateY(6px)
            rotate(45deg);

    }


    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }


    .menu-toggle.active span:nth-child(3) {

        transform:
            translateY(-6px)
            rotate(-45deg);

    }


    .hero {

        min-height: auto;

        padding-top: 130px;

    }


    .hero-container {
        grid-template-columns: 1fr;
    }


    .developer-card {
        transform: none;
    }


    .about-grid {
        grid-template-columns: 1fr;
    }


    .featured-project {

        padding: 20px;

        gap: 30px;

    }


    .contact-grid {
        grid-template-columns: 1fr;
    }

}


/* Small Mobile */

@media (max-width: 600px) {

    body {
        font-size: 16px;
    }


    .container {
        width: calc(100% - 30px);
    }


    .section {
        padding: 82px 0;
    }


    .section-heading h2,
    .contact-content h2 {

        font-size: 32px;

    }


    .hero h1 {

        font-size: 46px;

        letter-spacing: -1.6px;

    }


    .hero-description {
        font-size: 15px;
    }


    .hero-buttons {

        display: grid;

        grid-template-columns: 1fr;

    }


    .button {
        width: 100%;
    }


    .skills-grid {
        grid-template-columns: 1fr;
    }


    .skill-card {
        min-height: 300px;
    }


    .service-item {

        grid-template-columns:
            32px 1fr 25px;

        gap: 10px;

        padding: 26px 4px;

    }


    .service-item p {

        grid-column: 2/3;

        font-size: 13px;

    }


    .service-arrow {
        grid-column: 3;
        grid-row: 1;
    }


    .featured-project {

        padding: 14px;

        border-radius: 22px;

    }


    .project-browser {
        min-height: 355px;
    }


    .project-browser-header {

        grid-template-columns:
            50px 1fr 40px;

    }


    .browser-address {
        font-size: 8px;
    }


    .maralora-preview {
        min-height: 300px;
    }


    .preview-navbar {

        height: 55px;

        padding: 0 16px;

    }


    .preview-navbar > div {
        display: none;
    }


    .preview-hero {

        min-height: 245px;

        grid-template-columns: 1fr .65fr;

        gap: 10px;

        padding: 25px 18px;

    }


    .preview-art svg {
        width: 130px;
    }


    .preview-heading {
        height: 14px;
    }


    .preview-text {
        height: 5px;
    }


    .preview-button {

        width: 70px;

        height: 25px;

    }


    .preview-floating-tag {

        padding: 5px 7px;

        font-size: 7px;

    }


    .tag-one {

        right: 13px;

        bottom: 18px;

    }


    .tag-two {

        right: 74px;

        bottom: 48px;

    }


    .featured-project-content {

        padding: 20px 7px 10px;

    }


    .featured-project-content h3 {

        font-size: 40px;

    }


    .project-lead {

        font-size: 14px;

    }


    .project-facts {

        grid-template-columns: 1fr;

    }


    .project-visit {

        width: 100%;

        justify-content: space-between;

    }


    .contact-link {

        grid-template-columns:
            75px 1fr 24px;

        gap: 10px;

    }


    .footer-container {

        min-height: 110px;

        flex-direction: column;

        align-items: flex-start;

        justify-content: center;

        gap: 8px;

    }

}


/* Very Small */

@media (max-width: 390px) {

    .hero h1 {
        font-size: 40px;
    }

}