/* =========================================================
   BANGIS KEBBI NAKOWA
   PREMIUM PERSONAL WEBSITE
   GREEN • WHITE • YELLOW
   CLEAN CONSOLIDATED STYLESHEET
   ========================================================= */

:root {
    --green: #00f28a;
    --green-bright: #00ff91;
    --green-dark: #062b1b;
    --green-soft: #0b5f3b;

    --white: #ffffff;
    --yellow: #ffd84d;
    --yellow-bright: #ffe36b;

    --black: #020605;
    --dark: #06100b;
    --dark-2: #09150f;

    --gray: #a8b4ae;
    --gray-light: #d7dfda;

    --border: rgba(255, 255, 255, 0.10);

    --container: 1240px;
    --transition: 0.35s ease;
}


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

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

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        Inter,
        Arial,
        Helvetica,
        sans-serif;

    background:
        radial-gradient(
            circle at 75% 20%,
            rgba(0, 242, 138, 0.08),
            transparent 30%
        ),
        var(--black);

    color: var(--white);

    overflow-x: hidden;

    line-height: 1.7;
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
input,
textarea,
select {
    font: inherit;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.container {
    width: min(
        calc(100% - 48px),
        var(--container)
    );

    margin-inline: auto;
}


/* =========================================================
   PAGE LOADER
   ========================================================= */

#page-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    background: #020605;

    transition:
        opacity 0.7s ease,
        visibility 0.7s ease;
}

#page-loader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-logo {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.loader-logo span {
    color: var(--green);
}

.loader-line {
    width: 180px;
    height: 2px;
    margin-top: 22px;

    background: rgba(255, 255, 255, 0.12);

    overflow: hidden;
}

.loader-line div {
    width: 45%;
    height: 100%;

    background: var(--green);

    animation:
        loading 1.1s infinite ease-in-out;
}

#page-loader p {
    margin-top: 15px;

    color: var(--gray);

    font-size: 0.7rem;
    letter-spacing: 0.2em;
}

@keyframes loading {

    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(400%);
    }
}


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

.background-effects {
    position: fixed;
    inset: 0;
    z-index: -5;

    pointer-events: none;
    overflow: hidden;
}

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

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

    background-size: 60px 60px;

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

.glow {
    position: absolute;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    filter: blur(100px);

    opacity: 0.12;
}

.glow-one {
    top: -180px;
    right: -120px;
    background: var(--green);
}

.glow-two {
    bottom: 5%;
    left: -220px;
    background: var(--yellow);
}

.floating-circle {
    position: absolute;

    border:
        1px solid
        rgba(0, 242, 138, 0.13);

    border-radius: 50%;

    animation:
        floatCircle 12s infinite ease-in-out;
}

.circle-one {
    width: 300px;
    height: 300px;

    top: 15%;
    right: -170px;
}

.circle-two {
    width: 180px;
    height: 180px;

    bottom: 20%;
    left: -100px;

    animation-delay: -4s;
}

.circle-three {
    width: 80px;
    height: 80px;

    top: 50%;
    right: 20%;

    animation-delay: -7s;
}

@keyframes floatCircle {

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

    50% {
        transform:
            translateY(-30px)
            rotate(180deg);
    }
}


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

.site-header {
    position: fixed;

    top: 0;
    left: 0;
    right: 0;

    z-index: 1000;

    background:
        rgba(2, 6, 5, 0.78);

    backdrop-filter: blur(18px);

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

.nav-container {
    min-height: 82px;

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

.logo {
    font-size: 1.65rem;
    font-weight: 950;
    letter-spacing: -0.03em;
}

.logo span {
    color: var(--green);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 27px;
}

.main-nav a {
    position: relative;

    color: var(--gray-light);

    font-size: 0.9rem;

    transition: var(--transition);
}

.main-nav a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;
    height: 2px;

    background: var(--green);

    transition: var(--transition);
}

.main-nav a:hover {
    color: var(--green);
}

.main-nav a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;

    width: 45px;
    height: 45px;

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

    background: transparent;

    cursor: pointer;

    padding: 10px;

    border-radius: 8px;
}

.menu-toggle span {
    display: block;

    height: 2px;

    margin: 5px 0;

    background: var(--white);

    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform:
        translateY(7px)
        rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform:
        translateY(-7px)
        rotate(-45deg);
}


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

.hero,
.premium-hero {
    position: relative;

    min-height: 100vh;

    display: flex;
    align-items: center;

    padding: 130px 0 90px;

    overflow: hidden;

    isolation: isolate;
}

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

    z-index: -1;

    overflow: hidden;
}

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

    opacity: 0.25;

    background-image:
        linear-gradient(
            rgba(0,255,150,0.08) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(0,255,150,0.08) 1px,
            transparent 1px
        );

    background-size: 70px 70px;

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

.hero-glow {
    position: absolute;

    border-radius: 50%;

    filter: blur(80px);
}

.hero-glow-one {
    width: 500px;
    height: 500px;

    top: -180px;
    left: -180px;

    background:
        rgba(0,255,120,0.13);

    animation:
        glowFloatOne 8s ease-in-out infinite;
}

.hero-glow-two {
    width: 550px;
    height: 550px;

    right: -220px;
    bottom: -180px;

    background:
        rgba(255,200,40,0.10);

    animation:
        glowFloatTwo 10s ease-in-out infinite;
}

@keyframes glowFloatOne {

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

    50% {
        transform: translate(30px,25px);
    }
}

@keyframes glowFloatTwo {

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

    50% {
        transform: translate(-35px,-20px);
    }
}

.floating-orb {
    position: absolute;

    border:
        1px solid
        rgba(0,255,150,0.18);

    border-radius: 50%;

    animation:
        orbFloat 9s ease-in-out infinite;
}

.orb-one {
    width: 350px;
    height: 350px;

    right: -100px;
    top: 80px;
}

.orb-two {
    width: 180px;
    height: 180px;

    left: 8%;
    bottom: 8%;

    animation-delay: 2s;
}

.orb-three {
    width: 90px;
    height: 90px;

    right: 35%;
    top: 18%;

    border-color:
        rgba(255,215,70,0.25);

    animation-delay: 4s;
}

@keyframes orbFloat {

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

    50% {
        transform:
            translateY(-25px)
            rotate(180deg);
    }
}

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

    width: min(
        calc(100% - 48px),
        1450px
    );

    margin-inline: auto;

    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(380px, 0.95fr);

    align-items: center;

    gap: 70px;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-eyebrow {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 25px;

    color: var(--green-bright);

    font-size: 14px;
    font-weight: 800;

    letter-spacing: 4px;

    text-transform: uppercase;
}

.pulse-dot,
.status-dot {
    width: 9px;
    height: 9px;

    display: inline-block;

    flex: 0 0 auto;

    border-radius: 50%;

    background: var(--green-bright);

    box-shadow:
        0 0 15px
        rgba(0,255,145,0.8);

    animation:
        pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.45);
        opacity: 0.55;
    }
}

.eyebrow-divider {
    color: var(--yellow);
}

.hero-title {
    margin-bottom: 25px;

    color: var(--white);

    font-size:
        clamp(
            3.8rem,
            8vw,
            8rem
        );

    font-weight: 950;

    line-height: 0.88;

    letter-spacing: -0.07em;

    text-transform: uppercase;
}

.hero-title span {
    display: block;
    color: var(--green);
}

.hero-title strong {
    display: block;

    color: transparent;

    -webkit-text-stroke:
        2px rgba(255,255,255,0.75);

    text-shadow:
        0 0 30px
        rgba(0,242,138,0.05);
}

.hero-subtitle {
    max-width: 850px;

    margin-bottom: 24px;

    color: var(--white);

    font-size:
        clamp(
            1.4rem,
            2.7vw,
            2.5rem
        );

    line-height: 1.2;
}

.hero-subtitle span {
    color: var(--yellow);
}

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

    margin-bottom: 32px;

    color: var(--gray);

    font-size: 1rem;

    line-height: 1.9;
}

.hero-highlights {
    display: grid;

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

    gap: 12px;

    max-width: 800px;

    margin-bottom: 30px;
}

.hero-highlight {
    display: flex;

    align-items: center;

    gap: 12px;

    padding: 15px;

    border:
        1px solid
        rgba(255,255,255,0.09);

    border-radius: 12px;

    background:
        rgba(255,255,255,0.025);

    transition: var(--transition);
}

.hero-highlight:hover {
    transform: translateY(-5px);

    border-color:
        rgba(0,242,138,0.3);

    background:
        rgba(0,242,138,0.035);
}

.hero-highlight > span {
    color: var(--yellow);

    font-size: 0.65rem;

    font-weight: 900;
}

.hero-highlight strong,
.hero-highlight small {
    display: block;
}

.hero-highlight strong {
    font-size: 0.78rem;
}

.hero-highlight small {
    margin-top: 2px;

    color: var(--gray);

    font-size: 0.65rem;
}

.hero-actions,
.hero-buttons {
    display: flex;

    flex-wrap: wrap;

    gap: 14px;

    margin-bottom: 25px;
}

.btn {
    min-height: 54px;

    padding:
        14px 25px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    border:
        1px solid
        transparent;

    border-radius: 9px;

    cursor: pointer;

    font-weight: 800;

    text-decoration: none;

    transition:
        transform var(--transition),
        background var(--transition),
        border var(--transition),
        box-shadow var(--transition);
}

.btn:hover {
    transform: translateY(-4px);
}

.btn-primary {
    color: #00130a;

    background: var(--green);

    box-shadow:
        0 10px 35px
        rgba(0,242,138,0.16);
}

.btn-primary:hover {
    background: #4fffb0;

    box-shadow:
        0 15px 45px
        rgba(0,242,138,0.28);
}

.btn-secondary {
    color: var(--white);

    background:
        rgba(255,255,255,0.035);

    border-color:
        rgba(255,255,255,0.15);
}

.btn-secondary:hover {
    color: var(--green);

    border-color: var(--green);
}

.hero-status,
.availability {
    display: flex;

    align-items: center;

    gap: 10px;

    color: var(--gray);

    font-size: 0.82rem;
}


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

.hero-visual {
    position: relative;

    min-height: 620px;

    display: flex;

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

.profile-card {
    position: relative;

    width: min(
        100%,
        520px
    );

    padding: 18px;

    border:
        1px solid
        rgba(0,242,138,0.35);

    border-radius: 28px;

    background:
        linear-gradient(
            145deg,
            rgba(0,242,138,0.09),
            rgba(255,255,255,0.025)
        );

    box-shadow:
        0 30px 90px
        rgba(0,0,0,0.5);

    overflow: hidden;

    transform:
        rotate(2deg);

    transition:
        transform 0.5s ease;
}

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

.profile-card::before {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    top: -120px;
    right: -80px;

    border-radius: 50%;

    background: var(--green);

    filter: blur(80px);

    opacity: 0.18;
}

.profile-image-wrapper {
    position: relative;

    aspect-ratio: 4 / 5;

    overflow: hidden;

    border-radius: 18px;

    background: var(--dark);
}

.profile-image-wrapper::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,0.55),
            transparent 45%
        );

    pointer-events: none;
}

.profile-image-wrapper img,
.profile-image {
    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center top;

    transition:
        transform 0.8s ease;
}

.profile-card:hover
.profile-image-wrapper img {
    transform: scale(1.035);
}

