/* =====================================================
   PORTFOLIO WEBSITE
   HTML + CSS ONLY
===================================================== */


/* =====================================================
   RESET & VARIABLES
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

:root {

    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --secondary: #8b5cf6;

    --dark: #0f172a;
    --dark-2: #1e293b;

    --text: #334155;
    --text-light: #64748b;

    --white: #ffffff;
    --light: #f8fafc;

    --border: #e2e8f0;

    --gradient:
        linear-gradient(
            135deg,
            #6366f1,
            #8b5cf6
        );

    --shadow:
        0 20px 50px rgba(15, 23, 42, 0.08);

    --transition:
        all 0.3s ease;
}


/* =====================================================
   BASIC
===================================================== */

html {
    scroll-padding-top: 90px;
}

body {
    font-family:
        Arial,
        Helvetica,
        sans-serif;

    background: var(--light);

    color: var(--text);

    line-height: 1.7;

    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}

button,
input,
textarea {
    font-family: inherit;
}

.container {
    width: 90%;
    max-width: 1150px;
    margin: 0 auto;
}

.section {
    padding: 110px 0;
}


/* =====================================================
   HEADER
===================================================== */

.header {
    position: fixed;

    width: 100%;

    top: 0;
    left: 0;

    z-index: 99;

    background:
        rgba(255, 255, 255, 0.90);

    backdrop-filter: blur(15px);

    border-bottom:
        1px solid rgba(226, 232, 240, 0.7);
}

.navbar {
    min-height: 75px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}

.logo {
    font-size: 24px;

    font-weight: 800;

    color: var(--dark);

    letter-spacing: -0.5px;
}

.logo span {
    color: var(--primary);
}

.nav-menu {
    display: flex;

    align-items: center;

    gap: 28px;
}

.nav-menu a {
    font-size: 13px;

    font-weight: 700;

    color: var(--text);

    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--primary);
}


/* =====================================================
   HERO
===================================================== */

.hero {

    min-height: 100vh;

    display: flex;

    align-items: center;

    padding-top: 100px;

    position: relative;

    overflow: hidden;

    background:

        radial-gradient(
            circle at 10% 20%,
            rgba(99, 102, 241, 0.10),
            transparent 30%
        ),

        radial-gradient(
            circle at 90% 80%,
            rgba(139, 92, 246, 0.12),
            transparent 30%
        ),

        var(--light);
}

.hero::before {

    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    border-radius: 50%;

    border: 1px solid
        rgba(99, 102, 241, 0.08);

    top: -200px;
    right: -150px;
}

.hero-content {

    display: grid;

    grid-template-columns:
        1.15fr 0.85fr;

    gap: 80px;

    align-items: center;
}


/* HERO TEXT */

.eyebrow {

    display: inline-block;

    color: var(--primary);

    background:
        rgba(99, 102, 241, 0.10);

    padding: 7px 15px;

    border-radius: 30px;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.5px;

    margin-bottom: 22px;
}

.hero-text h1 {

    font-size:
        clamp(45px, 6vw, 75px);

    line-height: 1.03;

    letter-spacing: -3px;

    color: var(--dark);

    margin-bottom: 25px;
}

.hero-text h1 span {

    display: block;

    color: var(--primary);
}

.hero-text > p {

    max-width: 650px;

    color: var(--text-light);

    font-size: 16px;

    margin-bottom: 30px;
}


/* HERO BUTTONS */

.hero-buttons {

    display: flex;

    gap: 12px;

    flex-wrap: wrap;
}

.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 13px 23px;

    border-radius: 10px;

    font-size: 13px;

    font-weight: 800;

    transition: var(--transition);
}

.btn-primary {

    color: white;

    background: var(--gradient);

    box-shadow:
        0 12px 25px
        rgba(99, 102, 241, 0.25);
}

.btn-primary:hover {

    transform: translateY(-3px);

    box-shadow:
        0 18px 35px
        rgba(99, 102, 241, 0.35);
}

.btn-secondary {

    color: var(--dark);

    background: white;

    border: 1px solid var(--border);
}

