/* =========================================================
   SARIM ASIM PORTFOLIO
   LIGHT PREMIUM THEME
========================================================= */

:root {

    --orange: #f97316;
    --orange-dark: #ea580c;
    --orange-light: #fb923c;

    --dark: #111827;
    --dark-soft: #374151;

    --text: #18202d;
    --text-soft: #64748b;

    --white: #ffffff;
    --background: #f7f8fc;

    --glass: rgba(255, 255, 255, 0.70);
    --glass-strong: rgba(255, 255, 255, 0.86);

    --border: rgba(255, 255, 255, 0.85);
    --border-dark: rgba(15, 23, 42, 0.08);

    --shadow:
        0 20px 60px rgba(15, 23, 42, 0.08);

    --shadow-hover:
        0 30px 80px rgba(15, 23, 42, 0.14);

    --radius: 28px;

    --container: 1400px;

}


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

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
    scrollbar-width: thin;
    scrollbar-color: var(--orange) #fff7ed;
}

html::-webkit-scrollbar {
    width: 15px;
}

html::-webkit-scrollbar-track {
    background: linear-gradient(180deg, #fff7ed, #f8fafc);
    border-left: 1px solid rgba(249,115,22,.10);
}

html::-webkit-scrollbar-thumb {
    min-height: 60px;
    background: linear-gradient(180deg, #fb923c, #f97316, #ea580c);
    background-clip: padding-box;
    border: 4px solid transparent;
    border-radius: 999px;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.38);
}

html::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #fdba74, #f97316, #c2410c);
    background-clip: padding-box;
}

body {

    font-family: "Poppins", sans-serif;

    color: var(--text);

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,0.72),
            rgba(247,248,252,0.94)
        );

    min-height: 100vh;

    overflow-x: hidden;

}

body.menu-open {
    overflow: hidden;
}

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

button,
input,
textarea {
    font: inherit;
}

button {
    border: none;
}

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


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

.page-bg {

    position: fixed;

    inset: 0;

    z-index: -10;

    background:
        linear-gradient(
            rgba(255,255,255,0.82),
            rgba(248,250,252,0.92)
        ),
        url("Images/web-bg.png");

    background-size: cover;
    background-position: center;

    pointer-events: none;

}

.page-bg::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(249,115,22,0.10),
            transparent 30%
        ),
        radial-gradient(
            circle at 90% 10%,
            rgba(251,146,60,0.08),
            transparent 30%
        );

}


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

.container {

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

    margin: auto;

}


/* =========================================================
   SECTION
========================================================= */

.section {

    position: relative;

    padding: 130px 0;

}


/* =========================================================
   FLOATING BACKGROUND
========================================================= */

.floating-shape {

    position: fixed;

    border-radius: 50%;

    filter: blur(70px);

    pointer-events: none;

    z-index: -5;

    opacity: .35;

    animation: floatingShape 12s ease-in-out infinite;

}

.shape-1 {

    width: 260px;
    height: 260px;

    background: rgba(249,115,22,.13);

    left: -100px;
    top: 20%;

}

.shape-2 {

    width: 220px;
    height: 220px;

    background: rgba(251,146,60,.12);

    right: -80px;
    top: 55%;

    animation-delay: -4s;

}

.shape-3 {

    width: 180px;
    height: 180px;

    background: rgba(249,115,22,.09);

    left: 45%;
    bottom: -80px;

    animation-delay: -7s;

}

@keyframes floatingShape {

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

    50% {
        transform: translate3d(30px,-35px,0);
    }

}


/* =========================================================
   CUSTOM CURSOR
========================================================= */

.cursor-dot,
.cursor-ring {

    position: fixed;

    pointer-events: none;

    z-index: 99999;

    transform: translate(-50%, -50%);

}

.cursor-dot {

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--orange);

    box-shadow:
        0 0 15px rgba(249,115,22,.7);

}

.cursor-ring {

    width: 38px;
    height: 38px;

    border: 1px solid rgba(249,115,22,.55);

    border-radius: 50%;

    transition:
        width .25s ease,
        height .25s ease,
        border-color .25s ease,
        background .25s ease;

}

.cursor-ring.active {

    width: 58px;
    height: 58px;

    background: rgba(249,115,22,.08);

    border-color: var(--orange);

}

@media (max-width: 900px) {

    .cursor-dot,
    .cursor-ring {
        display: none;
    }

}


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

.header {

    position: fixed;

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

    z-index: 1000;

    padding: 18px 0;

    transition: .35s ease;

}

.header.scrolled {

    padding: 10px 0;

}

.header.scrolled .nav-container {

    background: rgba(255,255,255,.82);

    box-shadow:
        0 15px 45px rgba(15,23,42,.08);

}

.nav-container {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    padding: 12px 14px 12px 18px;

    border: 1px solid rgba(255,255,255,.85);

    background: rgba(255,255,255,.58);

    backdrop-filter: blur(24px);

    -webkit-backdrop-filter: blur(24px);

    border-radius: 20px;

    transition: .35s ease;

}

.logo img {

    width: 72px;
    height: 52px;

    object-fit: contain;

    transition: transform .3s ease;

}

.logo:hover img {

    transform: rotate(-8deg) scale(1.06);

}

.nav {

    display: flex;

    align-items: center;

    gap: 8px;

}

.nav-link {

    position: relative;

    padding: 10px 13px;

    font-size: 14px;

    font-weight: 600;

    color: #64748b;

    transition: .25s ease;

}

.nav-link:hover,
.nav-link.active {

    color: var(--orange);

}

.nav-link::after {

    content: "";

    position: absolute;

    left: 50%;
    bottom: 3px;

    width: 0;
    height: 2px;

    background: var(--orange);

    border-radius: 10px;

    transform: translateX(-50%);

    transition: width .25s ease;

}