.profile-badge {
    position: absolute;

    top: 35px;
    right: -15px;

    z-index: 5;

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 13px 17px;

    border:
        1px solid
        rgba(0,242,138,0.35);

    border-radius: 12px;

    background:
        rgba(2,6,5,0.88);

    backdrop-filter: blur(14px);

    box-shadow:
        0 15px 40px
        rgba(0,0,0,0.35);

    animation:
        badgeFloat 4s ease-in-out infinite;
}

.badge-icon {
    color: var(--yellow);

    font-size: 1.1rem;
}

.profile-badge strong,
.profile-badge small {
    display: block;
}

.profile-badge strong {
    color: var(--green);

    font-size: 0.65rem;

    letter-spacing: 0.08em;
}

.profile-badge small {
    color: var(--gray);

    font-size: 0.6rem;
}

@keyframes badgeFloat {

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

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

.profile-info {
    position: relative;

    z-index: 2;

    padding:
        18px 5px 8px;
}

.profile-name {
    color: var(--white);

    font-size: 0.95rem;

    font-weight: 900;
}

.profile-role {
    margin-top: 4px;

    color: var(--gray);

    font-size: 0.72rem;
}

.profile-tags {
    display: flex;

    flex-wrap: wrap;

    gap: 7px;

    padding:
        10px 5px 5px;
}

.profile-tags span {
    padding:
        5px 9px;

    border:
        1px solid
        rgba(255,255,255,0.1);

    border-radius: 50px;

    color: var(--gray-light);

    font-size: 0.6rem;
}

.card-corner {
    position: absolute;

    width: 18px;
    height: 18px;

    border-color: var(--green);

    opacity: 0.6;
}

.corner-top-left {
    top: 10px;
    left: 10px;

    border-top: 2px solid;
    border-left: 2px solid;
}

.corner-top-right {
    top: 10px;
    right: 10px;

    border-top: 2px solid;
    border-right: 2px solid;
}

.corner-bottom-left {
    bottom: 10px;
    left: 10px;

    border-bottom: 2px solid;
    border-left: 2px solid;
}

.corner-bottom-right {
    bottom: 10px;
    right: 10px;

    border-bottom: 2px solid;
    border-right: 2px solid;
}

.floating-service-card {
    position: absolute;

    left: -35px;
    bottom: 55px;

    z-index: 8;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 14px 17px;

    border:
        1px solid
        rgba(255,216,77,0.22);

    border-radius: 13px;

    background:
        rgba(3,9,6,0.9);

    backdrop-filter: blur(15px);

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

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

.floating-service-icon {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border-radius: 10px;

    color: var(--black);

    background: var(--yellow);

    font-weight: 900;
}

.floating-service-card strong,
.floating-service-card small {
    display: block;
}

.floating-service-card strong {
    font-size: 0.72rem;
}

.floating-service-card small {
    color: var(--gray);

    font-size: 0.62rem;
}

@keyframes serviceFloat {

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

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

.hero-scroll {
    position: absolute;

    bottom: 30px;
    left: 50%;

    transform:
        translateX(-50%);

    display: flex;

    align-items: center;

    gap: 14px;

    color: var(--gray);

    font-size: 0.62rem;

    letter-spacing: 0.15em;

    z-index: 10;
}

.scroll-line {
    width: 55px;
    height: 1px;

    background:
        rgba(255,255,255,0.3);
}

.scroll-arrow {
    color: var(--green);

    animation:
        scrollBounce 1.8s ease-in-out infinite;
}

@keyframes scrollBounce {

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

    50% {
        transform: translateY(6px);
    }
}


/* =========================================================
   GENERAL SECTIONS
   ========================================================= */

.section {
    position: relative;

    padding: 130px 0;
}

.dark-section {
    background:
        linear-gradient(
            180deg,
            rgba(6,16,11,0.75),
            rgba(3,9,6,0.92)
        );

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

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

.section-heading {
    display: flex;

    gap: 30px;

    align-items: flex-start;

    margin-bottom: 70px;
}

.section-number {
    color: var(--yellow);

    font-size: 0.8rem;

    font-weight: 900;

    letter-spacing: 0.1em;

    padding-top: 7px;
}

.eyebrow {
    color: var(--green);

    font-size: 0.78rem;

    font-weight: 800;

    letter-spacing: 0.24em;
}

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

    margin-top: 12px;

    font-size:
        clamp(
            2.5rem,
            5vw,
            5rem
        );

    line-height: 1;

    letter-spacing: -0.05em;
}

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


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

.about-grid {
    display: grid;

    grid-template-columns:
        1.2fr
        0.8fr;

    gap: 80px;
}

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

.about-main p {
    color: var(--gray);

    margin-bottom: 24px;

    font-size: 1.02rem;
}

.about-main .large-text {
    color: var(--white);

    font-size:
        clamp(
            1.5rem,
            2.5vw,
            2.3rem
        );

    line-height: 1.4;
}

.about-main strong {
    color: var(--green);
}

.about-signature {
    display: flex;

    align-items: flex-end;

    gap: 15px;

    margin-top: 45px;
}

.about-signature span {
    font-size: 2rem;

    font-weight: 950;
}

.about-signature small {
    color: var(--yellow);

    letter-spacing: 0.12em;

    font-size: 0.65rem;
}

.about-stats {
    display: grid;

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

    gap: 14px;
}

.stat-card {
    min-height: 190px;

    padding: 24px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    background:
        rgba(255,255,255,0.025);

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

    border-radius: 14px;

    transition: var(--transition);
}

.stat-card:hover {
    border-color:
        rgba(0,242,138,0.4);

    transform:
        translateY(-6px);
}

.stat-card strong {
    color: var(--green);

    font-size: 2rem;
}

.stat-card span {
    color: var(--gray-light);

    font-weight: 700;
}


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

.skills-grid {
    display: grid;

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

    gap: 16px;
}

.skill-card {
    position: relative;

    min-height: 310px;

    padding: 30px;

    background:
        rgba(255,255,255,0.025);

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

    border-radius: 15px;

    overflow: hidden;

    transition: var(--transition);
}

.skill-card::before {
    content: "";

    position: absolute;

    width: 160px;
    height: 160px;

    top: -90px;
    right: -90px;

    border-radius: 50%;

    background: var(--green);

    filter: blur(60px);

    opacity: 0.08;
}

.skill-card:hover {
    transform:
        translateY(-8px);

    border-color:
        rgba(0,242,138,0.35);

    background:
        rgba(0,242,138,0.035);
}

.card-number {
    color: var(--yellow);

    font-size: 0.7rem;

    font-weight: 900;

    letter-spacing: 0.1em;
}

.skill-icon {
    margin:
        30px 0 20px;

    width: 58px;
    height: 58px;

    display: grid;

    place-items: center;

    border-radius: 12px;

    color: var(--black);

    background: var(--green);

    font-weight: 950;
}

.skill-card h3 {
    font-size: 1.25rem;

    margin-bottom: 12px;
}

.skill-card p {
    color: var(--gray);

    font-size: 0.9rem;
}


/* =========================================================
   PROJECTS
   ========================================================= */

.projects-grid {
    display: grid;

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

    gap: 18px;
}

.project-card {
    position: relative;

    min-height: 380px;

    padding: 32px;

    display: flex;

    align-items: flex-end;

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

    border-radius: 18px;

    overflow: hidden;

    background:
        var(--dark-2);

    transition: var(--transition);
}

.project-card:hover {
    transform:
        translateY(-8px);

    border-color:
        rgba(0,242,138,0.4);
}

.project-large {
    grid-column:
        span 2;

    min-height: 480px;
}

.project-background {
    position: absolute;

    inset: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        radial-gradient(
            circle at 50% 30%,
            rgba(0,242,138,0.15),
            transparent 45%
        );
}

.project-background span {
    font-size:
        clamp(
            8rem,
            18vw,
            18rem
        );

    font-weight: 950;

    color:
        rgba(255,255,255,0.025);

    line-height: 1;

    transform:
        rotate(-8deg);
}

.project-content {
    position: relative;

    z-index: 2;

    max-width: 750px;
}

.project-category,
.blog-type {
    color: var(--yellow);

    font-size: 0.65rem;

    font-weight: 900;

    letter-spacing: 0.18em;
}

.project-card h3 {
    margin-top: 10px;

    font-size:
        clamp(
            1.8rem,
            4vw,
            3.5rem
        );

    line-height: 1;
}

.project-card p {
    max-width: 600px;

    margin-top: 15px;

    color: var(--gray);

    font-size: 0.95rem;
}

.project-tags {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin-top: 20px;
}

.project-tags span {
    padding:
        5px 10px;

    border:
        1px solid
        rgba(255,255,255,0.12);

    border-radius: 50px;

    color: var(--gray-light);

    font-size: 0.62rem;
}


/* =========================================================
   EXPERIENCE
   ========================================================= */

.timeline {
    position: relative;

    max-width: 1000px;

    margin-inline: auto;
}

.timeline::before {
    content: "";

    position: absolute;

    top: 0;
    bottom: 0;

    left: 100px;

    width: 1px;

    background:
        linear-gradient(
            to bottom,
            var(--green),
            transparent
        );
}

.timeline-item {
    position: relative;

    display: grid;

    grid-template-columns:
        150px 1fr;

    gap: 40px;

    padding:
        0 0 70px;
}

.timeline-item::before {
    content: "";

    position: absolute;

    top: 6px;
    left: 95px;

    width: 11px;
    height: 11px;

    border-radius: 50%;

    background: var(--green);

    box-shadow:
        0 0 20px
        rgba(0,242,138,0.7);
}

.timeline-year {
    color: var(--yellow);

    font-weight: 900;

    font-size: 0.85rem;
}

.timeline-content {
    padding-left: 25px;
}

.timeline-content span {
    color: var(--green);

    font-size: 0.65rem;

    font-weight: 900;

    letter-spacing: 0.15em;
}

.timeline-content h3 {
    margin:
        8px 0 12px;

    font-size: 1.7rem;
}

.timeline-content p {
    color: var(--gray);

    max-width: 720px;
}


/* =========================================================
   SERVICES
   ========================================================= */

.services-grid {
    display: grid;

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

    gap: 16px;
}

.service-card {
    position: relative;

    min-height: 270px;

    padding: 30px;

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

    border-radius: 15px;

    background:
        rgba(255,255,255,0.02);

    transition: var(--transition);

    overflow: hidden;
}

.service-card::after {
    content: "";

    position: absolute;

    width: 120px;
    height: 120px;

    right: -70px;
    bottom: -70px;

    border-radius: 50%;

    background: var(--green);

    filter: blur(55px);

    opacity: 0.07;
}

.service-card:hover {
    transform:
        translateY(-7px);

    border-color:
        rgba(0,242,138,0.35);
}

.service-card > span {
    color: var(--yellow);

    font-size: 0.7rem;

    font-weight: 900;
}

.service-card h3 {
    margin:
        50px 0 14px;

    font-size: 1.35rem;
}

.service-card p {
    color: var(--gray);

    font-size: 0.9rem;
}


/* =========================================================
   ACADEMY
   ========================================================= */

.academy-section {
    overflow: hidden;
}

.premium-header {
    display: flex;

    justify-content: space-between;

    gap: 50px;

    align-items: flex-end;

    margin-bottom: 60px;
}

.premium-header h2 {
    margin-top: 12px;

    font-size:
        clamp(
            2.8rem,
            6vw,
            6rem
        );

    line-height: 0.95;

    letter-spacing: -0.06em;
}

.premium-header h2 span {
    color: var(--green);
}

.premium-header p:not(.eyebrow) {
    max-width: 700px;

    margin-top: 22px;

    color: var(--gray);
}

.premium-badge {
    min-width: 140px;
    height: 140px;

    display: flex;

    flex-direction: column;

    justify-content: center;
    align-items: center;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            var(--green),
            #0d8b54
        );

    color: var(--black);

    box-shadow:
        0 0 50px
        rgba(0,242,138,0.18);

    animation:
        badgeFloat 4s
        infinite ease-in-out;
}

.premium-badge span {
    font-size: 0.65rem;

    font-weight: 900;

    letter-spacing: 0.15em;
}

.premium-badge strong {
    font-size: 1.1rem;
}

.academy-grid {
    display: grid;

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

    gap: 18px;
}

.academy-card {
    position: relative;

    min-height: 390px;

    padding: 32px;

    border:
        1px solid
        rgba(255,216,77,0.18);

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.035),
            rgba(0,0,0,0.15)
        );

    overflow: hidden;

    transition: var(--transition);
}

