/* Google fonts */

@font-face {
    font-family: 'Saira Extra Condensed';
    font-style: normal;
    font-weight: 500;
    src: url('../assets/fonts/SairaExtraCondensed-500.ttf') format('truetype');
}

@font-face {
    font-family: 'Saira Extra Condensed';
    font-style: normal;
    font-weight: 700;
    src: url('../assets/fonts/SairaExtraCondensed-700.ttf') format('truetype');
}

@font-face {
    font-family: 'Muli';
    font-style: normal;
    font-weight: 400;
    src: url('../assets/fonts/Muli-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Muli';
    font-style: normal;
    font-weight: 800;
    src: url('../assets/fonts/Muli-ExtraBold.ttf') format('truetype');
}

@font-face {
    font-family: 'Muli';
    font-style: italic;
    font-weight: 400;
    src: url('../assets/fonts/Muli-Italic.ttf') format('truetype');
}

@font-face {
    font-family: 'Muli';
    font-style: italic;
    font-weight: 800;
    src: url('../assets/fonts/Muli-ExtraBoldItalic.ttf') format('truetype');
}


/* Theme System */

:root {
    /* Light Mode */
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-tertiary: rgba(248, 249, 255, 0.8);
    --bg-card: rgba(255, 255, 255, 0.85);
    --bg-card-alt: rgba(255, 255, 255, 0.75);

    --text-primary: #212529;
    --text-secondary: rgba(15, 23, 42, 0.8);
    --text-muted: rgba(15, 23, 42, 0.6);
    --text-faint: rgba(15, 23, 42, 0.55);

    --accent-primary: #4f86f7;
    --accent-hover: #3b71e0;
    --accent-light: rgba(79, 134, 247, 0.2);

    --border-color: rgba(0, 0, 0, 0.08);
    --shadow-color: rgba(15, 23, 42, 0.45);
    --shadow-light: rgba(15, 23, 42, 0.08);

    --nav-bg: #343a40;
    --nav-text: rgba(255, 255, 255, 0.75);
    --nav-text-active: #fff;

    --tag-bg: rgba(15, 23, 42, 0.06);
    --metrics-bg: rgba(255, 255, 255, 0.88);

    --skill-dot-inactive: rgba(79, 134, 247, 0.22);
    --skill-dot-active: #4f86f7;

    --ambient-security:
        radial-gradient(circle at 25% 20%, rgba(79, 134, 247, 0.18), transparent 55%),
        radial-gradient(circle at 85% 10%, rgba(102, 16, 242, 0.15), transparent 60%);
    --ambient-software:
        radial-gradient(circle at 20% 30%, rgba(56, 189, 248, 0.15), transparent 55%),
        radial-gradient(circle at 80% 0%, rgba(79, 134, 247, 0.12), transparent 60%);
}

/* Dark Mode */
[data-theme="dark"] {
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --bg-tertiary: rgba(30, 41, 59, 0.9);
    --bg-card: rgba(30, 41, 59, 0.95);
    --bg-card-alt: rgba(51, 65, 85, 0.75);

    --text-primary: #f1f5f9;
    --text-secondary: rgba(241, 245, 249, 0.85);
    --text-muted: rgba(241, 245, 249, 0.6);
    --text-faint: rgba(241, 245, 249, 0.5);

    --accent-primary: #60a5fa;
    --accent-hover: #93c5fd;
    --accent-light: rgba(96, 165, 250, 0.25);

    --border-color: rgba(255, 255, 255, 0.08);
    --shadow-color: rgba(0, 0, 0, 0.4);
    --shadow-light: rgba(0, 0, 0, 0.25);

    --nav-bg: #1e293b;
    --nav-text: rgba(255, 255, 255, 0.6);
    --nav-text-active: #60a5fa;

    --tag-bg: rgba(255, 255, 255, 0.08);
    --metrics-bg: rgba(51, 65, 85, 0.8);

    --skill-dot-inactive: rgba(96, 165, 250, 0.25);
    --skill-dot-active: #60a5fa;

    --ambient-security:
        radial-gradient(circle at 25% 20%, rgba(59, 130, 246, 0.12), transparent 55%),
        radial-gradient(circle at 85% 10%, rgba(139, 92, 246, 0.1), transparent 60%);
    --ambient-software:
        radial-gradient(circle at 20% 30%, rgba(56, 189, 248, 0.1), transparent 55%),
        radial-gradient(circle at 80% 0%, rgba(59, 130, 246, 0.08), transparent 60%);
}


/* Basic Styles */

html {
    scroll-behavior: smooth;
    scroll-padding-top: clamp(4rem, 7vh, 96px);
}


body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    transition: background-color 0.3s ease, color 0.3s ease;
}