.btn-secondary:hover {

    color: var(--primary);

    border-color: var(--primary);

    transform: translateY(-3px);
}


/* HERO MINI INFO */

.hero-mini-info {

    display: flex;

    gap: 30px;

    margin-top: 45px;
}

.hero-mini-info div {

    display: flex;

    flex-direction: column;
}

.hero-mini-info strong {

    font-size: 20px;

    color: var(--dark);
}

.hero-mini-info span {

    font-size: 11px;

    color: var(--text-light);

    font-weight: 600;
}


/* =====================================================
   HERO PROFILE
===================================================== */

.hero-visual {

    display: flex;

    justify-content: center;

    align-items: center;
}

.profile-wrapper {

    width: 350px;

    position: relative;
}

.profile-glow {

    position: absolute;

    width: 300px;
    height: 300px;

    background:
        rgba(99, 102, 241, 0.25);

    filter: blur(70px);

    border-radius: 50%;

    top: 50%;
    left: 50%;

    transform:
        translate(-50%, -50%);
}

.profile-card {

    position: relative;

    z-index: 2;

    padding: 9px;

    border-radius: 28px;

    background: var(--gradient);

    box-shadow:
        0 30px 70px
        rgba(79, 70, 229, 0.25);
}

.profile-image {

    height: 400px;

    border-radius: 22px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #e2e8f0,
            #cbd5e1
        );

    display: flex;

    align-items: center;

    justify-content: center;
}

.profile-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.photo-placeholder {

    text-align: center;

    color: #64748b;
}

.photo-icon {

    width: 60px;
    height: 60px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin: 0 auto 15px;

    border-radius: 18px;

    background: white;

    color: var(--primary);

    font-size: 30px;

    box-shadow:
        0 10px 25px
        rgba(15, 23, 42, 0.08);
}

.photo-placeholder strong {

    display: block;

    color: var(--dark);

    font-size: 18px;
}

.photo-placeholder span {

    display: block;

    font-size: 12px;

    margin-top: 4px;
}


/* PROFILE BOTTOM */

.profile-bottom {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 10px;

    padding: 18px 10px 8px;

    color: white;
}

.profile-bottom div {

    display: flex;

    flex-direction: column;
}

.profile-bottom span {

    font-size: 8px;

    letter-spacing: 1px;

    opacity: 0.7;

    font-weight: 700;
}

.profile-bottom strong {

    font-size: 11px;
}


/* FLOATING */

.floating-card {

    position: absolute;

    z-index: 5;

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 12px 15px;

    border-radius: 14px;

    background: white;

    box-shadow: var(--shadow);

    min-width: 175px;
}

.floating-card > span {

    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #f1f5f9;

    border-radius: 10px;

    font-size: 18px;
}

.floating-card strong {

    display: block;

    color: var(--dark);

    font-size: 11px;
}

.floating-card small {

    display: block;

    color: var(--text-light);

    font-size: 9px;
}

.floating-one {

    top: 80px;

    left: -65px;
}

.floating-two {

    right: -65px;

    bottom: 110px;
}


/* =====================================================
   SECTION HEADING
===================================================== */

.section-heading {

    text-align: center;

    margin-bottom: 65px;
}

.section-label {

    display: inline-block;

    color: var(--primary);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 10px;
}

.section-heading h2 {

    color: var(--dark);

    font-size:
        clamp(30px, 4vw, 42px);

    line-height: 1.2;

    letter-spacing: -1px;

    margin-bottom: 12px;
}

.section-heading p {

    max-width: 620px;

    margin: auto;

    color: var(--text-light);

    font-size: 14px;
}


/* =====================================================
   ABOUT
===================================================== */

.about {

    background: white;
}

.about-grid {

    display: grid;

    grid-template-columns:
        0.75fr 1.25fr;

    gap: 75px;

    align-items: center;
}


/* ABOUT HIGHLIGHT */

.about-highlight {

    padding: 45px;

    min-height: 390px;

    border-radius: 28px;

    color: white;

    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #0f172a,
            #1e1b4b
        );

    box-shadow:
        0 25px 60px
        rgba(15, 23, 42, 0.12);
}