.academy-card:hover {
    transform:
        translateY(-8px);

    border-color:
        rgba(255,216,77,0.45);
}

.academy-icon {
    width: 60px;
    height: 60px;

    display: grid;

    place-items: center;

    border-radius: 14px;

    background:
        rgba(255,216,77,0.09);

    font-size: 1.7rem;
}

.locked-label {
    display: block;

    margin-top: 28px;

    color: var(--yellow);

    font-size: 0.62rem;

    font-weight: 900;

    letter-spacing: 0.15em;
}

.academy-card h3 {
    margin:
        10px 0 14px;

    font-size: 1.5rem;
}

.academy-card p {
    color: var(--gray);

    font-size: 0.9rem;
}

.premium-button {
    position: absolute;

    left: 32px;
    bottom: 30px;

    padding:
        11px 17px;

    border:
        1px solid
        rgba(255,216,77,0.35);

    border-radius: 7px;

    background:
        rgba(255,216,77,0.06);

    color: var(--yellow);

    cursor: pointer;

    font-weight: 800;

    font-size: 0.75rem;

    transition: var(--transition);
}

.premium-button:hover {
    background: var(--yellow);

    color: var(--black);
}

.academy-note {
    margin-top: 30px;

    padding: 20px;

    border-left:
        2px solid var(--yellow);

    background:
        rgba(255,216,77,0.035);
}

.academy-note span {
    color: var(--yellow);

    font-size: 0.65rem;

    font-weight: 900;

    letter-spacing: 0.15em;
}

.academy-note p {
    margin-top: 6px;

    color: var(--gray);

    font-size: 0.85rem;
}


/* =========================================================
   BLOG
   ========================================================= */

.blog-grid {
    display: grid;

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

    gap: 18px;
}

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

    padding: 30px;

    display: flex;

    flex-direction: column;

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

    border-radius: 16px;

    background:
        rgba(255,255,255,0.02);

    transition: var(--transition);
}

.blog-card:hover {
    transform:
        translateY(-7px);

    border-color:
        rgba(0,242,138,0.35);
}

.blog-card h3 {
    margin:
        40px 0 15px;

    font-size: 1.5rem;

    line-height: 1.2;
}

.blog-card p {
    color: var(--gray);

    font-size: 0.9rem;
}

.blog-card a {
    margin-top: auto;

    color: var(--green);

    font-weight: 800;

    font-size: 0.85rem;
}


/* =========================================================
   CV
   ========================================================= */

.cv-section {
    background:
        rgba(255,255,255,0.012);
}

.cv-card {
    position: relative;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

    padding: 55px;

    border:
        1px solid
        rgba(0,242,138,0.25);

    border-radius: 22px;

    background:
        radial-gradient(
            circle at 90% 20%,
            rgba(0,242,138,0.12),
            transparent 35%
        ),
        rgba(255,255,255,0.025);

    overflow: hidden;
}

.cv-card h2 {
    margin-top: 10px;

    font-size:
        clamp(
            2.5rem,
            5vw,
            5rem
        );

    line-height: 1;

    letter-spacing: -0.05em;
}

.cv-card h2 span {
    color: var(--green);
}

.cv-card p:not(.eyebrow) {
    max-width: 650px;

    margin-top: 20px;

    color: var(--gray);
}

.cv-actions {
    display: flex;

    flex-direction: column;

    gap: 12px;

    min-width: 180px;
}


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

.contact-section {
    position: relative;

    overflow: hidden;

    text-align: center;

    background:
        radial-gradient(
            circle at 10% 50%,
            rgba(255,216,77,0.07),
            transparent 30%
        ),
        radial-gradient(
            circle at 90% 30%,
            rgba(0,242,138,0.09),
            transparent 32%
        ),
        #030a07;
}

.contact-section::before {
    content: "";

    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            rgba(0,242,138,0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(0,242,138,0.025) 1px,
            transparent 1px
        );

    background-size: 70px 70px;

    pointer-events: none;
}

.contact-section .container {
    position: relative;
    z-index: 2;
}

.contact-box {
    max-width: 1050px;

    margin-inline: auto;

    padding: 65px 45px;

    border:
        1px solid
        rgba(0,242,138,0.18);

    border-radius: 28px;

    background:
        linear-gradient(
            145deg,
            rgba(0,242,138,0.045),
            rgba(255,255,255,0.015)
        );

    box-shadow:
        0 30px 100px
        rgba(0,0,0,0.35);
}

.contact-box h2 {
    margin-top: 15px;

    color: var(--white);

    font-size:
        clamp(
            2.8rem,
            7vw,
            6.5rem
        );

    line-height: 0.95;

    letter-spacing: -0.06em;
}

.contact-box h2 span {
    color: var(--green);
}

.contact-box > p:not(.eyebrow) {
    max-width: 700px;

    margin:
        25px auto 35px;

    color: var(--gray);

    font-size: 1rem;
}

.contact-buttons {
    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 12px;
}

.social-links {
    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 10px;

    margin-top: 45px;
}

.social-links a {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 40px;

    padding:
        0 15px;

    border:
        1px solid
        rgba(0,242,138,0.16);

    border-radius: 999px;

    color: var(--gray);

    background:
        rgba(255,255,255,0.018);

    font-size: 0.78rem;

    transition: var(--transition);
}

.social-links a:hover {
    color: var(--black);

    background: var(--green);

    border-color: var(--green);

    transform:
        translateY(-3px);
}


/* =========================================================
   CONTACT FORM SUPPORT
   This safely styles forms if/when the form is present.
   ========================================================= */

.contact-form {
    width: 100%;

    max-width: 760px;

    margin:
        40px auto 0;

    display: flex;

    flex-direction: column;

    gap: 18px;

    text-align: left;
}

.contact-form label {
    display: block;

    margin-bottom: 7px;

    color:
        rgba(255,255,255,0.72);

    font-size: 0.7rem;

    font-weight: 800;

    letter-spacing: 0.1em;

    text-transform: uppercase;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;

    border:
        1px solid
        rgba(255,255,255,0.12);

    border-radius: 13px;

    outline: none;

    background:
        rgba(0,0,0,0.25);

    color: var(--white);

    padding:
        15px 17px;

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.contact-form input,
.contact-form select {
    min-height: 55px;
}

.contact-form textarea {
    min-height: 150px;

    resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color:
        rgba(255,255,255,0.32);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: var(--green);

    background:
        rgba(0,242,138,0.035);

    box-shadow:
        0 0 0 3px
        rgba(0,242,138,0.07);
}

.contact-form select option {
    background: #07110d;
    color: var(--white);
}

.contact-form button {
    min-height: 55px;

    border: none;

    border-radius: 13px;

    background: var(--green);

    color: #00130a;

    cursor: pointer;

    font-weight: 900;

    transition: var(--transition);
}

.contact-form button:hover {
    transform:
        translateY(-3px);

    background:
        #4fffb0;

    box-shadow:
        0 12px 35px
        rgba(0,242,138,0.2);
}


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

.site-footer {
    position: relative;

    overflow: hidden;

    padding:
        80px 0 28px;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(0,242,138,0.08),
            transparent 32%
        ),
        radial-gradient(
            circle at 85% 70%,
            rgba(255,216,77,0.06),
            transparent 30%
        ),
        #020806;

    border-top:
        1px solid
        rgba(0,242,138,0.18);
}

.site-footer::before {
    content: "";

    position: absolute;

    inset: 0;

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

    background-size:
        70px 70px;

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

    pointer-events: none;
}

.site-footer::after {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    right: -180px;
    bottom: -250px;

    border:
        1px solid
        rgba(0,242,138,0.12);

    border-radius: 50%;

    pointer-events: none;

    animation:
        footerOrbit 14s linear infinite;
}

.footer-main {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(280px, 1fr)
        minmax(450px, 1.3fr);

    gap: 80px;

    align-items: start;
}

.footer-brand {
    max-width: 430px;
}

.footer-logo {
    display: inline-block;

    margin-bottom: 22px;

    color: var(--white);

    font-size: 38px;

    font-weight: 900;

    letter-spacing: -1.5px;

    transition:
        transform 0.3s ease,
        text-shadow 0.3s ease;
}

.footer-logo span {
    color: var(--green);

    text-shadow:
        0 0 15px
        rgba(0,242,138,0.7);
}

.footer-logo:hover {
    transform:
        translateY(-3px);

    text-shadow:
        0 0 25px
        rgba(0,242,138,0.25);
}

.footer-brand > p {
    max-width: 390px;

    margin-bottom: 24px;

    color:
        rgba(255,255,255,0.58);

    font-size: 15px;

    line-height: 1.8;
}

.footer-status {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding:
        10px 14px;

    border:
        1px solid
        rgba(0,242,138,0.18);

    border-radius: 999px;

    background:
        rgba(0,242,138,0.035);

    color:
        rgba(255,255,255,0.68);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 0.08em;

    text-transform: uppercase;
}

.footer-status i {
    width: 8px;
    height: 8px;

    display: block;

    border-radius: 50%;

    background: var(--green);

    box-shadow:
        0 0 10px
        rgba(0,242,138,0.9);

    animation:
        footerPulse 2s ease-in-out infinite;
}

.footer-links {
    display: grid;

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

    gap: 45px;
}

.footer-column {
    display: flex;

    flex-direction: column;

    gap: 13px;
}

.footer-column h3 {
    margin-bottom: 12px;

    color: var(--yellow);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 0.16em;

    text-transform: uppercase;
}

.footer-column a {
    position: relative;

    width: fit-content;

    color:
        rgba(255,255,255,0.62);

    font-size: 14px;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.footer-column a::before {
    content: "→";

    position: absolute;

    left: -20px;

    color: var(--green);

    opacity: 0;

    transform:
        translateX(-5px);

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.footer-column a:hover {
    color: var(--white);

    transform:
        translateX(5px);
}

.footer-column a:hover::before {
    opacity: 1;

    transform:
        translateX(0);
}

.footer-divider {
    position: relative;

    z-index: 2;

    height: 1px;

    margin:
        65px 0 25px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(0,242,138,0.25),
            rgba(255,216,77,0.18),
            transparent
        );
}

.footer-bottom {
    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}

.footer-bottom p {
    margin: 0;

    color:
        rgba(255,255,255,0.42);

    font-size: 12px;
}

.footer-heart {
    color: var(--green);

    display: inline-block;

    margin:
        0 4px;

    animation:
        footerHeart 1.8s ease-in-out infinite;
}

@keyframes footerPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.75;
    }

    50% {
        transform: scale(1.35);
        opacity: 1;
    }
}