hr {
    border-color: var(--border-color);
    opacity: 0.5;
}

.social-icon {
    background-color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    margin-bottom: 10px;
}

.social-icon:hover {
    background-color: var(--accent-primary);
}

a:not(.nav-link):not(.social-icon):not(.btn) {
    color: var(--accent-primary);
}

a:not(.nav-link):not(.social-icon):not(.btn):hover {
    color: var(--accent-hover);
}

.modern-list {
    list-style: none;
    padding-left: 0;
    display: grid;
    gap: 0.3rem;
}

.modern-list li::before {
    content: "▹";
    color: var(--accent-primary);
    font-weight: 600;
    margin-right: 0.6rem;
}

.modern-list.multi-col {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    column-gap: 2rem;
    row-gap: 0.3rem;
}

.accent-block {
    border-left: 3px solid var(--accent-primary);
    padding-left: 1rem;
    margin: 1rem 0;
    color: var(--text-secondary);
}

.grade-highlight {
    font-weight: 700;
    color: var(--accent-primary);
    margin-top: 1rem;
}

.text-muted {
    color: var(--text-muted) !important;
}

.tag-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag-list li {
    padding: 0.4rem 0.95rem;
    border-radius: 999px;
    background: var(--tag-bg);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.tag-list li a {
    color: var(--accent-primary);
    text-decoration: none;
}

.tag-list li a:hover {
    text-decoration: underline;
}


/* Top Navigation */

.top-nav {
    z-index: 1040;
    background-color: var(--bg-primary) !important;
    border-bottom: 1px solid var(--border-color);
}

.top-nav .nav-link {
    color: var(--accent-primary);
    font-weight: 600;
}

.top-nav .nav-link:hover,
.top-nav .dropdown-item:hover {
    color: var(--accent-hover);
}

.top-nav .dropdown-menu {
    background-color: var(--bg-secondary);
    border-color: var(--border-color);
}

.top-nav .dropdown-item {
    color: var(--text-primary);
}

.top-nav .dropdown-item:hover {
    background-color: var(--bg-tertiary);
}

.theme-toggle,
.lang-toggle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-color: var(--border-color);
    color: var(--text-primary);
    background: var(--bg-secondary);
    transition: all 0.2s ease;
}

.theme-toggle:hover,
.lang-toggle:hover {
    background: var(--accent-primary);
    color: white;
    border-color: var(--accent-primary);
}

[data-theme="dark"] .theme-toggle #themeIcon::before {
    content: "\f186";
}

[data-theme="dark"] .navbar-toggler-icon {
    filter: invert(1);
}

[data-theme="light"] .theme-icon-dark,
[data-theme="dark"] .theme-icon-light {
    display: none;
}

.top-nav .dropdown-menu .dropdown-item.active,
.top-nav .dropdown-menu .dropdown-item.active:hover {
    color: var(--text-primary);
    font-weight: 600;
    background-color: transparent;
}

.top-nav .dropdown-menu .dropdown-item.active:hover {
    background-color: var(--bg-tertiary);
}


/* Side Navigation */

#sideNav {
    background-color: var(--nav-bg) !important;
}

#sideNav .nav-link {
    color: var(--nav-text);
}

#sideNav .nav-link:hover,
#sideNav .nav-link.active {
    color: var(--nav-text-active);
}

#sideNav .nav-item-has-children>.sub-nav {
    list-style: none;
    margin: 0.35rem 0 0 0;
    padding-left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

#sideNav .sub-nav .nav-link {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    padding-left: 1rem;
}

