*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
    font-family: "Inter", sans-serif;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}



:root {
    /* FONTS */
    --font-primary: "Inter", sans-serif;
    --font-accent: "Playfair Display", serif;

    /* COLORS */
    --navy-900: #0F172A;
    --navy-700: #1E3A8A;
    --blue-600: #2563EB;

    --bg-main: #F8FAFC;
    --bg-soft: #F1F5F9;
    --white: #FFFFFF;

    --border: #E2E8F0;

    --text-main: #0F172A;
    --text-body: #475569;
    --text-muted: #94A3B8;

    /* FONT SIZES */
    /* Extra Small */
    --text-xs-size: 12px;
    --text-xs-line: 18px;

    /* Small */
    --text-sm-size: 15px;
    --text-sm-line: 24px;

    /* Base */
    --text-base-size: 16px;
    --text-base-line: 26px;

    /* Medium */
    --text-md-size: 18px;
    --text-md-line: 28px;

    /* Large */
    --text-lg-size: 20px;
    --text-lg-line: 30px;

    /* XL */
    --text-xl-size: 24px;
    --text-xl-line: 34px;

    /* Section Heading */
    --heading-section-size: 28px;
    --heading-section-line: 36px;

    /* Hero Heading */
    --heading-hero-size: 32px;
    --heading-hero-line: 40px;

    /* FONT WEIGHTS */
    --weight-regular: 400;
    --weight-medium: 500;
    --weight-semibold: 600;
    --weight-bold: 700;

    /* SPACING */
    --space-4: 4px;
    --space-8: 8px;
    --space-12: 12px;
    --space-16: 16px;
    --space-20: 20px;
    --space-24: 24px;
    --space-32: 32px;
    --space-40: 40px;
    --space-48: 48px;
    --space-64: 64px;
    --space-80: 80px;
    --space-100: 100px;
}


img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

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

.section {
    padding-top: 60px;
    padding-bottom: 60px;
}

/* FONT SIZE UTILITY */
.text-xs {
    font-size: var(--text-xs-size);
    line-height: var(--text-xs-line);
}

.text-sm {
    font-size: var(--text-sm-size);
    line-height: var(--text-sm-line);
}

.text-base {
    font-size: var(--text-base-size);
    line-height: var(--text-base-line);
}

.text-md {
    font-size: var(--text-md-size);
    line-height: var(--text-md-line);
}

.text-lg {
    font-size: var(--text-lg-size);
    line-height: var(--text-lg-line);
}

.text-xl {
    font-size: var(--text-xl-size);
    line-height: var(--text-xl-line);
}

.hero-heading {
    font-size: var(--heading-hero-size);
    line-height: var(--heading-hero-line);
}

.section-heading {
    font-size: var(--heading-section-size);
    line-height: var(--heading-section-line);
}

@media (min-width: 1024px) {
    :root {
        --heading-hero-size: 48px;
        --heading-hero-line: 56px;

        --heading-section-size: 32px;
        --heading-section-line: 40px;
    }
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.button-primary {
    background: #0F172A;
    color: #FFFFFF;
    font-size: 15px;
    line-height: 20px;
    font-weight: 500;
    padding: 12px 18px;
    border-radius: 8px;
}

.button-primary:hover {
    background: #1E3A8A;
}

.button-secondary {
    background: #FFFFFF;
    color: #0F172A;
    border: 1px solid #E2E8F0;
    font-size: 15px;
    line-height: 20px;
    font-weight: 500;
    padding: 12px 18px;
    border-radius: 8px;

    transition: all 0.2s ease;
}

.button-secondary:hover {
    background: #F8FAFC;
    border-color: #CBD5F5;
    transform: translateY(-1px);
}

.showOn1024 {
    display: none;
}


header {
    position: sticky;
    top: 0;
    border-bottom: 1px solid;
    background: #fff;
    border-color: rgb(228 228 231);
    z-index: 50;
}

header .header-container {
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
}

header .header-container #menuToggle {
    width: 30px;
    height: 30px;
    border: none;
    background: transparent;
    cursor: pointer;
}

header .header-container .brand {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: .2px;
    color: #0F172A;
}


header .header-container button {
    width: 30px;
    height: 30px;
    border: none;
    background: transparent;
    cursor: pointer;
}