@keyframes footerHeart {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.25);
    }
}

@keyframes footerOrbit {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


/* =========================================================
   PREMIUM MODAL
   ========================================================= */

.modal {
    position: fixed;

    inset: 0;

    z-index: 5000;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 20px;

    background:
        rgba(0,0,0,0.78);

    backdrop-filter:
        blur(15px);

    opacity: 0;

    visibility: hidden;

    transition: var(--transition);
}

.modal.active {
    opacity: 1;

    visibility: visible;
}

.modal-box {
    position: relative;

    width: min(
        100%,
        520px
    );

    padding: 45px;

    border:
        1px solid
        rgba(0,242,138,0.3);

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            #0a1710,
            #020605
        );

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

    transform:
        translateY(20px)
        scale(0.97);

    transition: var(--transition);
}

.modal.active .modal-box {
    transform:
        translateY(0)
        scale(1);
}

.modal-close {
    position: absolute;

    top: 18px;
    right: 18px;

    width: 38px;
    height: 38px;

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

    border-radius: 50%;

    background: transparent;

    color: var(--white);

    cursor: pointer;

    font-size: 1.4rem;
}

.modal-label {
    color: var(--yellow);

    font-size: 0.65rem;

    font-weight: 900;

    letter-spacing: 0.16em;
}

.modal-box h2 {
    margin:
        15px 0;

    font-size: 2.5rem;

    line-height: 1;
}

.modal-box h2 span {
    color: var(--green);
}

.modal-box p {
    color: var(--gray);

    font-size: 0.9rem;
}

.modal-info {
    margin:
        25px 0;

    padding: 14px;

    border:
        1px solid
        rgba(0,242,138,0.15);

    border-radius: 8px;

    color: var(--green);

    background:
        rgba(0,242,138,0.04);

    font-size: 0.8rem;
}

.modal-ok {
    width: 100%;
}


/* =========================================================
   REVEAL ANIMATION
   ========================================================= */

.reveal {
    opacity: 0;

    transform:
        translateY(35px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;

    transform:
        translateY(0);
}


/* =========================================================
   RESPONSIVE — TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .main-nav {
        gap: 18px;
    }

    .hero-container {
        gap: 45px;
    }

    .hero-title {
        font-size:
            clamp(
                3.8rem,
                8vw,
                6.5rem
            );
    }

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

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


/* =========================================================
   RESPONSIVE — MOBILE NAV
   ========================================================= */

@media (max-width: 850px) {

    .container {
        width:
            min(
                calc(100% - 32px),
                var(--container)
            );
    }

    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;

        top: 82px;
        right: 16px;
        left: 16px;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        padding: 15px;

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

        border-radius: 14px;

        background:
            rgba(3,9,6,0.97);

        backdrop-filter:
            blur(20px);

        opacity: 0;

        visibility: hidden;

        transform:
            translateY(-10px);

        transition: var(--transition);
    }

    .main-nav.active {
        opacity: 1;

        visibility: visible;

        transform:
            translateY(0);
    }

    .main-nav a {
        padding:
            13px 10px;

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

    .main-nav a:last-child {
        border-bottom: none;
    }

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

        gap: 60px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-eyebrow,
    .hero-status,
    .availability {
        justify-content: center;
    }

    .hero-title {
        align-items: center;
    }

    .hero-actions,
    .hero-buttons {
        justify-content: center;
    }

    .hero-description {
        margin-inline: auto;
    }

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

    .about-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .premium-header {
        align-items: flex-start;
    }

    .academy-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .cv-card {
        flex-direction: column;

        align-items: flex-start;
    }

    .cv-actions {
        width: 100%;

        flex-direction: row;
    }

    .cv-actions .btn {
        flex: 1;
    }

    .footer-main {
        grid-template-columns: 1fr;

        gap: 50px;
    }
}


/* =========================================================
   RESPONSIVE — SMALL MOBILE
   ========================================================= */

@media (max-width: 650px) {

    .section {
        padding:
            90px 0;
    }

    .hero,
    .premium-hero {
        padding:
            115px 0 70px;
    }

    .hero-title {
        font-size:
            clamp(
                3rem,
                15vw,
                5rem
            );
    }

    .hero-subtitle {
        font-size: 1.35rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .hero-highlights {
        grid-template-columns: 1fr;
    }

    .hero-highlight {
        text-align: left;
    }

    .hero-visual {
        min-height: auto;
    }

    .profile-card {
        transform: none;
    }

    .profile-card:hover {
        transform:
            translateY(-5px);
    }

    .floating-service-card {
        left: 0;
        bottom: 25px;

        transform:
            scale(0.88);

        transform-origin:
            left bottom;
    }

    .hero-scroll {
        display: none;
    }

    .section-heading {
        gap: 15px;

        margin-bottom: 45px;
    }

    .section-heading h2 {
        font-size: 2.6rem;
    }

    .skills-grid,
    .services-grid,
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .project-large {
        grid-column:
            span 1;
    }

    .project-card,
    .project-large {
        min-height: 350px;
    }

    .timeline::before {
        left: 7px;
    }

    .timeline-item {
        grid-template-columns: 1fr;

        gap: 10px;

        padding-left: 35px;
    }

    .timeline-item::before {
        left: 2px;
    }

    .timeline-content {
        padding-left: 0;
    }

    .premium-header {
        flex-direction: column;
    }

    .premium-badge {
        width: 100px;
        min-width: 100px;

        height: 100px;
    }

    .cv-card {
        padding: 30px;
    }

    .cv-actions {
        flex-direction: column;
    }

    .contact-box {
        padding:
            45px 22px;

        border-radius: 22px;
    }

    .contact-box h2 {
        font-size: 3rem;
    }

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

    .contact-buttons .btn {
        width: 100%;
    }

    .social-links {
        gap: 8px;
    }

    .social-links a {
        font-size: 0.68rem;

        padding:
            0 11px;
    }

    .site-footer {
        padding:
            60px 0 24px;
    }

    .footer-links {
        grid-template-columns:
            repeat(2, 1fr);

        gap:
            35px 25px;
    }

    .footer-bottom {
        flex-direction: column;

        align-items: flex-start;

        gap: 8px;
    }

    .footer-divider {
        margin:
            45px 0 22px;
    }

    .footer-logo {
        font-size: 32px;
    }

    .modal-box {
        padding: 30px;
    }
}


/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media (max-width: 420px) {

    .container {
        width:
            calc(100% - 24px);
    }

    .hero-title {
        font-size:
            2.8rem;
    }

    .section-heading h2 {
        font-size:
            2.2rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .footer-status {
        font-size:
            9px;
    }

    .profile-badge {
        right: -5px;

        transform:
            scale(0.85);

        transform-origin:
            right top;
    }

    .floating-service-card {
        transform:
            scale(0.75);

        transform-origin:
            left bottom;
    }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;

        animation-duration:
            0.01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            0.01ms !important;
    }
}/* =========================================================
   FINAL PREMIUM ABOUT + CONTACT
   MATCHED TO CURRENT INDEX.HTML
   ========================================================= */


/* =========================================================
   ABOUT — PREMIUM LAYOUT
   ========================================================= */

.premium-about {
    position: relative;
    overflow: hidden;
}

.about-premium-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.08fr)
        minmax(380px, 0.92fr);

    gap: 80px;

    align-items: center;
}


/* LEFT STORY */

.about-story {
    max-width: 760px;
}

.about-label {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 25px;

    color: var(--green);

    font-size: 0.7rem;

    font-weight: 900;

    letter-spacing: 0.18em;
}

.about-line {
    width: 42px;
    height: 2px;

    background: var(--yellow);

    box-shadow:
        0 0 12px
        rgba(255,216,77,0.35);
}

.about-story h3 {
    margin-bottom: 28px;

    color: var(--white);

    font-size:
        clamp(
            2.4rem,
            4.5vw,
            4.8rem
        );

    line-height: 1;

    letter-spacing: -0.05em;
}

.about-story h3 span {
    color: var(--green);
}

.about-story p {
    margin-bottom: 20px;

    color: var(--gray);

    font-size: 1rem;

    line-height: 1.9;
}

.about-story p strong {
    color: var(--white);
}

.about-tags {
    display: flex;

    flex-wrap: wrap;

    gap: 9px;

    margin-top: 32px;
}

.about-tags span {
    padding:
        8px 13px;

    border:
        1px solid
        rgba(0,242,138,0.18);

    border-radius: 999px;

    color:
        rgba(255,255,255,0.72);

    background:
        rgba(0,242,138,0.025);

    font-size: 0.68rem;

    font-weight: 700;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease,
        background 0.3s ease;
}

.about-tags span:hover {
    transform:
        translateY(-3px);

    color: var(--black);

    background: var(--green);

    border-color: var(--green);
}


/* RIGHT PROFILE CARD */

.about-profile {
    position: relative;

    width: 100%;

    max-width: 510px;

    justify-self: end;

    padding: 14px;

    border:
        1px solid
        rgba(0,242,138,0.25);

    border-radius: 26px;

    background:
        linear-gradient(
            145deg,
            rgba(0,242,138,0.075),
            rgba(255,255,255,0.025)
        );

    box-shadow:
        0 30px 90px
        rgba(0,0,0,0.45);

    overflow: hidden;

    transition:
        transform 0.5s ease,
        border-color 0.5s ease,
        box-shadow 0.5s ease;
}

.about-profile:hover {
    transform:
        translateY(-8px);

    border-color:
        rgba(0,242,138,0.42);

    box-shadow:
        0 40px 110px
        rgba(0,0,0,0.55),
        0 0 45px
        rgba(0,242,138,0.06);
}

.about-profile-glow {
    position: absolute;

    width: 240px;
    height: 240px;

    top: -130px;
    right: -100px;

    border-radius: 50%;

    background: var(--green);

    filter: blur(80px);

    opacity: 0.12;

    pointer-events: none;
}

.about-profile-image {
    position: relative;

    width: 100%;

    aspect-ratio: 4 / 4.7;

    overflow: hidden;

    border-radius: 18px;

    background:
        #07110d;
}

.about-profile-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,0.65),
            transparent 50%
        );

    pointer-events: none;
}

.about-profile-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center top;

    transition:
        transform 0.8s ease;
}

.about-profile:hover
.about-profile-image img {
    transform:
        scale(1.035);
}

.about-profile-content {
    position: relative;

    z-index: 2;

    padding:
        24px 8px 18px;
}

.about-profile-eyebrow {
    margin-bottom: 9px;

    color: var(--yellow);

    font-size: 0.62rem;

    font-weight: 900;

    letter-spacing: 0.13em;
}

.about-profile-content h3 {
    margin-bottom: 12px;

    color: var(--white);

    font-size: 1.65rem;

    line-height: 1;
}

.about-profile-content h3 span {
    color: var(--green);
}

.about-profile-content > p:last-child {
    color: var(--gray);

    font-size: 0.82rem;

    line-height: 1.7;
}

.about-profile-footer {
    position: relative;

    z-index: 2;

    display: grid;

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

    gap: 8px;

    padding-top: 15px;

    border-top:
        1px solid
        rgba(255,255,255,0.08);
}

