/* =========================================================
   ROOT
========================================================= */

:root {
    --navy: #07111f;
    --navy-light: #0c1a2c;
    --navy-soft: #102238;

    --orange: #ff6b35;
    --orange-light: #ff8a5b;

    --white: #ffffff;
    --off-white: #f6f8fb;

    --text: #172235;
    --muted: #718096;
    --border: #e5eaf0;

    --shadow: 0 20px 50px rgba(7, 17, 31, 0.10);

    --transition: all 0.35s ease;
}


/* =========================================================
   GLOBAL
========================================================= */

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        "Inter",
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;

    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

::selection {
    background: var(--orange);
    color: white;
}

.container {
    width: 88%;
    max-width: 1200px;
}

section {
    scroll-margin-top: 70px;
}

p {
    line-height: 1.8;
}

h1,
h2,
h3,
h4,
h5 {
    font-weight: 700;
    letter-spacing: -0.025em;
}


/* =========================================================
   NAVIGATION
========================================================= */

.main-nav {
    background: rgba(7, 17, 31, 0.94);
    backdrop-filter: blur(15px);
    box-shadow: none;
    height: 72px;
    line-height: 72px;
}

.main-nav .nav-wrapper {
    height: 72px;
}

.brand-logo {
    display: flex !important;
    align-items: center;
    gap: 12px;
    height: 72px;
    font-size: 17px !important;
    font-weight: 700;
}

.logo-mark {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: var(--orange);
    color: white;

    font-size: 13px;
    font-weight: 800;

    border-radius: 7px;
}

.logo-name {
    color: white;
}

.main-nav ul li a {
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition);
}

.main-nav ul li a:hover {
    color: white;
    background: transparent;
}

.nav-contact {
    border: 1px solid rgba(255, 107, 53, 0.7);
    border-radius: 4px;
    margin-left: 12px;
    height: 40px !important;
    line-height: 38px !important;
    margin-top: 16px;
    padding: 0 20px !important;
    color: var(--orange-light) !important;
}

.nav-contact:hover {
    background: var(--orange) !important;
    color: white !important;
}

.sidenav {
    background: var(--navy);
}

.sidenav li > a {
    color: rgba(255, 255, 255, 0.8);
}

.mobile-profile {
    padding: 35px 25px;
    color: white;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.mobile-profile .large {
    width: 55px;
    height: 55px;
    margin-bottom: 15px;
}

.mobile-profile h5 {
    margin: 0 0 6px;
}

.mobile-profile span {
    color: var(--orange-light);
    font-size: 12px;
}


/* =========================================================
   HERO
========================================================= */

.hero-section {
    position: relative;
    min-height: calc(100vh - 72px);

    display: flex;
    align-items: center;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(255, 107, 53, 0.12),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #07111f 0%,
            #0a1829 60%,
            #0d2036 100%
        );

    color: white;
    overflow: hidden;
}

.hero-grid {
    position: absolute;
    inset: 0;

    opacity: 0.15;

    background-image:
        linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);

    background-size: 50px 50px;

    mask-image: linear-gradient(
        to right,
        transparent,
        black 35%,
        black 80%,
        transparent
    );
}

.hero-content {
    position: relative;
    z-index: 2;

    padding: 100px 0 80px;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 9px 14px;

    border: 1px solid rgba(255,255,255,.12);
    border-radius: 30px;

    background: rgba(255,255,255,.04);

    color: #b8c6d8;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: .13em;

    margin-bottom: 25px;
}

.pulse-dot {
    width: 7px;
    height: 7px;

    background: #35d07f;
    border-radius: 50%;

    box-shadow: 0 0 0 5px rgba(53,208,127,.12);

    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 4px rgba(53,208,127,.1);
    }

    50% {
        box-shadow: 0 0 0 9px rgba(53,208,127,0);
    }
}

.hero-section h1 {
    font-size: clamp(52px, 7vw, 92px);
    line-height: .94;
    margin: 0 0 22px;

    letter-spacing: -0.055em;
}

.hero-section h1 span {
    color: var(--orange);
}

.hero-section h2 {
    font-size: clamp(20px, 2.5vw, 30px);
    font-weight: 400;
    color: #d7e0ea;
    margin: 0 0 25px;
}