#sideNav .sub-nav .nav-link:hover,
#sideNav .sub-nav .nav-link.active {
    color: #fff;
}

#sideNav.always-open {
    width: 17rem;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#sideNav.always-open .navbar-nav {
    width: 100%;
}

@media (max-width: 991.98px) {
    #sideNav.always-open {
        position: sticky;
        top: 56px;
        width: 100%;
        height: auto;
        flex-direction: row;
        justify-content: center;
        padding: 0.5rem 1rem;
        z-index: 1030;
    }

    body {
        padding-top: 6rem;
    }

    #sideNav.always-open .navbar-nav {
        flex-direction: row;
        justify-content: center;
        gap: 0.75rem;
    }

    #sideNav .nav-item-has-children>.sub-nav {
        display: none;
    }
}

@media (min-width: 992px) {
    #sideNav.always-open {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        height: 100vh;
        padding: 2rem 0;
        padding-inline: 2rem;
    }

    #sideNav.always-open .navbar-brand {
        margin: 0 auto 1.5rem !important;
        margin-inline: auto;
    }

    #sideNav.always-open .navbar-nav {
        margin: 0 !important;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        align-items: flex-start;
    }
}

@media (max-height: 800px) {
    #sideNav .img-profile {
        display: none !important;
    }
}

@media (max-height: 600px) and (min-width: 992px) {
    #sideNav {
        display: none !important;
    }

    body {
        padding-left: 0 !important;
    }

    .container-fluid,
    .resume-section {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
}

[data-theme="dark"] .nav-item .nav-link.active {
    color: var(--text-primary)
}


/* Resume Sections */

.resume-section {
    background-color: var(--bg-primary);
}

.resume-section-content h1,
.resume-section-content h2,
.resume-section-content h3 {
    color: var(--text-primary);
}

.resume-section-content p {
    color: var(--text-secondary);
}

.subheading {
    color: var(--text-muted);
}

.text-primary {
    color: var(--accent-primary) !important;
}

@media (max-width: 991.98px) {
    body {
        padding-top: 0 !important;
    }

    .resume-section {
        padding-top: 2rem;
    }
}


/* Education/Experience */

.flex-shrink-0 .text-primary {
    color: var(--accent-primary) !important;
}


/* Skills */

.skill-atlas {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.skill-chapter {
    position: relative;
    padding: clamp(2rem, 3vw, 3.5rem);
    border-radius: 2rem;
    background: rgba(248, 249, 255, 0.8);
    overflow: hidden;
    scroll-margin-top: clamp(4rem, 8vh, 130px);
}

.skill-ambient {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(13, 110, 253, 0.22), transparent 55%),
        radial-gradient(circle at 80% 0%, rgba(102, 16, 242, 0.18), transparent 60%);
    mix-blend-mode: screen;
    pointer-events: none;
    z-index: 0;
    opacity: 0.85;
}

.skill-hero,
.skill-grid {
    position: relative;
    z-index: 1;
}

.skill-hero {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.skill-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: flex-start;
}