.about-profile-footer div {
    min-width: 0;
}

.about-profile-footer strong,
.about-profile-footer span {
    display: block;
}

.about-profile-footer strong {
    margin-bottom: 4px;

    color: var(--green);

    font-size: 0.9rem;
}

.about-profile-footer span {
    color:
        rgba(255,255,255,0.5);

    font-size: 0.55rem;

    line-height: 1.3;

    text-transform: uppercase;
}


/* =========================================================
   CONTACT — PREMIUM ACTUAL HTML STRUCTURE
   ========================================================= */

.premium-contact {
    position: relative;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 10% 30%,
            rgba(0,242,138,0.07),
            transparent 32%
        ),
        radial-gradient(
            circle at 90% 70%,
            rgba(255,216,77,0.06),
            transparent 30%
        ),
        #030906;
}

.premium-contact::before {
    content: "";

    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            rgba(0,242,138,0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(0,242,138,0.025) 1px,
            transparent 1px
        );

    background-size:
        65px 65px;

    pointer-events: none;
}

.premium-contact .container {
    position: relative;

    z-index: 2;
}


/* CONTACT HEADER */

.contact-header {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        auto;

    align-items: end;

    gap: 50px;

    margin-bottom: 65px;
}

.contact-header h2 {
    max-width: 850px;

    margin-top: 13px;

    color: var(--white);

    font-size:
        clamp(
            2.8rem,
            6vw,
            6rem
        );

    line-height: 0.96;

    letter-spacing: -0.06em;
}

.contact-header h2 span {
    display: block;

    color: var(--green);
}

.contact-intro {
    max-width: 700px;

    margin-top: 22px;

    color: var(--gray);

    font-size: 1rem;

    line-height: 1.8;
}


/* STATUS */

.contact-status {
    display: flex;

    align-items: center;

    gap: 12px;

    min-width: 170px;

    padding:
        15px 18px;

    border:
        1px solid
        rgba(0,242,138,0.2);

    border-radius: 13px;

    background:
        rgba(0,242,138,0.035);
}

.contact-status-dot {
    width: 9px;
    height: 9px;

    flex: 0 0 auto;

    border-radius: 50%;

    background: var(--green);

    box-shadow:
        0 0 15px
        rgba(0,242,138,0.8);

    animation:
        contactPulse 2s
        ease-in-out
        infinite;
}

.contact-status strong,
.contact-status small {
    display: block;
}

.contact-status strong {
    color: var(--green);

    font-size: 0.65rem;

    letter-spacing: 0.12em;
}

.contact-status small {
    margin-top: 3px;

    color: var(--gray);

    font-size: 0.55rem;

    letter-spacing: 0.08em;
}

@keyframes contactPulse {

    0%,
    100% {
        transform: scale(1);

        opacity: 0.8;
    }

    50% {
        transform: scale(1.35);

        opacity: 1;
    }
}


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

.contact-grid {
    display: grid;

    grid-template-columns:
        minmax(300px, 0.85fr)
        minmax(420px, 1.15fr);

    gap: 60px;

    align-items: start;
}


/* LEFT CONTACT INFO */

.contact-info {
    max-width: 560px;
}

.contact-label {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: var(--yellow);

    font-size: 0.65rem;

    font-weight: 900;

    letter-spacing: 0.16em;
}

.contact-info h3 {
    margin:
        14px 0 18px;

    color: var(--white);

    font-size:
        clamp(
            2rem,
            4vw,
            3.5rem
        );

    line-height: 1;

    letter-spacing: -0.04em;
}

.contact-info h3 span {
    color: var(--green);
}

.contact-info > p {
    color: var(--gray);

    font-size: 0.9rem;

    line-height: 1.8;
}


/* CONTACT METHODS */

.contact-methods {
    display: flex;

    flex-direction: column;

    gap: 12px;

    margin-top: 32px;
}

.contact-method {
    position: relative;

    display: grid;

    grid-template-columns:
        48px 1fr auto;

    align-items: center;

    gap: 14px;

    padding:
        15px 17px;

    border:
        1px solid
        rgba(255,255,255,0.08);

    border-radius: 14px;

    background:
        rgba(255,255,255,0.018);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.contact-method:hover,
.contact-method.is-hovered {
    transform:
        translateX(6px);

    border-color:
        rgba(0,242,138,0.32);

    background:
        rgba(0,242,138,0.035);

    box-shadow:
        0 15px 40px
        rgba(0,0,0,0.2);
}

.contact-method-icon {
    width: 48px;
    height: 48px;

    display: grid;

    place-items: center;

    border-radius: 11px;

    color: var(--black);

    background: var(--green);

    font-size: 0.72rem;

    font-weight: 950;
}

.contact-method:nth-child(2)
.contact-method-icon {
    background: var(--yellow);
}

.contact-method > div:nth-child(2) span {
    display: block;

    margin-bottom: 3px;

    color: var(--yellow);

    font-size: 0.58rem;

    font-weight: 900;

    letter-spacing: 0.12em;
}

.contact-method > div:nth-child(2) strong {
    color: var(--white);

    font-size: 0.82rem;
}

.contact-method > b {
    color: var(--green);

    font-size: 1rem;
}


/* =========================================================
   PROJECT FORM CARD
   ========================================================= */

.project-form-card {
    position: relative;

    padding: 32px;

    border:
        1px solid
        rgba(0,242,138,0.18);

    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            rgba(0,242,138,0.045),
            rgba(255,255,255,0.018)
        );

    box-shadow:
        0 30px 80px
        rgba(0,0,0,0.32);
}

.form-card-header {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin-bottom: 28px;

    padding-bottom: 18px;

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

.form-card-header span {
    color: var(--green);

    font-size: 0.68rem;

    font-weight: 900;

    letter-spacing: 0.15em;
}

.form-card-header small {
    color: var(--yellow);

    font-size: 0.58rem;

    font-weight: 800;

    letter-spacing: 0.12em;
}


/* FORM */

.project-form {
    display: flex;

    flex-direction: column;

    gap: 18px;
}

.form-field {
    width: 100%;
}

.form-field label {
    display: block;

    margin-bottom: 8px;

    color:
        rgba(255,255,255,0.68);

    font-size: 0.65rem;

    font-weight: 800;

    letter-spacing: 0.1em;

    text-transform: uppercase;
}

.project-form input,
.project-form select,
.project-form textarea {
    display: block;

    width: 100%;

    box-sizing: border-box;

    border:
        1px solid
        rgba(255,255,255,0.11);

    border-radius: 12px;

    outline: none;

    background:
        rgba(0,0,0,0.28);

    color: var(--white);

    font-family: inherit;

    font-size: 0.88rem;

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.project-form input,
.project-form select {
    height: 54px;

    padding:
        0 16px;
}

.project-form textarea {
    min-height: 145px;

    padding:
        15px 16px;

    resize: vertical;

    line-height: 1.6;
}

.project-form input::placeholder,
.project-form textarea::placeholder {
    color:
        rgba(255,255,255,0.28);
}

.project-form input:focus,
.project-form select:focus,
.project-form textarea:focus {
    border-color: var(--green);

    background:
        rgba(0,242,138,0.035);

    box-shadow:
        0 0 0 3px
        rgba(0,242,138,0.065);
}

.project-form select {
    cursor: pointer;

    appearance: none;
    -webkit-appearance: none;

    background-color:
        rgba(0,0,0,0.35);
}

.project-form select option {
    color: var(--white);

    background: #07110d;
}


/* FORM SUBMIT */

.project-submit {
    width: 100%;

    min-height: 55px;

    margin-top: 3px;

    border: none;

    border-radius: 12px;

    background: var(--green);

    color: #00130a;

    cursor: pointer;

    font-size: 0.72rem;

    font-weight: 900;

    letter-spacing: 0.08em;

    text-transform: uppercase;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.project-submit:hover {
    transform:
        translateY(-3px);

    background:
        #4fffb0;

    box-shadow:
        0 14px 35px
        rgba(0,242,138,0.22);
}


/* FORM STATUS */

.form-status-message {
    padding:
        12px 14px;

    border-radius: 10px;

    color: var(--white);

    background:
        rgba(0,242,138,0.05);

    border:
        1px solid
        rgba(0,242,138,0.15);

    font-size: 0.75rem;

    transition:
        opacity 0.4s ease;
}

.form-status-message[data-type="error"] {
    border-color:
        rgba(255,216,77,0.25);

    color: var(--yellow);

    background:
        rgba(255,216,77,0.04);
}


/* =========================================================
   RESPONSIVE ABOUT + CONTACT
   ========================================================= */

@media (max-width: 950px) {

    .about-premium-grid {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .about-profile {
        justify-self: center;

        max-width: 560px;
    }

    .contact-header {
        grid-template-columns: 1fr;

        gap: 25px;

        align-items: start;
    }

    .contact-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

}


@media (max-width: 650px) {

    .about-story h3 {
        font-size: 2.5rem;
    }

    .about-profile {
        padding: 10px;

        border-radius: 20px;
    }

    .about-profile-content {
        padding:
            20px 7px 15px;
    }

    .about-profile-footer {
        gap: 5px;
    }

    .about-profile-footer span {
        font-size: 0.48rem;
    }

    .contact-header h2 {
        font-size: 3rem;
    }

    .contact-grid {
        gap: 35px;
    }

    .project-form-card {
        padding: 22px 18px;

        border-radius: 18px;
    }

    .form-card-header {
        align-items: flex-start;

        flex-direction: column;

        gap: 7px;
    }

    .contact-method {
        grid-template-columns:
            42px 1fr auto;

        gap: 10px;

        padding:
            12px;
    }

    .contact-method-icon {
        width: 42px;
        height: 42px;
    }

}/* =========================================================
   FINAL PREMIUM FIX
   EXPERIENCE • SKILLS • SERVICES • SOCIAL LINKS
   MATCHED TO CURRENT INDEX.HTML
   ========================================================= */


/* =========================================================
   EXPERIENCE / JOURNEY
   ========================================================= */

.journey {
    position: relative;
}

.journey-list,
.journey {
    width: 100%;
}

.journey-item {
    position: relative;

    display: grid;

    grid-template-columns:
        76px
        1fr;

    column-gap: 30px;

    margin-bottom: 30px;
}

.journey-marker {
    position: relative;

    z-index: 3;

    width: 56px;
    height: 56px;

    display: grid;

    place-items: center;

    border:
        1px solid
        rgba(0,242,138,0.38);

    border-radius: 50%;

    background:
        #06120d;

    box-shadow:
        0 0 0 8px
        rgba(0,242,138,0.035),
        0 12px 30px
        rgba(0,0,0,0.3);
}

.journey-marker span {
    color: var(--green);

    font-size: 0.75rem;

    font-weight: 950;

    letter-spacing: 0.08em;
}

.journey-line {
    position: absolute;

    left: 28px;

    top: 56px;

    bottom: -30px;

    width: 1px;

    background:
        linear-gradient(
            to bottom,
            rgba(0,242,138,0.35),
            rgba(0,242,138,0.03)
        );
}

.journey-item:last-child
.journey-line {
    display: none;
}


/* JOURNEY CARD */

.journey-card {
    position: relative;

    min-width: 0;

    padding: 30px 32px;

    border:
        1px solid
        rgba(255,255,255,0.08);

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.035),
            rgba(255,255,255,0.012)
        );

    box-shadow:
        0 20px 55px
        rgba(0,0,0,0.22);

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
}

.journey-card:hover {
    transform:
        translateX(7px);

    border-color:
        rgba(0,242,138,0.3);

    background:
        linear-gradient(
            145deg,
            rgba(0,242,138,0.055),
            rgba(255,255,255,0.015)
        );

    box-shadow:
        0 28px 65px
        rgba(0,0,0,0.3);
}

.journey-highlight {
    border-color:
        rgba(0,242,138,0.25);

    background:
        linear-gradient(
            145deg,
            rgba(0,242,138,0.065),
            rgba(255,216,77,0.018)
        );
}

.journey-top {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin-bottom: 18px;
}

.journey-year {
    color: var(--yellow);

    font-size: 0.68rem;

    font-weight: 900;

    letter-spacing: 0.12em;
}

.journey-type {
    padding:
        7px 11px;

    border:
        1px solid
        rgba(0,242,138,0.17);

    border-radius: 999px;

    color: var(--green);

    background:
        rgba(0,242,138,0.035);

    font-size: 0.55rem;

    font-weight: 900;

    letter-spacing: 0.1em;
}

.journey-card h3 {
    margin-bottom: 13px;

    color: var(--white);

    font-size:
        clamp(
            1.25rem,
            2vw,
            1.75rem
        );

    line-height: 1.15;

    letter-spacing: -0.025em;
}

.journey-card p {
    max-width: 900px;

    color: var(--gray);

    font-size: 0.88rem;

    line-height: 1.8;
}

.journey-tags {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin-top: 20px;
}

.journey-tags span {
    padding:
        6px 10px;

    border-radius: 999px;

    border:
        1px solid
        rgba(255,255,255,0.08);

    color:
        rgba(255,255,255,0.52);

    font-size: 0.54rem;

    font-weight: 800;

    letter-spacing: 0.07em;
}

.journey-status {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-top: 22px;

    color: var(--green);

    font-size: 0.58rem;

    font-weight: 900;

    letter-spacing: 0.08em;
}

.journey-status .status-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--green);

    box-shadow:
        0 0 12px
        rgba(0,242,138,0.8);
}