.nav-link:hover::after,
.nav-link.active::after {

    width: 18px;

}

.nav-cta {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 12px 18px;

    color: white;

    background: var(--orange);

    border-radius: 13px;

    font-size: 13px;

    font-weight: 700;

    box-shadow:
        0 10px 25px rgba(249,115,22,.22);

    transition: .3s ease;

}

.nav-cta:hover {

    background: var(--orange-dark);

    transform: translateY(-2px);

    box-shadow:
        0 15px 35px rgba(249,115,22,.30);

}

.menu-toggle {

    display: none;

    width: 44px;
    height: 44px;

    background: white;

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

    border-radius: 12px;

    cursor: pointer;

}

.menu-toggle span {

    display: block;

    width: 20px;
    height: 2px;

    background: var(--dark);

    margin: 4px auto;

    transition: .3s ease;

}


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

.hero {

    min-height: 100vh;

    min-height: 900px;

    display: flex;

    align-items: center;

    padding-top: 150px;

    padding-bottom: 80px;

    overflow: hidden;

}

.hero-grid {

    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(500px, .95fr);

    align-items: center;

    gap: 70px;

}

.availability {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 9px 14px;

    margin-bottom: 24px;

    color: #475569;

    background: rgba(255,255,255,.72);

    border: 1px solid rgba(255,255,255,.9);

    border-radius: 999px;

    box-shadow:
        0 10px 30px rgba(15,23,42,.05);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: .03em;

}

.status-dot {

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #22c55e;

    box-shadow:
        0 0 0 5px rgba(34,197,94,.10);

    animation: pulseStatus 2s infinite;

}

@keyframes pulseStatus {

    50% {
        box-shadow:
            0 0 0 9px rgba(34,197,94,.03);
    }

}

.hero-kicker {

    margin-bottom: 14px;

    color: var(--orange);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: .20em;

}

.hero-title {

    font-family: "Poppins", sans-serif;

    font-size: clamp(
        58px,
        7vw,
        94px
    );

    line-height: .98;

    letter-spacing: -.055em;

    font-weight: 800;

    color: #111827;

}

.name-line {

    display: block;

    margin-top: 7px;

    white-space: nowrap;

    font-size: clamp(
        48px,
        5.8vw,
        78px
    );

    background:
        linear-gradient(
            100deg,
            #ea580c,
            #f97316,
            #fb923c
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;

}

.hero-role {

    display: flex;

    align-items: center;

    min-height: 52px;

    margin-top: 24px;

    color: #334155;

    font-family: "Poppins", sans-serif;

    font-size: clamp(24px, 3vw, 38px);

    font-weight: 700;

}

.typing-cursor {

    color: var(--orange);

    margin-left: 5px;

    animation: blink .8s infinite;

}

@keyframes blink {

    50% {
        opacity: 0;
    }

}

.hero-description {

    max-width: 650px;

    margin-top: 20px;

    color: #64748b;

    font-size: 17px;

    line-height: 1.9;

}

.hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 13px;

    margin-top: 32px;

}

.btn {

    display: inline-flex;

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

    gap: 11px;

    min-height: 54px;

    padding: 0 22px;

    border-radius: 14px;

    font-size: 14px;

    font-weight: 800;

    cursor: pointer;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        background .3s ease;

}

.btn-primary {

    color: white;

    background:
        linear-gradient(
            135deg,
            var(--orange),
            var(--orange-dark)
        );

    box-shadow:
        0 15px 35px rgba(249,115,22,.24);

}

.btn-primary:hover {

    transform: translateY(-4px);

    box-shadow:
        0 22px 45px rgba(249,115,22,.32);

}

.btn-secondary {

    color: #334155;

    background: rgba(255,255,255,.78);

    border: 1px solid rgba(15,23,42,.08);

}

.btn-secondary:hover {

    transform: translateY(-4px);

    background: white;

    box-shadow:
        0 15px 35px rgba(15,23,42,.09);

}

.hero-socials {

    display: flex;

    align-items: center;

    gap: 9px;

    margin-top: 34px;

}

.hero-socials a,
.social-icons a,
.footer-socials a {

    display: grid;

    place-items: center;

    width: 42px;
    height: 42px;

    border-radius: 12px;

    color: #64748b;

    background: rgba(255,255,255,.65);

    border: 1px solid rgba(15,23,42,.07);

    transition: .3s ease;

}

.hero-socials a:hover,
.social-icons a:hover,
.footer-socials a:hover {

    color: white;

    background: var(--orange);

    border-color: var(--orange);

    transform: translateY(-4px);

    box-shadow:
        0 12px 25px rgba(249,115,22,.20);

}


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

.hero-visual {

    position: relative;

    min-height: 650px;

    display: grid;

    place-items: center;

}

.hero-glow {

    position: absolute;

    width: 520px;
    height: 520px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(249,115,22,.20),
            rgba(249,115,22,.06) 45%,
            transparent 70%
        );

    filter: blur(5px);

    animation: heroGlow 5s ease-in-out infinite;

}

@keyframes heroGlow {

    50% {
        transform: scale(1.08);
        opacity: .7;
    }

}

.hero-image-card {

    position: relative;

    width: min(100%, 570px);

    height: 640px;

    display: flex;

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

    border-radius: 38px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.92),
            rgba(255,255,255,.48)
        );

    border: 1px solid rgba(255,255,255,.95);

    box-shadow:
        0 35px 100px rgba(15,23,42,.13);

    overflow: visible;

}

.hero-image-card::before {

    content: "";

    position: absolute;

    inset: 14px;

    border: 1px solid rgba(249,115,22,.12);

    border-radius: 30px;

    pointer-events: none;

}