.skill-badges figure {
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.skill-badges figure img {
    display: block;
    max-width: 100%;
    height: auto;
}

.skill-heading {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.skill-heading h3 {
    font-size: clamp(1.9rem, 3vw, 2.5rem);
    margin: 0;
    color: var(--text-primary);
}

.skill-label {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.skill-claim {
    font-weight: 600;
    color: var(--text-secondary);
    margin: 0;
}

.skill-grid {
    margin-top: 1.5rem;
    display: grid;
    gap: 1.5rem;
}

.skill-block {
    background: var(--bg-card-alt);
    border-radius: 1.25rem;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 18px 35px -28px var(--shadow-color);
}

.skill-block h4 {
    margin-bottom: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.skill-block p {
    margin: 0;
    line-height: 1.6;
    color: var(--text-secondary);
}

.skill-block ul {
    margin: 0;
    padding-left: 1.2rem;
    display: grid;
    gap: 0.4rem;
}

.skill-chapter {
    background: var(--bg-tertiary);
}


.skill-metrics div {
    background: var(--metrics-bg);
}

.skill-metrics span {
    color: var(--text-faint);
}

.skill-metrics strong {
    color: var(--text-primary);
}

.skill-dots {
    display: flex;
    gap: 0.25rem;
    margin: 0.5rem 0 0.35rem 0;
}

.skill-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--skill-dot-inactive);
}

.skill-dot.is-active {
    background: var(--skill-dot-active);
}

.skill-block--header {
    grid-column: 1 / -1;
    opacity: 0.65;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: none;
    padding: 0;
}

.skill-block--icons {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
}

.skill-block--icons h4 {
    margin: 0 0 0.2rem;
}

.skill-icon-stack {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.skill-icon-stack img {
    width: 48px;
    height: 48px;
}

@media (min-width: 992px) {
    .skill-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }
}


/* Badges */

.badge-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: var(--gap, 1.5rem);
    align-items: flex-start;
    justify-content: var(--justify, flex-start);
}

.badge-frame {
    display: inline-block;
    padding: 1rem;
    border-radius: 1rem;
    background: var(--bg-card-alt);
    box-shadow: 0 4px 20px -8px var(--shadow-color);
    flex: var(--flex, 0 0 auto);
}

.badge-frame img {
    height: var(--size, 140px);
    width: auto;
    object-fit: contain;
    border-radius: 0.5rem;
}

.badge-frame.has-glow {
    background: radial-gradient(circle, var(--bg-card) 60%, transparent 100%);
}

.badge-frame.dark-graphic {
    background: var(--bg-secondary);
}

.break {
    flex-basis: 100%;
    height: 0;
}

@media (max-width: 600px) {
    .badge-gallery {
        justify-content: center;
    }

    .badge-frame img {
        height: var(--size-mobile, var(--size, 100px));
    }
}


/* Publication Cards */

.publication-grid {
    display: grid;
    gap: 1.5rem;
}

.publication-card {
    border-radius: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-card);
    box-shadow: 0 18px 40px -30px var(--shadow-color);
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.publication-meta .pub-label {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 0.35rem;
}

.publication-meta h3 {
    margin: 0;
    font-size: 1.35rem;
    color: var(--text-primary);
}

.publication-card ul {
    margin: 0;
    padding-left: 1.2rem;
    display: grid;
    gap: 0.35rem;
}

@media (min-width: 768px) {
    .publication-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }
}


/* SUBPAGE LAYOUT */

body.subpage {
    padding-left: 0 !important;
}

.subpage-content {
    min-height: calc(100vh - 160px);
    padding-top: 2rem;
}

.subpage-content h2 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.subpage-content h3 {
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.subpage-content h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.project-card h2 {
    color: var(--text-primary);
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

/* Page Header */
.page-header {
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--accent-primary);
}

.page-header h1 {
    color: var(--text-primary);
}

/* Project Cards */
.project-card {
    padding: 2rem;
    border-radius: 1.5rem;
    background: var(--bg-card);
    box-shadow: 0 10px 40px -20px var(--shadow-color);
}

.project-card h2 {
    color: var(--text-primary);
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.project-card p {
    color: var(--text-secondary);
}

.btn-primary {
    background-color: var(--accent-primary);
    border-color: var(--accent-primary);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
}

.btn-outline-secondary {
    color: var(--text-secondary);
    border-color: var(--border-color);
}

.btn-outline-secondary:hover {
    background-color: var(--bg-tertiary);
    color: var(--text-primary);
}


/* Lightbox */

.img-clickable {
    cursor: zoom-in;
    transition: transform 0.2s ease;
}

.img-clickable:hover {
    transform: scale(1.02);
}

#imgModal .modal-dialog {
    max-width: 90vw;
    display: flex;
    justify-content: center;
}

#imgModal .modal-content {
    background: transparent !important;
    border: none;
    width: auto;
}

#imgModal .modal-content img {
    max-height: 90vh;
    max-width: 90vw;
    object-fit: contain;
}


/* Image Carousel */

#imageCarousel .carousel-inner {
    height: 60vh;
    min-height: 300px;
    max-height: 600px;
}

#imageCarousel .carousel-item {
    height: 100%;
}

#imageCarousel .carousel-item img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    background-color: var(--bg-card);
}

/* Navigation History Bar */