.hero-description {
    max-width: 680px;

    color: #9dafc2;

    font-size: 16px;
    line-height: 1.9;

    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn-large {
    text-transform: none;
    font-weight: 600;
    letter-spacing: 0;

    border-radius: 4px;

    box-shadow: none !important;
}

.primary-btn {
    background: var(--orange) !important;
}

.primary-btn:hover {
    background: var(--orange-light) !important;
}

.secondary-btn {
    background: transparent !important;

    border: 1px solid rgba(255,255,255,.2);

    color: white !important;
}

.secondary-btn:hover {
    background: rgba(255,255,255,.08) !important;
}

.hero-info {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;

    margin-top: 45px;

    color: #8497ac;
    font-size: 12px;
}

.hero-info div {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-info i {
    color: var(--orange);
    font-size: 18px;
}


/* Hero card */

.hero-card {
    position: relative;

    max-width: 330px;
    margin: 0 auto;

    padding: 50px 35px 30px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.09),
            rgba(255,255,255,.025)
        );

    border: 1px solid rgba(255,255,255,.12);
    border-radius: 10px;

    box-shadow:
        0 35px 80px rgba(0,0,0,.3);

    backdrop-filter: blur(10px);
}

/* .profile-circle {
    width: 130px;
    height: 130px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 35px;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            var(--orange),
            #d94215
        );

    border: 7px solid rgba(255,255,255,.08);

    box-shadow:
        0 20px 50px rgba(255,107,53,.25);
} */

.profile-circle {
    width: 130px;
    height: 130px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 35px;

    border-radius: 50%;
    overflow: hidden;

    background: linear-gradient(
        135deg,
        var(--orange),
        #d94215
    );

    border: 7px solid rgba(255, 255, 255, 0.08);

    box-shadow:
        0 20px 50px rgba(255, 107, 53, 0.25);
}

.profile-image {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;

    border-radius: 50%;
}

.profile-circle span {
    font-size: 35px;
    font-weight: 800;
}

.hero-card-line {
    height: 1px;
    background: rgba(255,255,255,.1);
    margin-bottom: 25px;
}

.card-label,
.eyebrow {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .2em;
    color: var(--orange);
}

.hero-card h4 {
    font-size: 28px;
    line-height: 1.1;
    margin: 10px 0 25px;
}

.profile-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.profile-tags span {
    padding: 6px 9px;

    border: 1px solid rgba(255,255,255,.1);
    border-radius: 3px;

    color: #b4c2d2;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.hero-card-footer {
    display: flex;
    justify-content: space-between;

    margin-top: 40px;

    color: #657b92;

    font-size: 9px;
    letter-spacing: .15em;
}

.technical-corner {
    position: absolute;
    width: 25px;
    height: 25px;
}

.top-left {
    top: 15px;
    left: 15px;
    border-left: 2px solid var(--orange);
    border-top: 2px solid var(--orange);
}

.bottom-right {
    right: 15px;
    bottom: 15px;
    border-right: 2px solid var(--orange);
    border-bottom: 2px solid var(--orange);
}

.scroll-indicator {
    position: absolute;
    bottom: 25px;
    left: 50%;

    transform: translateX(-50%);

    display: flex;
    flex-direction: column;
    align-items: center;

    color: #667b91;

    font-size: 8px;
    letter-spacing: .25em;
}

.scroll-indicator i {
    font-size: 20px;
    margin-top: 3px;
}


/* =========================================================
   SECTIONS
========================================================= */

.section {
    padding: 110px 0;
}

.section-heading {
    display: flex;
    align-items: flex-start;
    gap: 20px;

    margin-bottom: 65px;
}

.section-number {
    color: var(--orange);

    font-size: 12px;
    font-weight: 800;

    padding-top: 6px;
}

.section-heading h2 {
    font-size: clamp(34px, 4vw, 48px);
    margin: 5px 0 0;
}

.light-heading h2 {
    color: white;
}


/* =========================================================
   ABOUT
========================================================= */

.about-section {
    background: var(--off-white);
}

.about-grid {
    display: flex;
    align-items: center;
}

.lead-text {
    font-size: 20px;
    line-height: 1.75;
    font-weight: 500;
}

.about-grid p:not(.lead-text) {
    color: var(--muted);
}

.about-facts {
    margin-left: 50px;
}

.fact {
    display: flex;
    align-items: center;
    gap: 18px;

    padding: 18px 0;

    border-bottom: 1px solid var(--border);
}

.fact-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--orange);

    background: white;
    border-radius: 6px;

    box-shadow: 0 8px 25px rgba(0,0,0,.05);
}