.image-grid {

    position: absolute;

    inset: 0;

    border-radius: 38px;

    opacity: .4;

    background-image:
        linear-gradient(
            rgba(249,115,22,.06) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(249,115,22,.06) 1px,
            transparent 1px
        );

    background-size: 35px 35px;

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

}

.hero-image-wrap {

    position: relative;

    z-index: 2;

    width: 100%;
    height: 100%;

    display: flex;

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

}

.hero-image {

    width: 105%;

    max-width: 620px;

    height: auto;

    object-fit: contain;

    filter:
        drop-shadow(
            0 25px 25px rgba(15,23,42,.14)
        );

    transform-origin: bottom center;

    animation: personFloat 5s ease-in-out infinite;

}

@keyframes personFloat {

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

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

}

.floating-card {

    position: absolute;

    z-index: 5;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 13px 17px;

    border-radius: 17px;

    background: rgba(255,255,255,.88);

    backdrop-filter: blur(18px);

    border: 1px solid rgba(255,255,255,.95);

    box-shadow:
        0 20px 45px rgba(15,23,42,.12);

    animation: floatingCard 4s ease-in-out infinite;

}

.card-top {

    left: -45px;
    top: 100px;

}

.card-bottom {

    right: -35px;
    bottom: 110px;

    animation-delay: -2s;

}

@keyframes floatingCard {

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

}

.mini-icon {

    display: grid;

    place-items: center;

    width: 40px;
    height: 40px;

    color: white;

    background: var(--orange);

    border-radius: 12px;

}

.floating-card strong,
.floating-card span {

    display: block;

}

.floating-card strong {

    color: #1e293b;

    font-size: 13px;

}

.floating-card span {

    margin-top: 3px;

    color: #94a3b8;

    font-size: 11px;

}

.hero-orbit {

    position: absolute;

    border: 1px dashed rgba(249,115,22,.16);

    border-radius: 50%;

    pointer-events: none;

}

.orbit-one {

    width: 690px;
    height: 690px;

    animation: orbitRotate 30s linear infinite;

}

.orbit-two {

    width: 780px;
    height: 460px;

    transform: rotate(25deg);

    animation: orbitRotateReverse 35s linear infinite;

}

@keyframes orbitRotate {

    to {
        transform: rotate(360deg);
    }

}

@keyframes orbitRotateReverse {

    to {
        transform: rotate(-335deg);
    }

}


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

.scroll-indicator {

    position: absolute;

    bottom: 35px;

    left: 50%;

    transform: translateX(-50%);

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 10px;

    color: #94a3b8;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .12em;

    text-transform: uppercase;

}

.scroll-line {

    width: 1px;
    height: 45px;

    background: #cbd5e1;

    position: relative;

    overflow: hidden;

}

.scroll-line span {

    position: absolute;

    width: 100%;
    height: 50%;

    top: -50%;

    background: var(--orange);

    animation: scrollLine 1.8s infinite;

}

@keyframes scrollLine {

    to {
        top: 100%;
    }

}


/* =========================================================
   SECTION HEADINGS
========================================================= */

.section-heading {

    max-width: 780px;

    margin-bottom: 60px;

}

.section-heading.centered {

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

    text-align: center;

}

.section-label {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: var(--orange);

    font-size: 11px;

    font-weight: 900;

    letter-spacing: .18em;

}

.section-label::before {

    content: "";

    width: 25px;
    height: 2px;

    background: var(--orange);

}

.section-heading h2 {

    margin-top: 15px;

    font-family: "Poppins", sans-serif;

    font-size: clamp(40px, 5vw, 68px);

    line-height: 1.05;

    letter-spacing: -.045em;

    color: #111827;

}

.section-heading h2 span {

    color: var(--orange);

}

.section-heading p {

    max-width: 650px;

    margin-top: 18px;

    color: var(--text-soft);

    line-height: 1.8;

}


/* =========================================================
   GLASS CARD
========================================================= */

.glass-card {

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.84),
            rgba(255,255,255,.57)
        );

    border: 1px solid rgba(255,255,255,.9);

    backdrop-filter: blur(20px);

    -webkit-backdrop-filter: blur(20px);

    box-shadow: var(--shadow);

}


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

.about-grid {

    display: grid;

    grid-template-columns: 1.3fr .7fr;

    gap: 24px;

}

.about-card {

    position: relative;

    padding: 48px;

    border-radius: var(--radius);

    overflow: hidden;

}

.about-card::after {

    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

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

    border-radius: 50%;

    background: rgba(249,115,22,.08);

}

.card-number {

    color: var(--orange);

    font-size: 12px;

    font-weight: 900;

    letter-spacing: .15em;

}

.about-card h3 {

    margin-top: 22px;

    font-family: "Poppins", sans-serif;

    font-size: 30px;

}

.about-card p {

    max-width: 800px;

    margin-top: 18px;

    color: var(--text-soft);

    line-height: 1.9;

}

.about-stats {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;

}

.stat-card {

    min-height: 180px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 28px;

    border-radius: 24px;

    transition: .35s ease;

}

.stat-card:hover {

    transform: translateY(-8px);

    box-shadow: var(--shadow-hover);

}

.stat-card strong {

    font-family: "Poppins", sans-serif;

    font-size: 38px;

    color: var(--orange);

}

.stat-card span {

    margin-top: 7px;

    color: #64748b;

    font-size: 13px;

    font-weight: 600;

}


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

.skills-grid {

    display: grid;

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

    gap: 20px;

}

.skill-flip {

    height: 390px;

    perspective: 1200px;

    cursor: pointer;

}

.skill-inner {

    position: relative;

    width: 100%;
    height: 100%;

    transition:
        transform .75s
        cubic-bezier(.2,.7,.2,1);

    transform-style: preserve-3d;

}