/* EXPERIENCE FOOTER */

.journey-footer {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    margin-top: 65px;

    padding:
        28px 30px;

    border:
        1px solid
        rgba(0,242,138,0.12);

    border-radius: 18px;

    background:
        rgba(0,242,138,0.025);
}

.journey-footer > div > span {
    color: var(--yellow);

    font-size: 0.58rem;

    font-weight: 900;

    letter-spacing: 0.14em;
}

.journey-footer h3 {
    margin-top: 8px;

    color: var(--white);

    font-size:
        clamp(
            1.2rem,
            2vw,
            1.8rem
        );
}

.journey-footer h3 strong {
    color: var(--green);
}

.journey-button {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding:
        13px 19px;

    border:
        1px solid
        rgba(0,242,138,0.25);

    border-radius: 10px;

    color: var(--green);

    background:
        rgba(0,242,138,0.04);

    font-size: 0.68rem;

    font-weight: 900;

    white-space: nowrap;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.journey-button:hover {
    color: #00130a;

    background: var(--green);

    transform:
        translateY(-3px);
}


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

.premium-skills {
    position: relative;

    overflow: hidden;

    background:
        #030906;
}

.skills-background {
    position: absolute;

    inset: 0;

    pointer-events: none;

    overflow: hidden;
}

.skills-glow {
    position: absolute;

    width: 400px;
    height: 400px;

    border-radius: 50%;

    filter: blur(100px);

    opacity: 0.07;
}

.skills-glow-one {
    top: -180px;
    left: -120px;

    background: var(--green);
}

.skills-glow-two {
    right: -150px;
    bottom: -180px;

    background: var(--yellow);
}

.skills-grid-pattern {
    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            rgba(0,242,138,0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(0,242,138,0.025) 1px,
            transparent 1px
        );

    background-size:
        60px 60px;
}

.premium-skills .container {
    position: relative;

    z-index: 2;
}

.premium-skills-grid {
    display: grid;

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

    gap: 18px;
}

.premium-skill-card {
    position: relative;

    min-width: 0;

    min-height: 315px;

    display: flex;

    flex-direction: column;

    padding: 25px;

    border:
        1px solid
        rgba(255,255,255,0.08);

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.035),
            rgba(255,255,255,0.012)
        );

    box-shadow:
        0 18px 50px
        rgba(0,0,0,0.2);

    overflow: hidden;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.premium-skill-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--green),
            transparent
        );

    opacity: 0.55;
}

.premium-skill-card:hover {
    transform:
        translateY(-8px);

    border-color:
        rgba(0,242,138,0.28);

    box-shadow:
        0 30px 65px
        rgba(0,0,0,0.32);
}

.skill-top {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 27px;
}

.skill-number {
    color:
        rgba(255,255,255,0.3);

    font-size: 0.62rem;

    font-weight: 900;

    letter-spacing: 0.1em;
}

.skill-icon {
    width: 48px;
    height: 48px;

    display: grid;

    place-items: center;

    border:
        1px solid
        rgba(0,242,138,0.2);

    border-radius: 12px;

    color: var(--green);

    background:
        rgba(0,242,138,0.035);

    font-size: 0.7rem;

    font-weight: 950;
}

.premium-skill-card h3 {
    margin-bottom: 12px;

    color: var(--white);

    font-size: 1.1rem;

    line-height: 1.2;
}

.premium-skill-card p {
    color: var(--gray);

    font-size: 0.77rem;

    line-height: 1.7;
}

.skill-bar {
    width: 100%;

    height: 4px;

    margin-top: auto;

    margin-bottom: 10px;

    overflow: hidden;

    border-radius: 999px;

    background:
        rgba(255,255,255,0.07);
}

.skill-bar span {
    display: block;

    width:
        var(--skill-level, 0%);

    height: 100%;

    border-radius: inherit;

    background:
        linear-gradient(
            90deg,
            var(--green),
            var(--yellow)
        );

    box-shadow:
        0 0 12px
        rgba(0,242,138,0.35);

    transform-origin: left;

    animation:
        skillGrow 1.3s
        ease-out both;
}

@keyframes skillGrow {

    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }

}

.skill-meta {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;
}

.skill-meta span {
    color:
        rgba(255,255,255,0.38);

    font-size: 0.54rem;

    font-weight: 700;
}

.skill-meta strong {
    color: var(--green);

    font-size: 0.62rem;
}


/* =========================================================
   PREMIUM SERVICES
   ========================================================= */

.services-section {
    position: relative;

    overflow: hidden;
}

.premium-services-grid {
    display: grid;

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

    gap: 20px;
}

.premium-service-card {
    position: relative;

    min-width: 0;

    min-height: 370px;

    display: flex;

    flex-direction: column;

    padding: 28px;

    border:
        1px solid
        rgba(0,0,0,0.09);

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f5f8f6
        );

    box-shadow:
        0 18px 55px
        rgba(0,0,0,0.08);

    overflow: hidden;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.premium-service-card::after {
    content: "";

    position: absolute;

    right: -80px;
    bottom: -90px;

    width: 220px;
    height: 220px;

    border-radius: 50%;

    background:
        var(--green);

    opacity: 0.035;

    pointer-events: none;
}

.premium-service-card:hover {
    transform:
        translateY(-8px);

    border-color:
        rgba(0,150,80,0.22);

    box-shadow:
        0 30px 75px
        rgba(0,0,0,0.13);
}

.service-card-top {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 28px;
}

.service-number {
    color:
        rgba(0,0,0,0.28);

    font-size: 0.65rem;

    font-weight: 950;

    letter-spacing: 0.1em;
}

.service-icon {
    width: 48px;
    height: 48px;

    display: grid;

    place-items: center;

    border-radius: 12px;

    color: #00130a;

    background:
        var(--green);

    font-size: 0.68rem;

    font-weight: 950;

    box-shadow:
        0 10px 25px
        rgba(0,150,80,0.15);
}

.service-label {
    margin-bottom: 10px;

    color:
        #138651;

    font-size: 0.58rem;

    font-weight: 950;

    letter-spacing: 0.13em;
}

.premium-service-card h3 {
    margin-bottom: 13px;

    color:
        #07110d;

    font-size: 1.35rem;

    line-height: 1.15;

    letter-spacing: -0.025em;
}

.premium-service-card p {
    color:
        rgba(7,17,13,0.62);

    font-size: 0.8rem;

    line-height: 1.75;
}

.service-features {
    display: flex;

    flex-wrap: wrap;

    gap: 7px;

    margin-top: 22px;
}

.service-features span {
    padding:
        6px 9px;

    border:
        1px solid
        rgba(0,0,0,0.08);

    border-radius: 999px;

    color:
        rgba(7,17,13,0.55);

    background:
        rgba(0,0,0,0.02);

    font-size: 0.53rem;

    font-weight: 800;
}

.service-link {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    margin-top: auto;

    padding-top: 22px;

    color:
        #087b49;

    font-size: 0.67rem;

    font-weight: 950;

    border-top:
        1px solid
        rgba(0,0,0,0.07);

    transition:
        color 0.25s ease,
        padding-left 0.25s ease;
}

.service-link span {
    font-size: 1rem;
}

.service-link:hover {
    color:
        #005c35;

    padding-left: 5px;
}


/* =========================================================
   CONTACT SOCIAL LINKS
   ========================================================= */

.contact-social-area {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    align-items: end;

    gap: 50px;

    margin-top: 75px;

    padding-top: 42px;

    border-top:
        1px solid
        rgba(255,255,255,0.08);
}

.contact-social-area > div:first-child > span {
    color: var(--yellow);

    font-size: 0.6rem;

    font-weight: 900;

    letter-spacing: 0.14em;
}

.contact-social-area h3 {
    margin-top: 10px;

    color: var(--white);

    font-size:
        clamp(
            1.7rem,
            3vw,
            2.7rem
        );

    line-height: 1;
}

.contact-social-area h3 strong {
    color: var(--green);
}

.premium-social-links {
    display: grid;

    grid-template-columns:
        repeat(5, minmax(0, 1fr));

    gap: 8px;
}