/* Mobile menu hidden by default */
#mobileMenu {
    width: 100%;
    padding: 0 24px 0;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transform-origin: top;
    transition: max-height 0.3s ease, opacity 0.25s ease;

}

#mobileMenu.show {
    max-height: 420px;
    opacity: 1;
    padding-bottom: 24px;
}


@media (prefers-reduced-motion: reduce) {
    #mobileMenu {
        transition: none;
    }
}

nav {
    padding-top: 16px;
    display: none;
    gap: 16px;
    color: #0F172A;
}

nav a {
    display: block;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    text-decoration: none;
    color: #0F172A;
    cursor: pointer;
}

nav a:hover {
    text-decoration: underline;
}

nav a#contact {
    border: 1px solid #E2E8F0;
    width: fit-content;
    border-radius: 6px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: background-color 0.25s ease;
}

nav a#contact .contact-icon {
    width: 18px;
    height: 18px;
}

nav a#contact:hover {
    background-color: #F1F5F9 !important;
}

#mobileMenu nav {
    display: flex;
    flex-direction: column;
}

.hero-section {
    background-image: url(../../assets/blue-abstract-bg.jpeg);
    background-size: cover;
    background-repeat: no-repeat;
}


.hero-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.hero-text-content .overline {
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #1E3A8A;
    margin-bottom: 12px;

}

.hero-text-content {
    width: 100%;
    max-width: 688px;
}

.hero-text-content h1 {
    font-family: var(--font-accent);
    font-weight: var(--weight-semibold);
    letter-spacing: -0.5px;
    margin-bottom: var(--space-24);
}

.hero-text-content h1 span {
    color: var(--navy-700)
}

.hero-text-content .hero-intro {
    color: var(--text-body);
    margin-bottom: var(--space-24);
}

.hero-text-content .card-wrapper {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: var(--space-24);

}

.hero-text-content .card-wrapper .experience-card .card-icon {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0px 10px 30px rgba(15, 23, 42, 0.06);
    width: 86px;
    height: 86px;
    flex-shrink: 0;
    margin-bottom: var(--space-24);

}

.hero-text-content .card-wrapper .experience-card .card-text-content h3 {
    font-weight: var(--weight-semibold);
    margin-bottom: var(--space-12);
    color: var(--navy-900);
}

.hero-text-content .card-wrapper .experience-card .card-text-content p {
    color: var(--text-body);
}

.hero-text-content .skill-pills-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.hero-text-content .skill-pills-wrapper .pill {
    background-color: var(--bg-soft);
    border: 1px solid #E2E8F0;
    border-radius: 999px;
    padding: 6px 10px;
    margin-right: 8px;
    margin-bottom: 8px;
    font-weight: 500;
    color: #0F172A;
    width: fit-content;
}

.hero-text-content .hero-btn {
    width: fit-content;
}

.hero-grid .hero-image {
    width: 100%;
    max-width: 500px;
    border-radius: 16px;
}

.hero-grid .hero-image img {
    border-radius: 16px;
}

/* HOW I HELP */

.how-i-help-section .container h2 {
    text-align: center;
    color: var(--navy-900);
    font-weight: var(--weight-bold);
    margin-bottom: var(--space-40);
}

.how-i-help-section .container .how-i-help-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.how-i-help-section .container .how-i-help-wrapper .how-i-help-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0px 10px 30px rgba(15, 23, 42, 0.06);

    display: flex;

    gap: 28px;
    flex-direction: column;
}

.how-i-help-section .container .how-i-help-wrapper .how-i-help-card .icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
}


.how-i-help-section .container .how-i-help-wrapper .how-i-help-card .how-i-help-text-content h3 {
    font-weight: var(--weight-semibold);
    margin-bottom: var(--space-12);
    color: var(--navy-900);

    /* max-width: 280px; */
}

.how-i-help-section .container .how-i-help-wrapper .how-i-help-card .how-i-help-text-content p {
    color: var(--text-body);
    margin-bottom: var(--space-16);
}

.how-i-help-section .container .how-i-help-wrapper .how-i-help-card .how-i-help-text-content .project-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;

}

.how-i-help-section .container .how-i-help-wrapper .how-i-help-card .how-i-help-text-content .project-pills .pill {
    background-color: var(--bg-soft);
    padding: 6px 10px;
    width: fit-content;
    border-radius: 999px;
    font-weight: var(--weight-medium);
    color: var(--font-primary);
}