.about-highlight::after {

    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    border-radius: 50%;

    background: var(--primary);

    opacity: 0.15;

    right: -100px;
    bottom: -100px;
}

.about-number {

    color: #818cf8;

    font-size: 12px;

    font-weight: 800;

    margin-bottom: 55px;
}

.about-highlight h3 {

    font-size: 32px;

    line-height: 1.2;

    letter-spacing: -1px;

    margin-bottom: 25px;
}

.about-highlight p {

    color: #94a3b8;

    font-size: 13px;

    max-width: 350px;
}


/* ABOUT CONTENT */

.content-tag {

    display: inline-block;

    color: var(--primary);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 12px;
}

.about-content h3 {

    color: var(--dark);

    font-size: 30px;

    line-height: 1.25;

    margin-bottom: 20px;
}

.about-content p {

    color: var(--text-light);

    font-size: 14px;

    margin-bottom: 15px;
}

.about-content strong {

    color: var(--dark);
}


/* =====================================================
   JOURNEY
===================================================== */

.journey {

    background: var(--light);
}

.timeline {

    max-width: 850px;

    margin: auto;

    position: relative;
}

.timeline::before {

    content: "";

    position: absolute;

    top: 0;
    bottom: 0;

    left: 50%;

    width: 2px;

    background: var(--border);

    transform:
        translateX(-50%);
}

.timeline-item {

    width: 50%;

    position: relative;

    padding:
        0 45px 55px;
}

.timeline-item:nth-child(even) {

    margin-left: 50%;
}

.timeline-number {

    position: absolute;

    top: 0;

    font-size: 11px;

    font-weight: 800;

    color: #cbd5e1;
}

.timeline-item:nth-child(odd)
.timeline-number {

    right: 20px;
}

.timeline-item:nth-child(even)
.timeline-number {

    left: 20px;
}

.timeline-dot {

    position: absolute;

    top: 3px;

    width: 13px;
    height: 13px;

    border-radius: 50%;

    background: var(--primary);

    border:
        4px solid white;

    box-shadow:
        0 0 0 3px
        rgba(99, 102, 241, 0.15);
}

.timeline-item:nth-child(odd)
.timeline-dot {

    right: -7px;
}

.timeline-item:nth-child(even)
.timeline-dot {

    left: -7px;
}

.timeline-card {

    background: white;

    border:
        1px solid var(--border);

    border-radius: 18px;

    padding: 25px;

    transition: var(--transition);
}

.timeline-card:hover {

    transform: translateY(-5px);

    box-shadow: var(--shadow);

    border-color:
        rgba(99, 102, 241, 0.25);
}

.timeline-label {

    color: var(--primary);

    font-size: 9px;

    letter-spacing: 1.5px;

    font-weight: 800;
}

.timeline-card h3 {

    color: var(--dark);

    font-size: 20px;

    margin: 5px 0 8px;
}

.timeline-card p {

    color: var(--text-light);

    font-size: 13px;
}


/* =====================================================
   ACHIEVEMENT
===================================================== */

.achievement {

    background: white;
}


/* SUMMARY */

.achievement-summary {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;

    margin-bottom: 80px;
}

.summary-item {

    display: flex;

    align-items: center;

    gap: 20px;

    padding: 25px;

    background: var(--light);

    border:
        1px solid var(--border);

    border-radius: 18px;

    transition: var(--transition);
}

.summary-item:hover {

    transform: translateY(-5px);

    background: white;

    border-color:
        rgba(99, 102, 241, 0.3);

    box-shadow: var(--shadow);
}

.summary-number {

    color: var(--primary);

    font-size: 32px;

    font-weight: 800;
}

.summary-item strong {

    display: block;

    color: var(--dark);

    font-size: 15px;
}

.summary-item small {

    display: block;

    color: var(--text-light);

    font-size: 11px;
}


/* ACHIEVEMENT LIST */

.achievement-list {

    max-width: 1000px;

    margin: auto;
}