.skill-flip:hover .skill-inner,
.skill-flip.flipped .skill-inner {

    transform: rotateY(180deg);

}

.skill-front,
.skill-back {

    position: absolute;

    inset: 0;

    padding: 32px;

    border-radius: 26px;

    backface-visibility: hidden;

    -webkit-backface-visibility: hidden;

}

.skill-front {

    display: flex;

    flex-direction: column;

    justify-content: center;

}

.skill-back {

    transform: rotateY(180deg);

    display: flex;

    flex-direction: column;

    justify-content: center;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.94),
            rgba(255,247,237,.85)
        );

}

.skill-icon {

    width: 62px;
    height: 62px;

    display: grid;

    place-items: center;

    color: white;

    background:
        linear-gradient(
            135deg,
            var(--orange),
            var(--orange-dark)
        );

    border-radius: 18px;

    font-size: 23px;

    box-shadow:
        0 15px 30px rgba(249,115,22,.20);

}

.skill-front h3,
.skill-back h3 {

    margin-top: 28px;

    font-family: "Poppins", sans-serif;

    font-size: 24px;

}

.skill-front p {

    margin-top: 10px;

    color: var(--text-soft);

    line-height: 1.7;

    font-size: 14px;

}

.flip-hint {

    display: flex;

    align-items: center;

    gap: 7px;

    margin-top: 28px;

    color: var(--orange);

    font-size: 11px;

    font-weight: 800;

}

.skill-index {

    color: var(--orange);

    font-size: 12px;

    font-weight: 900;

}

.skill-back p {

    margin-top: 15px;

    color: var(--text-soft);

    line-height: 1.75;

    font-size: 13px;

}

.skill-tags {

    display: flex;

    flex-wrap: wrap;

    gap: 7px;

    margin-top: 22px;

}

.skill-tags span {

    padding: 7px 9px;

    color: #c2410c;

    background: rgba(249,115,22,.09);

    border: 1px solid rgba(249,115,22,.10);

    border-radius: 8px;

    font-size: 10px;

    font-weight: 800;

}


/* =========================================================
   EXPERTISE, LANGUAGES & RECOGNITION
========================================================= */

.expertise-layout {

    display: grid;

    grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);

    gap: 22px;

    align-items: stretch;

}

.expertise-card,
.platform-card,
.language-card,
.awards-card,
.community-card {

    padding: 34px;

    border-radius: 28px;

}

.expertise-card-head {

    display: flex;

    align-items: center;

    gap: 16px;

}

.expertise-card-head .skill-icon {

    width: 52px;
    height: 52px;

    border-radius: 15px;

    font-size: 19px;

}

.expertise-card h3,
.platform-card h3 {

    margin-top: 6px;

    font-family: "Poppins", sans-serif;

    font-size: 25px;

}

.score-list {

    display: grid;

    gap: 18px;

    margin-top: 30px;

}

.score-copy {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 16px;

    margin-bottom: 8px;

    color: #334155;

    font-size: 13px;

    font-weight: 800;

}

.score-copy strong {

    padding: 4px 8px;

    color: #c2410c;

    background: rgba(249,115,22,.10);

    border-radius: 999px;

    font-size: 9px;

    letter-spacing: .07em;

    text-transform: uppercase;

}

.score-track {

    height: 9px;

    overflow: hidden;

    background: #e2e8f0;

    border-radius: 999px;

}

.score-track span {

    display: block;

    height: 100%;

    border-radius: inherit;

    background: linear-gradient(90deg, var(--orange), #fb923c);

    box-shadow: 0 0 18px rgba(249,115,22,.30);

}

.platform-card {

    display: flex;

    flex-direction: column;

    background:
        linear-gradient(145deg, rgba(255,247,237,.95), rgba(255,255,255,.72));

}

.platform-card p {

    margin-top: 13px;

    color: var(--text-soft);

    font-size: 14px;

    line-height: 1.8;

}

.platform-tags {

    display: grid;

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

    gap: 9px;

    margin-top: 28px;

}

.platform-tags span {

    display: flex;

    align-items: center;

    gap: 8px;

    min-height: 42px;

    padding: 9px 10px;

    color: #475569;

    background: rgba(255,255,255,.70);

    border: 1px solid rgba(249,115,22,.10);

    border-radius: 11px;

    font-size: 11px;

    font-weight: 800;

}

.platform-tags i,
.platform-note i {

    color: var(--orange);

}

.platform-note {

    margin-top: auto;

    padding-top: 25px;

    color: #475569;

    font-size: 12px;

    font-weight: 700;

    line-height: 1.6;

}


/* Individual skill cards */

.expertise-layout {

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

}

.skill-showcase {

    display: flex;

    flex-direction: column;

    min-height: 345px;

    padding: 28px;

    border-radius: 25px;

    transition: transform .3s ease, box-shadow .3s ease;

}

.skill-showcase:hover {

    transform: translateY(-7px);

    box-shadow: var(--shadow-hover);

}

.skill-showcase-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 12px;

}

.skill-showcase .skill-icon {

    width: 54px;
    height: 54px;

    border-radius: 16px;

    font-size: 20px;

}

.skill-badge {

    padding: 7px 9px;

    color: #c2410c;

    background: rgba(249,115,22,.10);

    border: 1px solid rgba(249,115,22,.13);

    border-radius: 999px;

    font-size: 9px;

    font-weight: 900;

    letter-spacing: .08em;

}

.skill-showcase h3 {

    margin-top: 23px;

    font-family: "Poppins", sans-serif;

    font-size: 22px;

    line-height: 1.15;

}

.skill-showcase > p {

    margin-top: 11px;

    color: var(--text-soft);

    font-size: 13px;

    line-height: 1.75;

}