.fact strong,
.fact span {
    display: block;
}

.fact strong {
    font-size: 14px;
}

.fact div span {
    color: var(--muted);
    font-size: 12px;
    margin-top: 4px;
}


/* =========================================================
   STATS
========================================================= */

.stats-section {
    background: var(--orange);
    color: white;
}

.stats-row {
    margin-bottom: 0;
}

.stat {
    text-align: center;
    padding: 30px 10px;
}

.stat strong {
    font-size: 45px;
    line-height: 1;
    font-weight: 800;
}

.stat > span {
    font-size: 28px;
    font-weight: 700;
}

.stat p {
    margin: 10px 0 0;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .12em;
    opacity: .75;
}


/* =========================================================
   EXPERIENCE
========================================================= */

.dark-section {
    background: var(--navy);
    color: white;
}

.timeline {
    position: relative;
}

.timeline::before {
    content: "";

    position: absolute;

    left: 29px;
    top: 0;
    bottom: 0;

    width: 1px;

    background:
        linear-gradient(
            to bottom,
            var(--orange),
            rgba(255,107,53,.1)
        );
}

.timeline-item {
    position: relative;

    display: grid;
    grid-template-columns: 60px 1fr;

    gap: 35px;

    margin-bottom: 80px;
}

.timeline-marker {
    position: relative;
    z-index: 2;

    width: 60px;
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--navy);
    border: 1px solid rgba(255,255,255,.14);

    color: var(--orange);

    font-size: 11px;
    font-weight: 800;
}

.timeline-content {
    padding-top: 4px;
}

.date-label {
    display: inline-block;

    color: var(--orange-light);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: .15em;
}

.timeline-content h3 {
    font-size: 28px;
    margin: 10px 0 4px;
}

.timeline-content h4 {
    margin: 0 0 30px;

    color: #8fa3b8;

    font-size: 14px;
    font-weight: 500;
}

.experience-header {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.experience-badge {
    height: fit-content;

    padding: 7px 10px;

    background: rgba(255,107,53,.1);
    border: 1px solid rgba(255,107,53,.25);

    color: var(--orange-light);

    font-size: 9px;
    letter-spacing: .1em;
}

.projects {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.project-card {
    padding: 28px;

    background: rgba(255,255,255,.035);
    border: 1px solid rgba(255,255,255,.08);

    border-radius: 6px;

    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-5px);

    background: rgba(255,255,255,.055);

    border-color: rgba(255,107,53,.35);
}

.project-number {
    color: var(--orange);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: .15em;
}

.project-card h5 {
    font-size: 17px;
    line-height: 1.4;
    margin: 12px 0;
}

.project-card p {
    color: #8397ad;

    font-size: 12px;
    line-height: 1.7;
}

.project-card ul,
.single-project ul {
    margin-top: 20px;
}

.project-card li,
.single-project li {
    position: relative;

    padding-left: 15px;
    margin-bottom: 8px;

    color: #aab9c8;

    font-size: 11px;
    line-height: 1.6;
}

.project-card li::before,
.single-project li::before {
    content: "";

    position: absolute;
    left: 0;
    top: 8px;

    width: 5px;
    height: 5px;

    background: var(--orange);

    border-radius: 50%;
}

.single-project {
    padding: 30px;

    background: rgba(255,255,255,.035);
    border: 1px solid rgba(255,255,255,.08);

    border-radius: 6px;
}

.single-project h5 {
    font-size: 18px;
}


/* =========================================================
   SKILLS
========================================================= */

.skills-section {
    background: white;
}

.skill-category {
    padding: 35px;

    background: var(--off-white);

    border: 1px solid var(--border);
    border-radius: 8px;

    margin-bottom: 30px;
}

.skill-category-title {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 30px;
}

.skill-category-title i {
    color: var(--orange);
}

.skill-category-title h3 {
    font-size: 18px;
    margin: 0;
}

.skill {
    margin-bottom: 22px;
}

.skill-top {
    display: flex;
    justify-content: space-between;

    margin-bottom: 8px;

    font-size: 11px;
    font-weight: 600;
}

.skill-top span:last-child {
    color: var(--orange);
}

.progress {
    height: 5px;
    margin: 0;
    background: #e2e7ec;
    border-radius: 10px;
}

.progress .determinate {
    background: var(--orange);
    border-radius: 10px;
}

.software-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.software {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 13px;

    background: white;
    border: 1px solid var(--border);

    border-radius: 5px;
}

.software-icon {
    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--navy);
    color: var(--orange);

    font-size: 9px;
    font-weight: 800;

    border-radius: 4px;
}