.achievement-item {

    display: grid;

    grid-template-columns:
        110px 70px 1fr;

    min-height: 250px;
}


/* INDEX */

.achievement-index {

    text-align: right;

    padding-top: 8px;

    padding-right: 20px;
}

.achievement-index span {

    display: block;

    color: #94a3b8;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1px;
}

.achievement-index strong {

    color: #cbd5e1;

    font-size: 30px;
}


/* LINE */

.achievement-line {

    position: relative;

    display: flex;

    justify-content: center;
}

.achievement-line::before {

    content: "";

    position: absolute;

    top: 0;
    bottom: 0;

    width: 2px;

    background: var(--border);
}

.achievement-item:last-child
.achievement-line::before {

    bottom: 50%;
}


/* ICON */

.achievement-icon {

    width: 55px;
    height: 55px;

    border-radius: 50%;

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;
    justify-content: center;

    background: white;

    border:
        1px solid var(--border);

    font-size: 21px;

    box-shadow:
        0 0 0 8px white,
        0 10px 25px
        rgba(15, 23, 42, 0.08);
}

.gold-icon {

    background: #fffbeb;
}

.silver-icon {

    background: #f8fafc;
}

.leadership-icon {

    background: #f5f3ff;
}


/* CARD */

.achievement-card {

    background: white;

    border:
        1px solid var(--border);

    border-radius: 20px;

    padding: 30px 35px;

    margin-bottom: 35px;

    transition: var(--transition);
}

.achievement-card:hover {

    transform: translateX(5px);

    border-color:
        rgba(99, 102, 241, 0.3);

    box-shadow: var(--shadow);
}


/* BADGE */

.achievement-badge {

    display: inline-flex;

    padding: 6px 13px;

    border-radius: 30px;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 0.8px;

    margin-bottom: 12px;
}

.gold-badge {

    background: #fef3c7;

    color: #b45309;
}

.silver-badge {

    background: #e2e8f0;

    color: #475569;
}

.leadership-badge {

    background: #ede9fe;

    color: #6d28d9;
}


/* LEVEL */

.achievement-level {

    display: block;

    color: var(--primary);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;

    margin-bottom: 8px;
}


/* TITLE */

.achievement-card h3 {

    color: var(--dark);

    font-size: 22px;

    line-height: 1.35;

    margin-bottom: 12px;
}

.achievement-card p {

    max-width: 720px;

    color: var(--text-light);

    font-size: 13px;

    margin-bottom: 20px;
}


/* TAGS */

.achievement-tags {

    display: flex;

    flex-wrap: wrap;

    gap: 8px;
}

.achievement-tags span {

    padding: 6px 10px;

    border-radius: 7px;

    background: #f1f5f9;

    color: #475569;

    font-size: 10px;

    font-weight: 700;
}


/* QUOTE */

.achievement-quote {

    max-width: 800px;

    margin:
        55px auto 0;

    padding: 40px;

    text-align: center;

    color: white;

    border-radius: 25px;

    background:
        linear-gradient(
            135deg,
            #0f172a,
            #1e1b4b
        );

    position: relative;

    overflow: hidden;
}

.achievement-quote::after {

    content: "";

    position: absolute;

    width: 200px;
    height: 200px;

    border-radius: 50%;

    background: var(--primary);

    opacity: 0.15;

    right: -80px;
    top: -100px;
}

.quote-mark {

    color: #818cf8;

    font-family: Georgia, serif;

    font-size: 70px;

    line-height: 0.7;
}

.achievement-quote p {

    max-width: 650px;

    margin:
        15px auto;

    color: #cbd5e1;

    font-size: 14px;

    font-style: italic;
}

.achievement-quote span {

    color: #818cf8;

    font-size: 11px;

    font-weight: 800;
}


/* =====================================================
   VALUES
===================================================== */

.values {

    background: var(--dark);

    color: white;
}

.dark-heading h2 {

    color: white;
}

.dark-heading p {

    color: #94a3b8;
}

.values-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;
}

.value-card {

    position: relative;

    padding: 35px;

    border:
        1px solid
        rgba(255, 255, 255, 0.08);

    border-radius: 20px;

    background:
        rgba(255, 255, 255, 0.03);

    transition: var(--transition);
}