.premium-social-links a {
    display: flex;

    flex-direction: column;

    justify-content: space-between;

    min-height: 82px;

    padding:
        13px;

    border:
        1px solid
        rgba(255,255,255,0.08);

    border-radius: 12px;

    color: var(--white);

    background:
        rgba(255,255,255,0.018);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

.premium-social-links a:hover {
    transform:
        translateY(-5px);

    border-color:
        rgba(0,242,138,0.3);

    background:
        rgba(0,242,138,0.045);
}

.premium-social-links a span {
    color:
        rgba(255,255,255,0.3);

    font-size: 0.5rem;

    font-weight: 900;
}

.premium-social-links a {
    font-size: 0.65rem;

    font-weight: 800;
}

.premium-social-links a b {
    align-self: flex-end;

    color: var(--green);

    font-size: 0.85rem;
}


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

@media (max-width: 1100px) {

    .premium-skills-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .premium-services-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .contact-social-area {
        grid-template-columns: 1fr;
    }

    .premium-social-links {
        grid-template-columns:
            repeat(5, minmax(0, 1fr));
    }

}


@media (max-width: 800px) {

    .journey-item {
        grid-template-columns:
            55px
            1fr;

        column-gap: 18px;
    }

    .journey-marker {
        width: 46px;
        height: 46px;
    }

    .journey-line {
        left: 22px;

        top: 46px;
    }

    .journey-card {
        padding: 23px 20px;
    }

    .journey-top {
        align-items: flex-start;

        flex-direction: column;

        gap: 9px;
    }

    .journey-footer {
        align-items: flex-start;

        flex-direction: column;
    }

}


@media (max-width: 600px) {

    .premium-skills-grid,
    .premium-services-grid {
        grid-template-columns: 1fr;
    }

    .premium-skill-card {
        min-height: 290px;
    }

    .premium-service-card {
        min-height: 340px;
    }

    .premium-social-links {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .premium-social-links a:last-child {
        grid-column: 1 / -1;
    }

}/* =========================================================
   FINAL LAYOUT POLISH
   CV • WEBSITE TEXT • CONTACT FOOTER
   ========================================================= */


/* =========================================================
   1. PREVENT HORIZONTAL OVERFLOW
   ========================================================= */

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}


/* =========================================================
   2. PREMIUM CV — KEEP EVERYTHING TOGETHER
   ========================================================= */

.cv-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.premium-cv {
    position: relative;
}

.cv-section .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.cv-premium-card {
    width: 100%;
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 0.95fr);

    align-items: center;

    gap: 55px;

    padding: 55px;

    box-sizing: border-box;

    border:
        1px solid
        rgba(0,242,138,0.15);

    border-radius: 28px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.035),
            rgba(255,255,255,0.012)
        );

    box-shadow:
        0 30px 90px
        rgba(0,0,0,0.28);

    overflow: hidden;
}


/* LEFT CV SIDE */

.cv-profile-content {
    min-width: 0;
    width: 100%;
}

.cv-kicker {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 18px;

    color: var(--green);

    font-size: 0.62rem;

    font-weight: 900;

    letter-spacing: 0.12em;
}

.cv-live-dot {
    width: 7px;
    height: 7px;

    flex: 0 0 7px;

    border-radius: 50%;

    background: var(--green);

    box-shadow:
        0 0 12px
        rgba(0,242,138,0.75);
}

.cv-profile-content h2 {
    margin: 0 0 18px;

    max-width: 100%;

    color: var(--white);

    font-size:
        clamp(
            2rem,
            4vw,
            4rem
        );

    line-height: 0.98;

    letter-spacing: -0.045em;

    overflow-wrap: break-word;
}

.cv-profile-content h2 span {
    color: var(--green);
}

.cv-description {
    max-width: 600px;

    margin-bottom: 30px;

    color: var(--gray);

    font-size: 0.9rem;

    line-height: 1.8;
}


/* CV HIGHLIGHTS */

.cv-highlights {
    display: grid;

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

    gap: 10px;

    width: 100%;

    margin-bottom: 28px;
}

.cv-highlight {
    min-width: 0;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 14px;

    border:
        1px solid
        rgba(255,255,255,0.07);

    border-radius: 12px;

    background:
        rgba(255,255,255,0.018);
}

.cv-highlight > span {
    color: var(--yellow);

    font-size: 0.55rem;

    font-weight: 900;
}

.cv-highlight strong {
    display: block;

    color: var(--white);

    font-size: 0.65rem;

    font-weight: 850;
}

.cv-highlight small {
    display: block;

    margin-top: 3px;

    color:
        rgba(255,255,255,0.38);

    font-size: 0.5rem;

    line-height: 1.3;
}


/* CV BUTTONS */

.cv-actions {
    display: flex;

    flex-wrap: wrap;

    align-items: center;

    gap: 10px;

    width: 100%;
}

.cv-primary-button,
.cv-secondary-button {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    min-height: 46px;

    padding:
        12px 18px;

    box-sizing: border-box;

    border-radius: 10px;

    font-size: 0.65rem;

    font-weight: 900;

    text-decoration: none;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease;
}

.cv-primary-button {
    color: #00130a;

    background: var(--green);

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

.cv-secondary-button {
    color: var(--white);

    background:
        rgba(255,255,255,0.025);

    border:
        1px solid
        rgba(255,255,255,0.12);
}

.cv-primary-button:hover,
.cv-secondary-button:hover {
    transform:
        translateY(-3px);
}

.cv-secondary-button:hover {
    border-color:
        rgba(0,242,138,0.35);

    color: var(--green);
}


/* =========================================================
   3. CV DOCUMENT — STOP CONTENT FROM ESCAPING
   ========================================================= */

.cv-visual {
    position: relative;

    min-width: 0;

    width: 100%;

    display: flex;

    align-items: center;

    justify-content: center;
}

.cv-document {
    position: relative;

    width: 100%;

    max-width: 480px;

    min-width: 0;

    box-sizing: border-box;

    overflow: hidden;

    border-radius: 18px;
}

.cv-document-top,
.cv-document-profile,
.cv-document-lines,
.cv-document-tags,
.cv-document-footer {
    max-width: 100%;

    box-sizing: border-box;
}

.cv-document-footer {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    flex-wrap: wrap;
}

.cv-document-footer span,
.cv-document-footer strong {
    min-width: 0;

    max-width: 100%;

    overflow-wrap: anywhere;

    word-break: break-word;
}

.cv-document-footer strong {
    text-align: right;
}


/* =========================================================
   4. BANGISKEBBI.COM — NEVER CLIP THE .COM
   ========================================================= */

.visual-code {
    max-width: calc(100% - 40px);

    min-width: 0;

    box-sizing: border-box;

    overflow: visible;

    text-align: center;
}

.visual-code strong {
    display: block;

    width: 100%;

    max-width: 100%;

    box-sizing: border-box;

    white-space: normal;

    overflow-wrap: anywhere;

    word-break: break-word;

    font-size:
        clamp(
            1rem,
            2vw,
            1.45rem
        );

    line-height: 1.1;
}

.visual-code small {
    display: block;

    max-width: 100%;

    margin-top: 8px;

    overflow-wrap: break-word;
}


/* PROJECT CONTENT WEBSITE TITLE */

.project-content {
    min-width: 0;
}

.project-content h3 {
    max-width: 100%;

    overflow-wrap: anywhere;

    word-break: break-word;
}


/* =========================================================
   5. CONTACT FINAL — CLEAN, FULL WIDTH
   ========================================================= */

.contact-final {
    width: 100%;

    max-width: 1000px;

    margin:
        70px auto 0;

    padding:
        35px 20px;

    box-sizing: border-box;

    text-align: center;

    overflow: hidden;
}

.contact-final > span {
    display: block;

    max-width: 100%;

    overflow-wrap: anywhere;

    word-break: break-word;

    color:
        rgba(255,255,255,0.72);

    font-size: 0.75rem;

    font-weight: 800;

    letter-spacing: 0.08em;
}

.contact-final h3 {
    margin:
        12px 0;

    max-width: 100%;

    color: var(--white);

    font-size:
        clamp(
            1.5rem,
            3vw,
            2.5rem
        );

    line-height: 1.1;

    overflow-wrap: break-word;
}

.contact-final h3 span {
    color: var(--green);
}

.contact-final p {
    max-width: 100%;

    color: var(--gray);

    font-size: 0.8rem;

    line-height: 1.6;
}


/* =========================================================
   6. SOCIAL AREA — KEEP IT BALANCED
   ========================================================= */

.contact-social-area {
    width: 100%;

    max-width: 1200px;

    margin-left: auto;
    margin-right: auto;

    box-sizing: border-box;
}

.contact-social-area > div {
    min-width: 0;
}

.contact-social-area h3 {
    max-width: 100%;

    overflow-wrap: break-word;
}


/* =========================================================
   7. HIDE OLD DUPLICATE FOOTER
   ========================================================= */

/*
   Your HTML currently contains:
   1. .site-footer = NEW PREMIUM FOOTER
   2. plain <footer> = OLD FOOTER

   Keep only the premium footer visually.
*/

.site-footer {
    display: block;
}

body > footer:not(.site-footer) {
    display: none !important;
}


/* =========================================================
   8. PREMIUM FOOTER
   ========================================================= */

.site-footer {
    width: 100%;

    margin-top: 0;

    box-sizing: border-box;

    padding:
        70px 0 25px;

    border-top:
        1px solid
        rgba(255,255,255,0.07);

    background:
        #020604;

    overflow: hidden;
}

.site-footer .container {
    width: 100%;

    max-width: 1200px;

    margin: 0 auto;

    box-sizing: border-box;
}

.footer-main {
    display: grid;

    grid-template-columns:
        minmax(240px, 0.8fr)
        minmax(0, 1.4fr);

    gap: 70px;

    align-items: start;
}

.footer-brand {
    min-width: 0;
}

.footer-logo {
    display: inline-block;

    color: var(--white);

    font-size: 1.6rem;

    font-weight: 950;

    letter-spacing: -0.04em;

    text-decoration: none;
}

.footer-logo span {
    color: var(--green);
}

.footer-brand p {
    max-width: 330px;

    margin:
        14px 0 20px;

    color: var(--gray);

    font-size: 0.75rem;

    line-height: 1.7;
}

.footer-status {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: var(--green);

    font-size: 0.55rem;

    font-weight: 800;
}

.footer-status i {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: var(--green);

    box-shadow:
        0 0 10px
        rgba(0,242,138,0.7);
}

.footer-links {
    display: grid;

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

    gap: 30px;
}

.footer-column {
    min-width: 0;
}

.footer-column h3 {
    margin-bottom: 17px;

    color: var(--white);

    font-size: 0.65rem;

    font-weight: 900;

    letter-spacing: 0.08em;
}

.footer-column a {
    display: block;

    width: fit-content;

    margin-bottom: 11px;

    color:
        rgba(255,255,255,0.45);

    font-size: 0.62rem;

    text-decoration: none;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.footer-column a:hover {
    color: var(--green);

    transform:
        translateX(3px);
}

.footer-divider {
    width: 100%;

    height: 1px;

    margin:
        45px 0 20px;

    background:
        rgba(255,255,255,0.07);
}

.footer-bottom {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    flex-wrap: wrap;
}

.footer-bottom p {
    margin: 0;

    color:
        rgba(255,255,255,0.32);

    font-size: 0.55rem;
}

.footer-heart {
    color: var(--green);
}


/* =========================================================
   9. MOBILE
   ========================================================= */

@media (max-width: 900px) {

    .cv-premium-card {
        grid-template-columns: 1fr;

        gap: 40px;

        padding: 35px;
    }

    .cv-visual {
        order: 2;
    }

    .cv-profile-content {
        order: 1;
    }

    .premium-social-links {
        width: 100%;
    }

    .footer-main {
        grid-template-columns: 1fr;

        gap: 40px;
    }

}


@media (max-width: 650px) {

    .cv-premium-card {
        padding: 25px 18px;

        border-radius: 20px;
    }

    .cv-highlights {
        grid-template-columns: 1fr;
    }

    .cv-highlight {
        width: 100%;
    }

    .cv-actions {
        flex-direction: column;

        align-items: stretch;
    }

    .cv-primary-button,
    .cv-secondary-button {
        width: 100%;
    }

    .cv-document {
        width: 100%;
    }

    .cv-document-footer {
        align-items: flex-start;

        flex-direction: column;
    }

    .cv-document-footer strong {
        text-align: left;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom {
        align-items: flex-start;

        flex-direction: column;
    }

}


@media (max-width: 420px) {

    .footer-links {
        grid-template-columns: 1fr;
    }

    .contact-final {
        padding-left: 10px;
        padding-right: 10px;
    }

}/* =========================================================
   FINAL 2 FIXES
   SERVICES DARK PREMIUM + PROJECT WEBSITE TEXT
   ========================================================= */


/* =========================================================
   1. SERVICES — RESTORE DARK PREMIUM CARDS
   ========================================================= */

.services-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.service-card {
    position: relative;

    min-width: 0;

    box-sizing: border-box;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            rgba(8, 35, 25, 0.96),
            rgba(3, 16, 12, 0.98)
        ) !important;

    color: #ffffff !important;

    border:
        1px solid
        rgba(0, 242, 138, 0.16) !important;

    border-radius: 26px;

    box-shadow:
        0 25px 70px
        rgba(0, 0, 0, 0.28);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);

    border-color:
        rgba(0, 242, 138, 0.38) !important;

    box-shadow:
        0 30px 80px
        rgba(0, 242, 138, 0.08);
}


/* SERVICE NUMBER */

.service-card > span:first-child {
    color: #ffd928 !important;
}


/* SERVICE CATEGORY */

.service-card h3 {
    color: #ffffff !important;
}


/* SERVICE DESCRIPTION */

.service-card p {
    color:
        rgba(255,255,255,0.62) !important;

    line-height: 1.75;
}


/* SERVICE ICON */

.service-card .service-icon,
.service-card .service-card-icon {
    background:
        rgba(0, 242, 138, 0.08) !important;

    border:
        1px solid
        rgba(0, 242, 138, 0.30) !important;

    color: #00f28a !important;
}


/* SERVICE TAGS */

.service-card .service-tags span,
.service-card .service-tag {
    background:
        rgba(255,255,255,0.035) !important;

    color:
        rgba(255,255,255,0.58) !important;

    border:
        1px solid
        rgba(255,255,255,0.10) !important;
}


/* =========================================================
   2. PROJECT VISUAL — KEEP BANGISKEBBI.COM FULLY VISIBLE
   ========================================================= */

.project-visual {
    position: relative;

    overflow: hidden;

    min-width: 0;
}


/*
   Give the central website identity enough room.
*/

.visual-code {
    position: absolute;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%, -50%);

    width: calc(100% - 70px);

    max-width: 380px;

    min-width: 0;

    box-sizing: border-box;

    text-align: center;

    overflow: visible;

    z-index: 5;
}