.software strong,
.software span {
    display: block;
}

.software strong {
    font-size: 11px;
}

.software span {
    margin-top: 3px;

    color: var(--muted);
    font-size: 9px;
}

.languages-section {
    margin-top: 20px;
}

.language-card {
    padding: 20px;

    border: 1px solid var(--border);
    border-radius: 6px;
}

.language-name {
    display: flex;
    justify-content: space-between;
}

.language-name strong {
    font-size: 13px;
}

.language-name span {
    color: var(--muted);
    font-size: 11px;
}

.language-dots {
    display: flex;
    gap: 7px;

    margin-top: 15px;
}

.language-dots span {
    width: 30px;
    height: 5px;

    background: #e5e9ee;

    border-radius: 10px;
}

.language-dots span.active {
    background: var(--orange);
}


/* =========================================================
   EDUCATION
========================================================= */

.education-section {
    background: var(--off-white);
}

.education-list {
    max-width: 950px;
    margin: auto;
}

.education-item {
    position: relative;

    display: grid;
    grid-template-columns: 120px 60px 1fr;

    align-items: center;

    padding: 25px 0;

    border-bottom: 1px solid var(--border);
}

.education-item:last-child {
    border-bottom: none;
}

.education-item.featured {
    padding: 35px;

    background: white;

    border: 1px solid var(--border);
    border-left: 4px solid var(--orange);

    border-radius: 6px;

    box-shadow: var(--shadow);
}

.education-year {
    color: var(--orange);

    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
}

.education-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--navy);
    color: var(--orange);

    border-radius: 5px;
}

.education-content {
    padding-left: 20px;
}

.education-type {
    color: var(--orange);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: .14em;
}

.education-content h3 {
    font-size: 17px;
    margin: 7px 0;
}

.education-content p {
    margin: 2px 0;
    color: var(--muted);
    font-size: 12px;
}

.certification .education-icon {
    background: rgba(255,107,53,.1);
}


/* =========================================================
   VOLUNTEERING
========================================================= */

.volunteering-section {
    background: white;
}

.volunteer-card {
    height: 100%;

    padding: 35px;

    background: var(--off-white);

    border: 1px solid var(--border);
    border-radius: 8px;

    transition: var(--transition);
}

.volunteer-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.volunteer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.volunteer-icon {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--navy);
    color: var(--orange);

    border-radius: 6px;
}

.volunteer-top > span {
    color: var(--muted);
    font-size: 10px;
}

.volunteer-card h3 {
    font-size: 23px;
    margin: 25px 0 10px;
}

.volunteer-card p {
    color: var(--muted);
    font-size: 13px;
}

.role {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    margin-top: 15px;
    padding: 8px 12px;

    background: rgba(255,107,53,.08);

    color: var(--orange);

    font-size: 10px;
    font-weight: 700;
}

.role i {
    font-size: 15px;
}


/* =========================================================
   INTERESTS
========================================================= */

.interests-section {
    background: var(--navy);
    color: white;
}

.interest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.interest-card {
    min-height: 230px;

    padding: 30px;

    background: rgba(255,255,255,.035);
    border: 1px solid rgba(255,255,255,.08);

    border-radius: 6px;

    transition: var(--transition);
}

.interest-card:hover {
    transform: translateY(-7px);
    border-color: rgba(255,107,53,.4);
}

.interest-card i {
    color: var(--orange);
    font-size: 32px;
}

.interest-card h3 {
    font-size: 19px;
    margin: 25px 0 10px;
}

.interest-card p {
    color: #8397ad;
    font-size: 12px;
}


/* =========================================================
   REFERENCES
========================================================= */

.references-section {
    background: var(--off-white);
}

.reference-card {
    height: 100%;

    padding: 30px;

    background: white;

    border: 1px solid var(--border);
    border-radius: 7px;

    box-shadow: 0 10px 30px rgba(7,17,31,.04);
}

.reference-avatar {
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 20px;

    background: var(--navy);
    color: var(--orange);

    border-radius: 50%;

    font-size: 11px;
    font-weight: 800;
}

.reference-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.reference-position {
    color: var(--muted);

    font-size: 11px;
    line-height: 1.6;

    min-height: 45px;
}