.value-card:hover {

    transform: translateY(-7px);

    background:
        rgba(255, 255, 255, 0.06);

    border-color:
        rgba(129, 140, 248, 0.3);
}

.value-number {

    color: #818cf8;

    font-size: 11px;

    font-weight: 800;
}

.value-icon {

    width: 55px;
    height: 55px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin:
        25px 0 18px;

    border-radius: 15px;

    background:
        rgba(99, 102, 241, 0.15);

    font-size: 22px;
}

.value-card h3 {

    font-size: 21px;

    margin-bottom: 10px;
}

.value-card p {

    color: #94a3b8;

    font-size: 13px;
}


/* =====================================================
   FUTURE
===================================================== */

.future {

    background: white;
}

.future-box {

    position: relative;

    overflow: hidden;

    min-height: 360px;

    display: flex;

    align-items: center;

    padding: 65px;

    border-radius: 30px;

    color: white;

    background:
        radial-gradient(
            circle at 90% 20%,
            rgba(139, 92, 246, 0.35),
            transparent 30%
        ),

        linear-gradient(
            135deg,
            #111827,
            #1e1b4b
        );

    box-shadow:
        0 30px 70px
        rgba(15, 23, 42, 0.15);
}

.future-content {

    position: relative;

    z-index: 2;

    max-width: 700px;
}

.future-content .section-label {

    color: #818cf8;
}

.future-content h2 {

    font-size:
        clamp(32px, 5vw, 48px);

    line-height: 1.1;

    margin-bottom: 20px;
}

.future-content p {

    color: #cbd5e1;

    font-size: 14px;

    margin-bottom: 15px;
}

.future-decoration {

    position: absolute;

    right: 50px;

    bottom: -40px;

    width: 250px;
    height: 250px;

    border-radius: 50%;

    border:
        1px solid
        rgba(129, 140, 248, 0.2);

    display: flex;

    align-items: center;
    justify-content: center;
}

.future-decoration span {

    color: rgba(129, 140, 248, 0.2);

    font-size: 170px;

    font-weight: 100;

    line-height: 1;
}


/* =====================================================
   CONTACT
===================================================== */

.contact {

    background: var(--light);
}

.contact-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 25px;
}

.contact-card {

    padding: 35px;

    background: white;

    border:
        1px solid var(--border);

    border-radius: 22px;

    transition: var(--transition);
}

.contact-card:hover {

    box-shadow: var(--shadow);

    transform: translateY(-5px);
}

.contact-card h3 {

    color: var(--dark);

    font-size: 24px;

    line-height: 1.3;

    margin-bottom: 12px;
}

.contact-card > p {

    color: var(--text-light);

    font-size: 13px;

    margin-bottom: 20px;
}

.contact-info {

    border-top:
        1px solid var(--border);
}

.contact-info div {

    display: flex;

    justify-content: space-between;

    gap: 20px;

    padding: 13px 0;

    border-bottom:
        1px solid var(--border);
}

.contact-info span {

    color: var(--text-light);

    font-size: 12px;
}

.contact-info strong {

    color: var(--dark);

    font-size: 12px;

    text-align: right;
}


/* =====================================================
   FOOTER
===================================================== */

footer {

    background: var(--dark);

    color: #94a3b8;

    padding: 35px 0;
}

.footer-content {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}

.footer-logo {

    display: block;

    color: white;

    font-size: 20px;

    font-weight: 800;

    margin-bottom: 3px;
}

.footer-logo span {

    color: var(--primary);
}

.footer-content p {

    font-size: 11px;
}