.skill-meta {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;

    margin-top: auto;

    padding-top: 22px;

    color: #64748b;

    font-size: 10px;

    font-weight: 800;

}

.skill-meta > span:first-child {

    max-width: 150px;

    line-height: 1.5;

}

.skill-meta > span:first-child i {

    margin-right: 4px;

    color: var(--orange);

}

.star-rating {

    display: inline-flex;

    gap: 2px;

    flex: 0 0 auto;

    color: #f59e0b;

}

.skill-link,
.project-link {

    display: inline-flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;

    margin-top: 18px;

    padding: 12px 0 0;

    color: var(--orange-dark);

    border-top: 1px solid rgba(15,23,42,.08);

    font-size: 12px;

    font-weight: 900;

}


/* =========================================================
   REVIEWS & PORTFOLIO
========================================================= */

.reviews-section,
.portfolio-section {

    padding-top: 30px;

}

.review-carousel {

    margin-top: 38px;

    overflow: hidden;

}

.review-track {

    display: grid;

    grid-auto-flow: column;

    grid-auto-columns: minmax(300px, calc((100% - 44px) / 3));

    gap: 22px;

    overflow-x: auto;

    scroll-snap-type: x mandatory;

    scroll-behavior: smooth;

    padding: 5px 3px 18px;

    scrollbar-width: none;

}

.review-track::-webkit-scrollbar {

    display: none;

}

.review-card {

    min-height: 248px;

    padding: 27px;

    border-radius: 23px;

    scroll-snap-align: start;

    background: #ffffff;

    border: 1px solid rgba(226,232,240,.90);

    box-shadow: none;

}

.review-platform {

    display: flex;

    align-items: center;

    gap: 8px;

    color: #475569;

    font-size: 12px;

    font-weight: 900;

}

.review-platform > i {

    color: var(--orange);

    font-size: 18px;

}

.review-platform strong {

    margin-left: auto;

    color: #b45309;

    font-size: 11px;

}

.review-platform strong i {

    color: #f59e0b;

}

.review-card > p {

    margin-top: 26px;

    color: #334155;

    font-family: "Poppins", sans-serif;

    font-size: 16px;

    font-weight: 600;

    line-height: 1.55;

}

.reviewer {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-top: 22px;

}

.reviewer-avatar {

    width: 34px;
    height: 34px;

    display: grid;

    place-items: center;

    color: white;

    background: linear-gradient(135deg, var(--orange), var(--orange-dark));

    border-radius: 50%;

    font-size: 10px;

    font-weight: 900;

}

.reviewer strong,
.reviewer span:not(.reviewer-avatar) {

    display: block;

}

.reviewer strong {

    color: #334155;

    font-size: 11px;

}

.reviewer span:not(.reviewer-avatar) {

    margin-top: 3px;

    color: var(--text-soft);

    font-size: 10px;

}

.carousel-controls {

    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 11px;

    color: #64748b;

    font-size: 11px;

    font-weight: 700;

}

.carousel-button {

    width: 39px;
    height: 39px;

    display: grid;

    place-items: center;

    color: #c2410c;

    background: white;

    border: 1px solid rgba(249,115,22,.18);

    border-radius: 12px;

    cursor: pointer;

    transition: .25s ease;

}

.carousel-button:hover {

    color: white;

    background: var(--orange);

    transform: translateY(-2px);

}

.projects-grid {

    display: grid;

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

    gap: 22px;

    margin-top: 38px;

}

.project-card {

    overflow: hidden;

    border-radius: 25px;

    transition: transform .3s ease, box-shadow .3s ease;

}

.project-card:hover {

    transform: translateY(-7px);

    box-shadow: var(--shadow-hover);

}

.project-thumb {

    position: relative;

    height: 220px;

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    padding: 22px;

    overflow: hidden;

    color: white;

}

.project-thumb::before {

    content: "";

    position: absolute;

    inset: 14px;

    border: 1px solid rgba(255,255,255,.28);

    border-radius: 18px;

}

.project-thumb span,
.project-thumb i {

    position: relative;

    z-index: 1;

}

.project-thumb span {

    font-size: 10px;

    font-weight: 900;

    letter-spacing: .13em;

}

.project-thumb i {

    font-size: 42px;

    opacity: .9;

}