.nav-history-bar {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    display: flex;
    gap: 0.5rem;
    z-index: 1050;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.nav-history-bar.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.nav-history-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px -5px var(--shadow-color);
    transition: all 0.2s ease;
}

.nav-history-btn:hover:not(:disabled) {
    background: var(--accent-primary);
    color: white;
    border-color: var(--accent-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px -5px var(--shadow-color);
}

.nav-history-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.nav-history-btn:active:not(:disabled) {
    transform: translateY(0);
}

.nav-history-btn {
    position: relative;
}

.nav-history-btn::before {
    content: attr(aria-label);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.4rem 0.7rem;
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-size: 0.75rem;
    border-radius: 0.5rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    margin-bottom: 0.5rem;
    box-shadow: 0 2px 10px -3px var(--shadow-color);
}

.nav-history-btn:hover::before {
    opacity: 1;
}

@media (max-width: 991.98px) {
    .nav-history-bar {
        bottom: 1rem;
        right: 1rem;
    }

    .nav-history-btn {
        width: 40px;
        height: 40px;
    }
}

.nav-history-bar.at-top #scrollToTop {
    opacity: 0.35;
    cursor: not-allowed;
}

.nav-history-btn.is-hidden {
    display: none;
}

.nav-history-btn {
    transition: all 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.nav-history-btn.is-hidden {
    opacity: 0;
    pointer-events: none;
    width: 0;
    padding: 0;
    margin: 0;
    border: none;
    overflow: hidden;
}


/* Contact Header Image */

.contact-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

.contact-header-text {
    flex: 1;
}

.img-profile-inline {
    display: none;
    width: 150px;
    height: 150px;
    object-fit: cover;
    box-shadow: 0 8px 30px -10px var(--shadow-color);
}

@media (max-height: 800px) {
    .img-profile-inline {
        display: block;
    }
}

@media (max-height: 600px) and (min-width: 992px) {
    .img-profile-inline {
        display: block;
        width: 200px;
        height: 200px;
        margin-bottom: 1rem;
    }

    #contact {
        padding-top: 2rem;
    }
}

@media (max-width: 991.98px) {
    .img-profile-inline {
        display: block;
        width: 150px;
        height: 150px;
    }

    .contact-header {
        flex-direction: row;
        align-items: center;
    }

    #contact {
        padding-top: 2rem;
    }
}

@media (max-width: 576px) {
    .contact-header {
        flex-direction: column-reverse;
        align-items: center;
        text-align: center;
    }

    .img-profile-inline {
        width: 140px;
        height: 140px;
        margin-bottom: 1rem;
    }
}


/* Scroll Padding Adjustment for Small Screens */

@media (max-width: 991.98px) {
    html {
        scroll-padding-top: 180px;
    }
}


/* Terminal Logo */

.navbar-brand.terminal-brand {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-family: "Courier New", "Monaco", monospace;
    font-weight: 600;
    font-size: 1rem;
}

.terminal-prompt {
    color: var(--accent-primary);
    font-weight: 700;
}

.terminal-command {
    color: var(--text-primary);
    font-weight: 600;
}

.terminal-command::after {
    content: "▋";
    color: var(--accent-primary);
    margin-left: 2px;
}

@media (min-width: 992px) {

    .terminal-prompt,
    .terminal-command {
        font-size: calc(0.75rem + 0.5vw) !important;
    }
}


/* Link Decorations */

body a[href^="#"]:not(.nav-link):not(.social-icon):not(.btn):not(.js-scroll-trigger) {
    text-decoration: underline dotted var(--accent-primary) !important;
    text-underline-offset: 3px;
    text-decoration-thickness: 1.5px !important;
}

body a[href$=".html"]:not(.nav-link):not(.btn):not(.dropdown-item):not(.navbar-brand) {
    text-decoration: underline dashed var(--accent-primary) !important;
    text-underline-offset: 3px;
    text-decoration-thickness: 1.5px;
}

body a[href^="http"]:not(.social-icon):not(.btn) {
    text-decoration: underline solid var(--accent-primary) !important;
    text-underline-offset: 3px;
    text-decoration-thickness: 1.5px;
}