/*
   IMPORTANT:
   Smaller font prevents ".COM" from touching
   the corner/edge of the project visual.
*/

.visual-code strong {
    display: block;

    width: 100%;

    max-width: 100%;

    box-sizing: border-box;

    color: #ffffff;

    font-size:
        clamp(
            0.85rem,
            1.7vw,
            1.25rem
        ) !important;

    line-height: 1.15;

    letter-spacing:
        0.015em;

    white-space: nowrap;

    overflow: visible;

    text-align: center;
}


/* PROJECT SUBTITLE */

.visual-code small {
    display: block;

    margin-top: 9px;

    max-width: 100%;

    color:
        rgba(255,255,255,0.48);

    font-size: 0.52rem;

    letter-spacing: 0.12em;

    white-space: nowrap;
}


/* =========================================================
   3. EXTRA PROTECTION FOR SMALL SCREENS
   ========================================================= */

@media (max-width: 900px) {

    .services-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 20px;
    }

    .visual-code {
        width: calc(100% - 45px);

        max-width: 320px;
    }

    .visual-code strong {
        font-size:
            clamp(
                0.75rem,
                3vw,
                1.1rem
            ) !important;
    }
}


@media (max-width: 650px) {

    .services-grid {
        grid-template-columns: 1fr;
    }

    .visual-code {
        width: calc(100% - 30px);
    }

    .visual-code strong {
        font-size: 0.82rem !important;

        letter-spacing: 0;
    }

    .visual-code small {
        font-size: 0.45rem;
    }
}/* =========================================================
   FINAL SERVICES COLOR OVERRIDE
   FORCE SERVICES CARDS BACK TO DARK PREMIUM STYLE
   ========================================================= */

#services .service-card {
    background: #06140f !important;
    background-color: #06140f !important;

    color: #ffffff !important;

    border: 1px solid rgba(0, 242, 138, 0.20) !important;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.35) !important;
}


/* Remove any white overlay/background */

#services .service-card::before,
#services .service-card::after {
    background: transparent !important;
    background-color: transparent !important;
}


/* Keep the card content white */

#services .service-card h3 {
    color: #ffffff !important;
}

#services .service-card p {
    color: rgba(255, 255, 255, 0.65) !important;
}


/* Number */

#services .service-card > span:first-child {
    color: #ffd928 !important;
}


/* Category/title labels */

#services .service-card .service-category,
#services .service-card .service-label {
    color: #00f28a !important;
}


/* Any icon inside the card */

#services .service-card .service-icon,
#services .service-card .service-card-icon {
    background: rgba(0, 242, 138, 0.08) !important;

    color: #00f28a !important;

    border-color:
        rgba(0, 242, 138, 0.30) !important;
}


/* Hover */

#services .service-card:hover {
    background: #081b14 !important;

    border-color:
        rgba(0, 242, 138, 0.45) !important;

    transform: translateY(-6px);
}


/* =========================================================
   SERVICES SECTION BACKGROUND
   ========================================================= */

#services {
    background:
        radial-gradient(
            circle at 15% 50%,
            rgba(75, 180, 35, 0.10),
            transparent 35%
        ),
        #020907 !important;
}/* =========================================================
   FINAL PREMIUM SERVICES CARD COLOR
   CORRECT CLASS: premium-service-card
   ========================================================= */

#services.services-section {
    background: #020907 !important;
}


/* SERVICES GRID */

#services .premium-services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}


/* PREMIUM SERVICE CARDS */

#services .premium-services-grid .premium-service-card {
    position: relative;
    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #0a2118 0%,
            #06140f 55%,
            #030b08 100%
        ) !important;

    background-color: #06140f !important;

    color: #ffffff !important;

    border:
        1px solid
        rgba(0, 242, 138, 0.20) !important;

    border-radius: 26px !important;

    box-shadow:
        0 25px 70px
        rgba(0, 0, 0, 0.35) !important;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}


/* REMOVE ANY WHITE OVERLAY */

#services .premium-service-card::before,
#services .premium-service-card::after {
    background: transparent !important;
    background-color: transparent !important;
}


/* TOP AREA */

#services .premium-service-card .service-card-top {
    background: transparent !important;
}


/* NUMBERS */

#services .premium-service-card .service-number {
    color: #ffd928 !important;
}


/* ICON */

#services .premium-service-card .service-icon {
    background:
        rgba(0, 242, 138, 0.10) !important;

    color: #00f28a !important;

    border:
        1px solid
        rgba(0, 242, 138, 0.30) !important;

    box-shadow:
        0 10px 30px
        rgba(0, 242, 138, 0.08);
}


/* SERVICE LABEL */

#services .premium-service-card .service-label {
    color: #00f28a !important;
}


/* TITLE */

#services .premium-service-card h3 {
    color: #ffffff !important;
}


/* DESCRIPTION */

#services .premium-service-card p {
    color:
        rgba(255,255,255,0.64) !important;
}


/* FEATURES / TAGS */

#services .premium-service-card .service-features span {
    background:
        rgba(255,255,255,0.035) !important;

    color:
        rgba(255,255,255,0.62) !important;

    border:
        1px solid
        rgba(255,255,255,0.10) !important;
}


/* DIVIDER */

#services .premium-service-card .service-features {
    border-color:
        rgba(255,255,255,0.10) !important;
}


/* LINK */

#services .premium-service-card .service-link {
    color: #00f28a !important;
}


/* HOVER */

#services .premium-service-card:hover {
    background:
        linear-gradient(
            145deg,
            #0d2a1f 0%,
            #071a13 55%,
            #030b08 100%
        ) !important;

    border-color:
        rgba(0, 242, 138, 0.45) !important;

    transform:
        translateY(-8px);

    box-shadow:
        0 30px 80px
        rgba(0, 242, 138, 0.08) !important;
}


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

@media (max-width: 900px) {

    #services .premium-services-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}


@media (max-width: 650px) {

    #services .premium-services-grid {
        grid-template-columns: 1fr;
    }
}/* =========================================================
   PREMIUM SOCIAL + CONTACT ICONS
   ========================================================= */
 
.contact-method-icon {
    display: grid !important;
    place-items: center !important;
}

.contact-method-icon svg {
    width: 22px;
    height: 22px;

    display: block;

    fill: currentColor;
}
   

/* SOCIAL ICON */

.premium-social-links .social-icon {
    width: 34px;
    height: 34px;

    display: grid;

    place-items: center;

    margin-bottom: 10px;

    color: var(--green);

    background:
        rgba(0,242,138,0.06);

    border:
        1px solid
        rgba(0,242,138,0.16);

    border-radius: 9px;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}

.premium-social-links .social-icon svg {
    width: 17px;
    height: 17px;

    fill: currentColor;
}

.premium-social-links a:hover .social-icon {
    transform:
        translateY(-2px);

    color: #00130a;

    background:
        var(--green);
}/* =========================================================
   TELEGRAM — 6 SOCIAL CARDS
   ========================================================= */

.premium-social-links {
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
}

@media (max-width: 1100px) {

    .premium-social-links {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

}

@media (max-width: 650px) {

    .premium-social-links {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}/* =========================================
   SKILLS TECHNOLOGY VISUAL
========================================= */

.skills-tech-visual {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 50px;
    align-items: center;
    margin-top: 70px;
    padding: 28px;
    border: 1px solid rgba(0, 242, 138, 0.22);
    border-radius: 28px;
    background: rgba(4, 18, 13, 0.72);
    overflow: hidden;
    position: relative;
}

.skills-tech-visual::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    right: -120px;
    bottom: -150px;
    border-radius: 50%;
    background: rgba(0, 242, 138, 0.08);
    pointer-events: none;
}

.skills-tech-image-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 242, 138, 0.25);
    background: #06130b;
}

.skills-tech-image {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.skills-tech-image-wrap:hover .skills-tech-image {
    transform: scale(1.025);
}

.skills-tech-content {
    position: relative;
    z-index: 2;
}

.skills-tech-content h3 {
    margin: 12px 0 18px;
    font-size: clamp(28px, 3vw, 46px);
    line-height: 1.05;
}

.skills-tech-content h3 span {
    color: #00f28a;
}

.skills-tech-content p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.8;
    max-width: 520px;
}


/* MOBILE */

@media (max-width: 900px) {

    .skills-tech-visual {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 50px;
        padding: 20px;
    }

    .skills-tech-content h3 {
        font-size: 32px;
    }

}


@media (max-width: 650px) {

    .skills-tech-visual {
        border-radius: 20px;
        padding: 15px;
    }

    .skills-tech-image {
        aspect-ratio: 16 / 10;
    }

}/* =========================================
   PROJECT IMAGE
========================================= */

.project-image-wrap {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    border-radius: inherit;
}

.project-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.78;
    transition: transform 0.45s ease, opacity 0.45s ease;
}

.project-card:hover .project-image {
    transform: scale(1.035);
    opacity: 0.9;
}

/* Keep project overlays above the image */

.project-visual .visual-grid,
.project-visual .visual-orbit,
.project-visual .visual-code,
.project-visual .project-index {
    z-index: 2;
}