.reference-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;

    padding-top: 18px;
    margin-top: 18px;

    border-top: 1px solid var(--border);

    color: #68788b;

    font-size: 10px;
}

.reference-contact span {
    display: flex;
    align-items: center;
    gap: 7px;
}

.reference-contact i {
    color: var(--orange);
    font-size: 15px;
}


/* =========================================================
   CONTACT
========================================================= */

.contact-section {
    position: relative;

    padding: 120px 0;

    background:
        linear-gradient(
            135deg,
            #0a1728,
            #07111f
        );

    color: white;

    overflow: hidden;
}

.contact-pattern {
    position: absolute;
    inset: 0;

    opacity: .1;

    background-image:
        linear-gradient(45deg, transparent 48%, #ff6b35 49%, #ff6b35 51%, transparent 52%);

    background-size: 35px 35px;
}

.contact-content {
    position: relative;
    z-index: 2;

    max-width: 850px;
    margin: auto;

    text-align: center;
}

.contact-content h2 {
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.05;

    margin: 20px 0;
}

.contact-content h2 span {
    color: var(--orange);
}

.contact-content p {
    max-width: 650px;
    margin: 0 auto 35px;

    color: #92a5b9;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}


/* =========================================================
   FOOTER
========================================================= */

.page-footer {
    background: #040b14 !important;
    padding: 45px 0 20px !important;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding-bottom: 35px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;

    color: white;
}

.footer-logo strong {
    font-size: 14px;
}

.page-footer p {
    margin: 12px 0 0;

    color: #5f7185;
    font-size: 11px;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    color: #74879a;
    font-size: 11px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--orange);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;

    padding-top: 20px;

    border-top: 1px solid rgba(255,255,255,.06);

    color: #506275;

    font-size: 9px;
}


/* =========================================================
   ANIMATION
========================================================= */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .8s ease, transform .8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 992px) {

    .hero-content {
        padding-top: 70px;
        padding-bottom: 100px;
    }

    .hero-card {
        margin-top: 60px;
    }

    .about-facts {
        margin-left: 0;
        margin-top: 40px;
    }

    .projects {
        grid-template-columns: 1fr;
    }

    .interest-grid {
        grid-template-columns: 1fr;
    }

    .education-item {
        grid-template-columns: 100px 50px 1fr;
    }
}


@media (max-width: 600px) {

    .container {
        width: 90%;
    }

    .section {
        padding: 75px 0;
    }

    .section-heading {
        margin-bottom: 40px;
    }

    .section-heading h2 {
        font-size: 32px;
    }

    .hero-section {
        min-height: auto;
    }

    .hero-content {
        padding: 65px 0 90px;
    }

    .hero-section h1 {
        font-size: 54px;
    }

    .hero-section h2 {
        font-size: 21px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .btn-large {
        width: 100%;
    }

    .hero-info {
        flex-direction: column;
        gap: 12px;
        margin-top: 30px;
    }

    .hero-card {
        margin-top: 45px;
    }

    .scroll-indicator {
        display: none;
    }

    .stat {
        padding: 25px 5px;
    }

    .stat strong {
        font-size: 32px;
    }

    .stat > span {
        font-size: 20px;
    }

    .stat p {
        font-size: 8px;
    }

    .timeline::before {
        left: 19px;
    }

    .timeline-item {
        grid-template-columns: 40px 1fr;
        gap: 18px;
        margin-bottom: 60px;
    }

    .timeline-marker {
        width: 40px;
        height: 40px;
        font-size: 9px;
    }

    .timeline-content h3 {
        font-size: 22px;
    }

    .experience-header {
        flex-direction: column;
    }

    .project-card,
    .single-project {
        padding: 22px;
    }

    .skill-category {
        padding: 25px;
    }

    .software-grid {
        grid-template-columns: 1fr;
    }

    .education-item,
    .education-item.featured {
        grid-template-columns: 1fr;
        gap: 15px;

        padding: 25px 0;
    }

    .education-item.featured {
        padding: 25px;
    }

    .education-content {
        padding-left: 0;
    }

    .education-icon {
        display: none;
    }

    .interest-grid {
        grid-template-columns: 1fr;
    }

    .interest-card {
        min-height: auto;
    }

    .contact-content h2 {
        font-size: 40px;
    }

    .contact-buttons {
        flex-direction: column;
    }

    .contact-buttons .btn-large {
        width: 100%;
    }

    .footer-main {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 15px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }
}