/* PROJECT SECTION */
.projects-section {
    padding-top: 20px !important;
}

.projects-section .container h2 {
    text-align: center;
    color: var(--navy-900);
    font-weight: var(--weight-bold);
    margin-bottom: var(--space-40);
}

.projects-section .container .projects-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.projects-section .container .projects-wrapper .project-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 16px;

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

    display: flex;
    flex-direction: column;
}

.projects-section .container .projects-wrapper .project-card .project-image {
    display: block;
    overflow: hidden;
}

.projects-section .container .projects-wrapper .project-card .project-image img {
    border-top-right-radius: 15px;
    border-top-left-radius: 15px;
    display: block;
    object-fit: cover;
    aspect-ratio: 16 / 9;
}

.projects-section .container .projects-wrapper .project-card .project-card-text-content {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 20px;
}



.projects-section .container .projects-wrapper .project-card .project-card-text-content h3 {
    font-weight: var(--weight-semibold);
    color: var(--navy-900);
    margin-bottom: var(--space-8);
}

.projects-section .container .projects-wrapper .project-card .project-card-text-content p {
    font-size: 14px;
    line-height: 22px;
    color: var(--text-body);
    margin-bottom: var(--space-24);
}

.projects-section .container .projects-wrapper .project-card .project-badge {
    font-size: 14px;
    padding: 4px 8px;
    background: var(--bg-soft);
    border-radius: 6px;
    color: #0F172A;
}

.projects-section .container .projects-wrapper .project-card .project-link {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    margin-top: auto;
}

.projects-section .container .projects-wrapper .project-card .project-link a {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    font-size: 14px;
    line-height: 22px;
    color: #1E3A8A;
    font-weight: var(--weight-medium);

    width: fit-content;

    text-decoration: none;

    transition: color 0.2s ease, transform 0.2s ease;

}

.projects-section .container .projects-wrapper .project-card .project-link a .arrow {
    transition: transform 0.2s ease;
}

/* Hover */
.projects-section .container .projects-wrapper .project-card .project-link a:hover {
    color: #0F172A;
}

.projects-section .container .projects-wrapper .project-card .project-link a:hover .arrow {
    transform: translateX(4px);
}

footer {
    background-color: var(--navy-900);
    opacity: 95%;
}

footer .container.footer {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    color: #ffffff;
}

footer .container.footer .brand {
    font-weight: var(--weight-semibold);
}

.linkedin-social-container {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-weight: 500;
}

.linkedin-social-container .icon {
    width: 20px;
    height: 20px;
}

@media (min-width: 640px) {
    .hero-text-content .card-wrapper {
        display: flex;
        flex-direction: row;
    }

    .hero-text-content .card-wrapper .experience-card {
        display: flex;
        gap: 28px;
    }

    .hero-text-content .card-wrapper .experience-card .card-icon {
        margin-bottom: 0;
    }

    .hero-text-content .card-wrapper .experience-card .card-text-content {
        width: 200px;
    }

    .hero-text-content .card-wrapper .experience-card:first-child {
        padding-right: 28px;
        border-right: 1px solid #475569;
    }
}

@media (min-width: 768px) {



    header .header-container {
        padding: 16px 24px;
    }

    header #menuToggle {
        display: none;
    }

    header .header-container {
        padding: 16px 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        max-width: 1400px;
        margin: 0 auto;
    }

    nav {
        display: flex;
        align-items: center;
        padding-top: 0;
    }

    .container {
        padding-left: 24px;
        padding-right: 24px;
    }

    .section {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .projects-section .container .projects-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    footer .container.footer {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        gap: 24px;
        color: #ffffff;
    }


}

@media (min-width: 1024px) {
    .showOn1024 {
        display: block;
    }

    .hero-grid .hero-image {
        width: 100%;
    }

    .hero-grid .hero-image img {
        object-fit: cover;
    }

    .hero-grid {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    .hero-text-content h1 {
        font-size: 48px;
        line-height: 56px;
    }

    .how-i-help-section .container .how-i-help-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }



    .projects-section .container .projects-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media (min-width: 1280px) {

    .hero-grid {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    .how-i-help-section .container .how-i-help-wrapper .how-i-help-card {

        flex-direction: row;
    }
}