.project-web { background: linear-gradient(135deg, #0f766e, #14b8a6); }
.project-auto { background: linear-gradient(135deg, #4338ca, #8b5cf6); }
.project-brand { background: linear-gradient(135deg, #c2410c, #fb923c); }

.project-content {

    padding: 27px;

}

.project-type {

    color: var(--orange);

    font-size: 10px;

    font-weight: 900;

    letter-spacing: .11em;

}

.project-content h3 {

    margin-top: 10px;

    color: #1e293b;

    font-family: "Poppins", sans-serif;

    font-size: 22px;

}

.project-content p {

    margin-top: 10px;

    color: var(--text-soft);

    font-size: 13px;

    line-height: 1.75;

}


.recognition-section {

    padding-top: 30px;

}

.recognition-grid {

    display: grid;

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

    gap: 22px;

}

.recognition-section h2,
.growth-section h2 {

    margin-top: 12px;

    font-family: "Poppins", sans-serif;

    font-size: clamp(28px, 3.2vw, 40px);

    line-height: 1.1;

    letter-spacing: -.04em;

}

.recognition-section h2 span,
.growth-section h2 span {

    color: var(--orange);

}

.language-list {

    margin-top: 29px;

}

.awards-list,
.mentorship-list {

    display: grid;

    gap: 17px;

    margin-top: 29px;

}

.awards-list li {

    display: flex;

    align-items: flex-start;

    gap: 13px;

}

.awards-list i {

    width: 37px;
    height: 37px;

    display: grid;

    place-items: center;

    flex: 0 0 auto;

    color: #b45309;

    background: rgba(249,115,22,.12);

    border-radius: 11px;

}

.awards-list strong,
.awards-list span {

    display: block;

}

.awards-list strong {

    color: #334155;

    font-size: 14px;

}

.awards-list span {

    margin-top: 3px;

    color: var(--text-soft);

    font-size: 12px;

    font-style: italic;

}


/* =========================================================
   COMMUNITY & MENTORSHIP
========================================================= */

.growth-section {

    padding-top: 30px;

}

.growth-grid {

    display: grid;

    grid-template-columns: 1fr;

    gap: 22px;

}

.community-card,
.mentorship-card {

    min-height: 100%;

    padding: 38px;

    border-radius: 28px;

}

.community-card {

    display: flex;

    flex-direction: column;

}

.growth-icon {

    width: 58px;
    height: 58px;

    display: grid;

    place-items: center;

    margin-bottom: 23px;

    color: white;

    background: linear-gradient(135deg, var(--orange), var(--orange-dark));

    border-radius: 17px;

    box-shadow: 0 15px 30px rgba(249,115,22,.20);

    font-size: 23px;

}

.community-card p,
.mentorship-card > p {

    margin-top: 18px;

    color: var(--text-soft);

    line-height: 1.85;

}

.community-card .btn {

    margin-top: auto;

    align-self: flex-start;

    padding-top: 18px;

}

.mentorship-card {

    color: white;

    background: linear-gradient(135deg, #172033, #283955);

    box-shadow: 0 25px 70px rgba(15,23,42,.20);

}

.mentorship-top {

    display: flex;

    align-items: center;

    gap: 15px;

}

.mentorship-top .growth-icon {

    width: 48px;
    height: 48px;

    margin: 0;

    border-radius: 14px;

    font-size: 18px;

}

.mentorship-card .section-label {

    color: #fdba74;

}

.mentorship-card h2 {

    margin-top: 27px;

}

.mentorship-card > p {

    color: #cbd5e1;

}

.mentorship-list {

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

}

.mentorship-list li {

    color: #e2e8f0;

    font-size: 12px;

    line-height: 1.65;

}

.mentorship-list i {

    margin-right: 6px;

    color: #fb923c;

}

.mentorship-highlights {

    display: grid;

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

    gap: 10px;

    margin-top: 25px;

}

.mentorship-highlights div {

    min-height: 116px;

    padding: 15px;

    background: rgba(255,255,255,.07);

    border: 1px solid rgba(255,255,255,.10);

    border-radius: 14px;

}

.mentorship-highlights i {

    color: #fb923c;

    font-size: 15px;

}

.mentorship-highlights span,
.mentorship-highlights strong {

    display: block;

}

.mentorship-highlights span {

    margin-top: 10px;

    color: #fdba74;

    font-size: 9px;

    font-weight: 900;

    letter-spacing: .1em;

}

.mentorship-highlights strong {

    margin-top: 5px;

    color: #e2e8f0;

    font-size: 11px;

    line-height: 1.55;

}

.price-grid {

    display: grid;

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

    gap: 11px;

    margin: 26px 0 20px;

}

.mentorship-actions {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 18px;

}

.mentorship-call {

    color: #fed7aa;

    font-size: 12px;

    font-weight: 800;

}

.mentorship-call i {

    margin-right: 6px;

}

.price-grid div {

    padding: 15px;

    background: rgba(255,255,255,.09);

    border: 1px solid rgba(255,255,255,.12);

    border-radius: 14px;

}

.price-grid span,
.price-grid strong {

    display: block;

}

.price-grid span {

    color: #cbd5e1;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: .1em;

}

.price-grid strong {

    margin-top: 6px;

    color: white;

    font-family: "Poppins", sans-serif;

    font-size: 22px;

}


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

.timeline {

    position: relative;

    max-width: 900px;

    margin: auto;

    padding-left: 35px;

}

.timeline::before {

    content: "";

    position: absolute;

    left: 8px;
    top: 0;
    bottom: 0;

    width: 1px;

    background:
        linear-gradient(
            to bottom,
            var(--orange),
            rgba(249,115,22,.08)
        );

}

.timeline-item {

    position: relative;

    margin-bottom: 25px;

}

.timeline-dot {

    position: absolute;

    left: -35px;
    top: 28px;

    width: 17px;
    height: 17px;

    background: white;

    border: 4px solid var(--orange);

    border-radius: 50%;

    box-shadow:
        0 0 0 7px rgba(249,115,22,.08);

}

.timeline-content {

    padding: 30px;

    border-radius: 24px;

    transition: .35s ease;

}

.timeline-content:hover {

    transform: translateX(7px);

    box-shadow: var(--shadow-hover);

}

.timeline-date {

    color: var(--orange);

    font-size: 10px;

    font-weight: 900;

    letter-spacing: .15em;

}

.timeline-content h3 {

    margin-top: 10px;

    font-family: "Poppins", sans-serif;

    font-size: 23px;

}

.timeline-content p {

    margin-top: 10px;

    color: var(--text-soft);

    line-height: 1.8;

}


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

.education-card {

    max-width: 1000px;

    margin: auto;

    display: flex;

    align-items: center;

    gap: 28px;

    padding: 40px;

    border-radius: 28px;

    transition: .35s ease;

}

.education-card:hover {

    transform: translateY(-6px);

    box-shadow: var(--shadow-hover);

}

.education-icon {

    flex: 0 0 auto;

    width: 75px;
    height: 75px;

    display: grid;

    place-items: center;

    border-radius: 20px;

    color: white;

    background:
        linear-gradient(
            135deg,
            var(--orange),
            var(--orange-dark)
        );

    font-size: 28px;

}

.education-label {

    color: var(--orange);

    font-size: 10px;

    font-weight: 900;

    letter-spacing: .15em;

}

.education-card h3 {

    margin-top: 10px;

    font-family: "Poppins", sans-serif;

    font-size: 25px;

}

.education-card p {

    margin-top: 10px;

    color: var(--text-soft);

    line-height: 1.8;

}


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

.contact-grid {

    display: grid;

    grid-template-columns: .75fr 1.25fr;

    gap: 25px;

    align-items: stretch;

}

.contact-info {

    display: flex;

    flex-direction: column;

    gap: 14px;

}

.contact-item {

    display: flex;

    align-items: center;

    gap: 16px;

    padding: 22px;

    border-radius: 20px;

    transition: .3s ease;

}

.contact-item:hover {

    transform: translateX(5px);

}

.contact-icon {

    width: 48px;
    height: 48px;

    flex: 0 0 auto;

    display: grid;

    place-items: center;

    color: var(--orange);

    background: rgba(249,115,22,.09);

    border-radius: 14px;

}

.contact-item span {

    display: block;

    color: #94a3b8;

    font-size: 9px;

    font-weight: 900;

    letter-spacing: .15em;

}

.contact-item strong,
.contact-item a {

    display: block;

    margin-top: 5px;

    color: #334155;

    font-size: 13px;

    font-weight: 700;

}

.contact-item a:hover {

    color: var(--orange);

}

.contact-social {

    margin-top: auto;

    padding: 24px;

    border-radius: 20px;

}

.contact-social > span {

    color: #94a3b8;

    font-size: 10px;

    font-weight: 900;

    letter-spacing: .15em;

}

.social-icons {

    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin-top: 15px;

}


/* FORM */

.contact-form {

    padding: 35px;

    border-radius: 28px;

}

.form-row {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;

}

.form-group {

    margin-bottom: 20px;

}

.form-group label {

    display: block;

    margin-bottom: 8px;

    color: #475569;

    font-size: 11px;

    font-weight: 800;

}

.form-group input,
.form-group textarea {

    width: 100%;

    color: #1e293b;

    background: rgba(255,255,255,.72);

    border: 1px solid rgba(15,23,42,.08);

    border-radius: 13px;

    padding: 14px 15px;

    outline: none;

    transition: .25s ease;

}

.form-group textarea {

    resize: vertical;

    min-height: 145px;

}

.form-group input::placeholder,
.form-group textarea::placeholder {

    color: #a1aab8;

}

.form-group input:focus,
.form-group textarea:focus {

    border-color: rgba(249,115,22,.5);

    background: white;

    box-shadow:
        0 0 0 4px rgba(249,115,22,.07);

}

.submit-btn {

    width: 100%;

}

.form-note {

    min-height: 20px;

    margin-top: 12px;

    text-align: center;

    color: var(--orange);

    font-size: 12px;

    font-weight: 700;

}


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

.footer {

    margin-top: 50px;

    padding: 40px 0 25px;

    border-top: 1px solid rgba(15,23,42,.07);

    background: rgba(255,255,255,.46);

    backdrop-filter: blur(20px);

}

.footer-top {

    display: grid;

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

    align-items: center;

    gap: 30px;

    padding-bottom: 30px;

}

.footer-brand {

    display: flex;

    align-items: center;

    gap: 12px;

}

.footer-brand img {

    width: 42px;
    height: 42px;

}

.footer-brand strong,
.footer-brand span {

    display: block;

}

.footer-brand strong {

    font-family: "Poppins", sans-serif;

    font-size: 15px;

}

.footer-brand span {

    margin-top: 3px;

    color: #94a3b8;

    font-size: 10px;

}

.footer-links {

    display: flex;

    gap: 20px;

}

.footer-links a {

    color: #64748b;

    font-size: 12px;

    font-weight: 700;

    transition: .25s ease;

}

.footer-links a:hover {

    color: var(--orange);

}

.footer-socials {

    display: flex;

    justify-content: flex-end;

    gap: 8px;

}

.footer-socials a {

    width: 38px;
    height: 38px;

}

.footer-bottom {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;

    padding-top: 22px;

    border-top: 1px solid rgba(15,23,42,.06);

    color: #94a3b8;

    font-size: 10px;

}

.heart {

    color: var(--orange);

}


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

.reveal {

    opacity: 0;

    transform: translateY(35px);

    transition:
        opacity .8s ease,
        transform .8s cubic-bezier(.2,.7,.2,1);

}

.reveal.visible {

    opacity: 1;

    transform: translateY(0);

}


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

@media (max-width: 1200px) {

    .hero-grid {

        grid-template-columns:
            minmax(0, 1fr)
            minmax(430px, .85fr);

        gap: 35px;

    }

    .skills-grid {

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

    }

    .expertise-layout {

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

    }

    .platform-card {

        min-height: 310px;

    }

}


@media (max-width: 980px) {

    .nav {

        position: fixed;

        top: 82px;
        left: 24px;
        right: 24px;

        padding: 15px;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        background: rgba(255,255,255,.94);

        backdrop-filter: blur(25px);

        border: 1px solid rgba(15,23,42,.07);

        border-radius: 20px;

        box-shadow:
            0 25px 70px rgba(15,23,42,.12);

        transform:
            translateY(-15px)
            scale(.98);

        opacity: 0;

        visibility: hidden;

        transition: .3s ease;

    }

    .nav.open {

        opacity: 1;

        visibility: visible;

        transform:
            translateY(0)
            scale(1);

    }

    .nav-link {

        padding: 13px;

    }

    .nav-link::after {

        display: none;

    }

    .nav-cta {

        display: none;

    }

    .menu-toggle {

        display: block;

    }

    .hero {

        min-height: auto;

    }

    .hero-grid {

        grid-template-columns: 1fr;

    }

    .hero-content {

        text-align: center;

    }

    .hero-description {

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

    }

    .hero-buttons,
    .hero-socials {

        justify-content: center;

    }

    .hero-visual {

        min-height: 580px;

    }

    .about-grid {

        grid-template-columns: 1fr;

    }

    .contact-grid {

        grid-template-columns: 1fr;

    }

    .recognition-grid,
    .growth-grid {

        grid-template-columns: 1fr;

    }

    .projects-grid {

        grid-template-columns: 1fr;

    }

    .footer-top {

        grid-template-columns: 1fr;

        text-align: center;

    }

    .footer-brand {

        justify-content: center;

    }

    .footer-links {

        justify-content: center;

    }

    .footer-socials {

        justify-content: center;

    }

}


@media (max-width: 650px) {

    .container {

        width: min(
            calc(100% - 30px),
            var(--container)
        );

    }

    .section {

        padding: 90px 0;

    }

    .hero {

        padding-top: 125px;

        padding-bottom: 80px;

    }

    .hero-title {

        font-size: 52px;

    }

    .name-line {

        font-size: 45px;

    }

    .hero-description {

        font-size: 14px;

        line-height: 1.8;

    }

    .hero-visual {

        min-height: 470px;

    }

    .hero-image-card {

        height: 470px;

        border-radius: 28px;

    }

    .card-top {

        left: -5px;
        top: 65px;

    }

    .card-bottom {

        right: -5px;
        bottom: 60px;

    }

    .orbit-one,
    .orbit-two {

        display: none;

    }

    .floating-card {

        transform: scale(.85);

    }

    .skills-grid {

        grid-template-columns: 1fr;

    }

    .expertise-layout {

        grid-template-columns: 1fr;

    }

    .skill-flip {

        height: 360px;

    }

    .expertise-card,
    .platform-card,
    .language-card,
    .awards-card,
    .community-card,
    .mentorship-card {

        padding: 26px;

    }

    .expertise-card-head {

        align-items: flex-start;

    }

    .score-copy {

        align-items: flex-start;

        flex-direction: column;

        gap: 5px;

    }

    .platform-tags,
    .mentorship-list,
    .mentorship-highlights,
    .price-grid {

        grid-template-columns: 1fr;

    }

    .mentorship-actions {

        align-items: flex-start;

        flex-direction: column;

        gap: 13px;

    }

    .review-track {

        grid-auto-columns: 88%;

    }

    .carousel-controls {

        justify-content: center;

    }

    .platform-card {

        min-height: auto;

    }

    .community-card .btn {

        margin-top: 28px;

    }

    .about-card {

        padding: 30px;

    }

    .about-stats {

        gap: 12px;

    }

    .stat-card {

        min-height: 140px;

        padding: 20px;

    }

    .stat-card strong {

        font-size: 30px;

    }

    .form-row {

        grid-template-columns: 1fr;

        gap: 0;

    }

    .contact-form {

        padding: 23px;

    }

    .education-card {

        flex-direction: column;

        align-items: flex-start;

        padding: 28px;

    }

    .footer-bottom {

        flex-direction: column;

        text-align: center;

    }

}


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

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

    *,
    *::before,
    *::after {

        scroll-behavior: auto !important;

        animation-duration: .01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: .01ms !important;

    }

}


/* =========================================================
   REFINED BRAND TREATMENTS
========================================================= */

/* Keep the page background neutral and let content carry the brand color. */
body {
    background: #f8fafc;
}

.page-bg,
.floating-shape,
.hero-glow {
    display: none;
}

/* Tactile 3D buttons */
.btn,
.nav-cta,
.carousel-button {
    position: relative;
    border: 1px solid rgba(15,23,42,.18);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.45),
        0 5px 0 rgba(15,23,42,.34),
        0 11px 20px rgba(15,23,42,.14);
    transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.btn-primary,
.nav-cta {
    background: linear-gradient(180deg, #fb923c, #ea580c);
}

.btn-secondary {
    color: #fff;
    background: linear-gradient(180deg, #475569, #1e293b);
    border-color: #1e293b;
}

.btn:hover,
.nav-cta:hover,
.carousel-button:hover {
    transform: translateY(-2px);
    filter: brightness(1.06);
}

.btn:active,
.nav-cta:active,
.carousel-button:active {
    transform: translateY(4px);
    box-shadow:
        inset 0 2px 5px rgba(15,23,42,.28),
        0 1px 0 rgba(15,23,42,.28);
}

.community-card .btn {
    color: #fff;
    background: linear-gradient(180deg, #39d66f, #128c3d);
    border-color: #128c3d;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.48),
        0 5px 0 #0c642c,
        0 11px 20px rgba(18,140,61,.20);
}

.community-card .btn:hover {
    color: #fff;
    background: linear-gradient(180deg, #45df7a, #128c3d);
}

/* Native-color platform marks */
.review-platform.platform-linkedin > i { color: #0a66c2; }
.review-platform.platform-upwork > i { color: #14a800; }
.review-platform.platform-whatsapp > i { color: #25d366; }
.review-platform.platform-email > i { color: #ea4335; }

/* Company marks in the career timeline */
.company-line {
    display: flex;
    align-items: center;
    gap: 15px;
}

.company-logo {
    width: 58px;
    height: 58px;
    flex: 0 0 auto;
    object-fit: contain;
    padding: 6px;
    background: #fff;
    border: 1px solid rgba(15,23,42,.08);
    border-radius: 14px;
}

.company-line .timeline-content h3,
.company-line h3 {
    margin-top: 5px;
}

@media (max-width: 650px) {
    .company-line {
        align-items: flex-start;
    }

    .company-logo {
        width: 48px;
        height: 48px;
    }
}