.footer-right {

    font-size: 10px;

    color: #64748b;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 950px) {

    .nav-menu {

        gap: 15px;
    }

    .nav-menu a {

        font-size: 11px;
    }

    .hero-content {

        grid-template-columns: 1fr;

        gap: 60px;

        text-align: center;
    }

    .hero-text > p {

        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {

        justify-content: center;
    }

    .hero-mini-info {

        justify-content: center;
    }

    .hero-visual {

        margin-bottom: 50px;
    }

    .about-grid {

        grid-template-columns: 1fr;

        gap: 40px;
    }

    .about-highlight {

        min-height: auto;
    }

    .about-content {

        text-align: center;
    }

    .achievement-summary {

        grid-template-columns: 1fr;
    }

    .values-grid {

        grid-template-columns:
            1fr 1fr;
    }

}


@media (max-width: 700px) {

    .section {

        padding: 80px 0;
    }

    .nav-menu {

        gap: 10px;
    }

    .nav-menu a:nth-child(n+4) {

        display: none;
    }

    .logo {

        font-size: 20px;
    }

    .hero-text h1 {

        font-size: 48px;

        letter-spacing: -2px;
    }

    .profile-wrapper {

        width: 300px;
    }

    .profile-image {

        height: 350px;
    }

    .floating-one {

        left: -30px;
    }

    .floating-two {

        right: -30px;
    }

    .timeline::before {

        left: 8px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {

        width: 100%;

        margin-left: 0;

        padding-left: 40px;

        padding-right: 0;

        text-align: left;
    }

    .timeline-item:nth-child(odd)
    .timeline-number,
    .timeline-item:nth-child(even)
    .timeline-number {

        display: none;
    }

    .timeline-item:nth-child(odd)
    .timeline-dot,
    .timeline-item:nth-child(even)
    .timeline-dot {

        left: 2px;

        right: auto;
    }

    .achievement-item {

        grid-template-columns:
            40px 50px 1fr;
    }

    .achievement-index {

        padding-right: 8px;
    }

    .achievement-index span {

        display: none;
    }

    .achievement-index strong {

        font-size: 20px;
    }

    .achievement-icon {

        width: 45px;
        height: 45px;

        font-size: 17px;
    }

    .achievement-card {

        padding: 22px;

        border-radius: 16px;
    }

    .achievement-card h3 {

        font-size: 18px;
    }

    .values-grid {

        grid-template-columns: 1fr;
    }

    .future-box {

        padding: 45px 30px;
    }

    .future-decoration {

        right: -70px;
    }

    .contact-grid {

        grid-template-columns: 1fr;
    }

    .footer-content {

        flex-direction: column;

        text-align: center;
    }

}


@media (max-width: 500px) {

    .container {

        width: 92%;
    }

    .nav-menu a:nth-child(2),
    .nav-menu a:nth-child(3) {

        display: none;
    }

    .hero {

        padding-top: 110px;
    }

    .hero-text h1 {

        font-size: 42px;
    }

    .hero-mini-info {

        gap: 18px;
    }

    .hero-mini-info strong {

        font-size: 17px;
    }

    .hero-mini-info span {

        font-size: 9px;
    }

    .profile-wrapper {

        width: 270px;
    }

    .profile-image {

        height: 320px;
    }

    .floating-card {

        min-width: 145px;

        padding: 9px;
    }

    .floating-card > span {

        width: 32px;
        height: 32px;
    }

    .floating-one {

        left: -25px;

        top: 50px;
    }

    .floating-two {

        right: -25px;

        bottom: 90px;
    }

    .about-highlight {

        padding: 35px 28px;
    }

    .about-highlight h3 {

        font-size: 28px;
    }

    .achievement-item {

        grid-template-columns:
            25px 40px 1fr;
    }

    .achievement-icon {

        width: 38px;
        height: 38px;

        box-shadow:
            0 0 0 5px white,
            0 8px 15px
            rgba(15, 23, 42, 0.08);
    }

    .achievement-card {

        padding: 18px;
    }

    .achievement-level {

        font-size: 8px;
    }

    .achievement-card h3 {

        font-size: 16px;
    }

    .achievement-card p {

        font-size: 12px;
    }

    .achievement-tags span {

        font-size: 9px;

        padding: 5px 7px;
    }

    .achievement-quote {

        padding: 30px 20px;
    }

    .contact-info div {

        flex-direction: column;

        gap: 3px;
    }

    .contact-info strong {

        text-align: left;
    }

}

