/* IMPORTS & CSS VARIABLES */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
    --themeColor: #42EABD;
    --link-color-light-theme: #00c28e;
    --link-color-dark-theme: #00ffbb;
    --background-light: #FFFFFF;
    --background-dark: #0C0C0D;
    --text-light: #666565ec;
    --text-dark: #f5f5f5e0;
    --headers-light: #0e0d0d;
    --headers-dark: #fcfcfc;
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 8rem;
}

/* RESET & BASE */
*,
::after,
::before {
    box-sizing: border-box;
}

html {
    font-family: 'Inter', 'Maven Pro', Arial, sans-serif;
    font-size: clamp(16px, 2.5vw, 18px);
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    scroll-behavior: smooth;
}

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
section {
    display: block;
}

body {
    margin: 0;
    transition: background-color 0.3s, color 0.3s;
}

[tabindex="-1"]:focus {
    outline: 0 !important;
}

[hidden] {
    display: none !important;
}

/* TYPOGRAPHY */
body p {
    text-align: justify;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: var(--text-light);
    hyphens: auto;
}

body.dark-mode p {
    color: var(--text-dark);
}

body.light-mode strong,
body.light-mode em,
body.light-mode blockquote,
body.light-mode small,
body.light-mode p {
    color: var(--text-light);
}

body.dark-mode strong,
body.dark-mode em,
body.dark-mode blockquote,
body.dark-mode small,
body.dark-mode p {
    color: var(--text-dark);
}

/* Headers */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: bold;
    letter-spacing: -1px;
    margin-bottom: 1rem;
    color: var(--headers-light);
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2.25rem;
}

h4 {
    font-size: 2rem;
}

h5 {
    font-size: 1.75rem;
}

h6 {
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.75rem;
    }

    h4 {
        font-size: 1.5rem;
    }

    h5 {
        font-size: 1.25rem;
    }

    h6 {
        font-size: 1rem;
    }
}

/* Text Elements */
hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, .1);
}

b,
strong {
    font-weight: bolder;
}

small,
.small {
    font-size: 80%;
    font-weight: 400;
}

sub,
sup {
    position: relative;
    font-size: 75%;
    line-height: 0;
    vertical-align: baseline;
}

sub {
    bottom: -.25em;
}

sup {
    top: -.5em;
}

abbr[data-original-title],
abbr[title] {
    text-decoration: underline dotted;
    cursor: help;
    border-bottom: 0;
}

address {
    margin-bottom: 1rem;
    font-style: normal;
    line-height: inherit;
}

/* Lists */
dl,
ol,
ul {
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--text-light);
}

li {
    color: inherit;
}

body.dark-mode dl,
body.dark-mode ol,
body.dark-mode ul,
body.dark-mode li {
    color: var(--text-dark);
}

ol ol,
ol ul,
ul ol,
ul ul {
    margin-bottom: 0;
}

dt {
    font-weight: 700;
}

dd {
    margin-bottom: .5rem;
    margin-left: 0;
}

.list-unstyled {
    padding-left: 0;
    list-style: none;
}

.list-inline {
    padding-left: 0;
    list-style: none;
}

.list-inline-item {
    display: inline-block;
}

.list-inline-item:not(:last-child) {
    margin-right: .5rem;
}

/* Blockquote */
blockquote {
    margin: 0;
    padding: 1em 2em;
    text-align: center;
    position: relative;
    font-style: italic;
    border-left: 5px solid var(--themeColor);
    border-radius: 8px;
}

blockquote p {
    text-align: center;
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.5;
}

blockquote:before {
    content: open-quote;
    font-size: 3rem;
    position: absolute;
    left: 1%;
    top: -1%;
    color: var(--themeColor);
}

blockquote:after {
    content: close-quote;
    font-size: 3rem;
    position: absolute;
    right: 1%;
    bottom: -1%;
    color: var(--themeColor);
}

/* Links */
a {
    color: var(--link-color-light-theme);
    text-decoration: none;
    font-weight: normal;
    transition: all 0.4s ease;
}

body.dark-mode a {
    color: var(--link-color-dark-theme);
}

a:hover {
    color: var(--themeColor) !important;
}

a:not([href]):not([tabindex]) {
    color: inherit;
    text-decoration: none;
}

a:not([href]):not([tabindex]):focus,
a:not([href]):not([tabindex]):hover {
    color: inherit;
    text-decoration: none;
}

a:not([href]):not([tabindex]):focus {
    outline: 0;
}

/* Code */
code,
kbd,
pre,
samp {
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 1em;
}

code {
    font-size: 87.5%;
    color: #e83e8c;
    word-break: break-word;
}

a>code {
    color: inherit;
}

kbd {
    padding: .2rem .4rem;
    font-size: 87.5%;
    color: #fff;
    background-color: #212529;
    border-radius: .2rem;
}

pre {
    color: #e83e8c;
    border-style: none;
    overflow: auto;
    position: relative;
    padding-top: 2%;
}

pre code {
    font-size: inherit;
    color: inherit;
    word-break: normal;
}

.pre-scrollable {
    max-height: 340px;
    overflow-y: scroll;
}

.copy-button {
    background: none;
    border: none;
    color: #e83e8c;
}

/* IMAGES & FIGURES */
img {
    vertical-align: middle;
    border-style: none;
    border-radius: 1.25%;
}

svg {
    overflow: hidden;
    vertical-align: middle;
}

figure {
    margin: 0 0 1rem;
}

.figure {
    display: inline-block;
}

.figure-img {
    margin-bottom: .5rem;
    line-height: 1;
}

.figure-caption {
    font-size: 90%;
    color: #6c757d;
}

.img-fluid {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 2rem auto;
}

.img-thumbnail {
    padding: .25rem;
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: .25rem;
    max-width: 100%;
    height: auto;
}

/* Blog Images */
.blog-header-image {
    width: 100%;
    max-width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin: 0 auto 3rem auto;
}

.blog-content-image {
    max-width: 90%;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
    .blog-header-image {
        max-height: 300px;
        border-radius: 8px;
        margin: 0 auto 2rem auto;
    }

    .blog-content-image {
        max-width: 100%;
        margin: 1.5rem auto;
    }
}

.col-lg-12 img:not(.blog-header-image),
article img:not(.blog-header-image) {
    display: block;
    margin: 1.5rem auto;
    max-width: 100%;
    height: auto;
}

@media (min-width: 768px) {

    .col-lg-12 img:not(.blog-header-image),
    article img:not(.blog-header-image) {
        max-width: 75%;
    }
}

@media (max-width: 767px) {

    .col-lg-12 img:not(.blog-header-image),
    article img:not(.blog-header-image) {
        max-width: 100%;
    }
}

.col-lg-12 iframe,
article iframe {
    display: block;
    margin: 1.5rem auto;
    max-width: 100%;
    border-radius: 8px;
}

/* BUTTONS (Minimal) */
button {
    border-radius: 0;
}

button:focus {
    outline: 1px dotted;
    outline: 5px auto -webkit-focus-ring-color;
}

button,
input,
optgroup,
select,
textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

button,
input {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

select {
    word-wrap: normal;
}

[type=button],
[type=reset],
[type=submit],
button {
    -webkit-appearance: button;
    appearance: button;
}

[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled),
button:not(:disabled) {
    cursor: pointer;
}

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button::-moz-focus-inner {
    padding: 0;
    border-style: none;
}

.custom-btn {
    background: #eee;
    color: #5b5b5b;
    font-weight: bold;
    border-radius: 50px;
    padding: 13px 29px;
    font-size: 14px;
    line-height: normal;
    overflow: hidden;
    transition: all 0.4s ease;
    display: block;
    margin: 10px 0;
    text-align: center;
}

.custom-btn:hover {
    color: var(--themeColor);
}

.custom-btn.custom-btn-bg {
    background: #474559;
    color: #ffffff;
}

.custom-btn.custom-btn-bg:hover {
    background: var(--themeColor);
    color: #ffffff !important;
}

/* GRID SYSTEM */
.container {
    max-width: 100%;
    padding-right: 15%;
    padding-left: 15%;
}

.container-fluid {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    margin-right: auto;
    margin-left: auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.no-gutters {
    margin-right: 0;
    margin-left: 0;
}

.no-gutters>.col,
.no-gutters>[class*=col-] {
    padding-right: 0;
    padding-left: 0;
}

/* Base columns */
.col,
.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col-lg,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.col {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
}

.col-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
}

.col-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
}

.col-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
}

.col-3 {
    flex: 0 0 25%;
    max-width: 25%;
}

.col-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

.col-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
}

.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.col-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
}

.col-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
}

.col-9 {
    flex: 0 0 75%;
    max-width: 75%;
}

.col-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
}

.col-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
}

.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

/* Large breakpoint (992px+) */
@media (min-width: 992px) {
    .col-lg {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%;
    }

    .col-lg-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: 100%;
    }

    .col-lg-1 {
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }

    .col-lg-2 {
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }

    .col-lg-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-lg-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .col-lg-5 {
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-lg-7 {
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }

    .col-lg-8 {
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }

    .col-lg-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-lg-10 {
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }

    .col-lg-11 {
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }

    .col-lg-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* UTILITIES */
/* Display */
.d-none {
    display: none !important;
}

.d-inline {
    display: inline !important;
}

.d-inline-block {
    display: inline-block !important;
}

.d-block {
    display: block !important;
}

.d-flex {
    display: flex !important;
}

.d-inline-flex {
    display: inline-flex !important;
}

/* Flexbox */
.flex-row {
    flex-direction: row !important;
}

.flex-column {
    flex-direction: column !important;
}

.flex-wrap {
    flex-wrap: wrap !important;
}

.flex-nowrap {
    flex-wrap: nowrap !important;
}

.flex-grow-1 {
    flex-grow: 1 !important;
}

.justify-content-start {
    justify-content: flex-start !important;
}

.justify-content-end {
    justify-content: flex-end !important;
}

.justify-content-center {
    justify-content: center !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.justify-content-around {
    justify-content: space-around !important;
}

.align-items-start {
    align-items: flex-start !important;
}

.align-items-end {
    align-items: flex-end !important;
}

.align-items-center {
    align-items: center !important;
}

.align-items-baseline {
    align-items: baseline !important;
}

.align-items-stretch {
    align-items: stretch !important;
}

.align-self-start {
    align-self: flex-start !important;
}

.align-self-end {
    align-self: flex-end !important;
}

.align-self-center {
    align-self: center !important;
}

.align-self-stretch {
    align-self: stretch !important;
}

/* Spacing - Margin */
.m-0 {
    margin: 0 !important;
}

.m-1 {
    margin: .25rem !important;
}

.m-2 {
    margin: .5rem !important;
}

.m-3 {
    margin: 1rem !important;
}

.m-4 {
    margin: 1.5rem !important;
}

.m-5 {
    margin: 3rem !important;
}

.m-auto {
    margin: auto !important;
}

.mt-0,
.my-0 {
    margin-top: 0 !important;
}

.mt-1,
.my-1 {
    margin-top: .25rem !important;
}

.mt-2,
.my-2 {
    margin-top: .5rem !important;
}

.mt-3,
.my-3 {
    margin-top: 1rem !important;
}

.mt-4,
.my-4 {
    margin-top: 1.5rem !important;
}

.mt-5,
.my-5 {
    margin-top: 3rem !important;
}

.mt-auto,
.my-auto {
    margin-top: auto !important;
}

.mr-0,
.mx-0 {
    margin-right: 0 !important;
}

.mr-1,
.mx-1 {
    margin-right: .25rem !important;
}

.mr-2,
.mx-2 {
    margin-right: .5rem !important;
}

.mr-3,
.mx-3 {
    margin-right: 1rem !important;
}

.mr-4,
.mx-4 {
    margin-right: 1.5rem !important;
}

.mr-5,
.mx-5 {
    margin-right: 3rem !important;
}

.mr-auto,
.mx-auto {
    margin-right: auto !important;
}

.mb-0,
.my-0 {
    margin-bottom: 0 !important;
}

.mb-1,
.my-1 {
    margin-bottom: .25rem !important;
}

.mb-2,
.my-2 {
    margin-bottom: .5rem !important;
}

.mb-3,
.my-3 {
    margin-bottom: 1rem !important;
}

.mb-4,
.my-4 {
    margin-bottom: 1.5rem !important;
}

.mb-5,
.my-5 {
    margin-bottom: 3rem !important;
}

.mb-auto,
.my-auto {
    margin-bottom: auto !important;
}

.ml-0,
.mx-0 {
    margin-left: 0 !important;
}

.ml-1,
.mx-1 {
    margin-left: .25rem !important;
}

.ml-2,
.mx-2 {
    margin-left: .5rem !important;
}

.ml-3,
.mx-3 {
    margin-left: 1rem !important;
}

.ml-4,
.mx-4 {
    margin-left: 1.5rem !important;
}

.ml-5,
.mx-5 {
    margin-left: 3rem !important;
}

.ml-auto,
.mx-auto {
    margin-left: auto !important;
}

/* Spacing - Padding */
.p-0 {
    padding: 0 !important;
}

.p-1 {
    padding: .25rem !important;
}

.p-2 {
    padding: .5rem !important;
}

.p-3 {
    padding: 1rem !important;
}

.p-4 {
    padding: 1.5rem !important;
}

.p-5 {
    padding: 3rem !important;
}

.pt-0,
.py-0 {
    padding-top: 0 !important;
}

.pt-1,
.py-1 {
    padding-top: .25rem !important;
}

.pt-2,
.py-2 {
    padding-top: .5rem !important;
}

.pt-3,
.py-3 {
    padding-top: 1rem !important;
}

.pt-4,
.py-4 {
    padding-top: 1.5rem !important;
}

.pt-5,
.py-5 {
    padding-top: 3rem !important;
}

.pr-0,
.px-0 {
    padding-right: 0 !important;
}

.pr-1,
.px-1 {
    padding-right: .25rem !important;
}

.pr-2,
.px-2 {
    padding-right: .5rem !important;
}

.pr-3,
.px-3 {
    padding-right: 1rem !important;
}

.pr-4,
.px-4 {
    padding-right: 1.5rem !important;
}

.pr-5,
.px-5 {
    padding-right: 3rem !important;
}

.pb-0,
.py-0 {
    padding-bottom: 0 !important;
}

.pb-1,
.py-1 {
    padding-bottom: .25rem !important;
}

.pb-2,
.py-2 {
    padding-bottom: .5rem !important;
}

.pb-3,
.py-3 {
    padding-bottom: 1rem !important;
}

.pb-4,
.py-4 {
    padding-bottom: 1.5rem !important;
}

.pb-5,
.py-5 {
    padding-bottom: 3rem !important;
}

.pl-0,
.px-0 {
    padding-left: 0 !important;
}

.pl-1,
.px-1 {
    padding-left: .25rem !important;
}

.pl-2,
.px-2 {
    padding-left: .5rem !important;
}

.pl-3,
.px-3 {
    padding-left: 1rem !important;
}

.pl-4,
.px-4 {
    padding-left: 1.5rem !important;
}

.pl-5,
.px-5 {
    padding-left: 3rem !important;
}

/* Text */
.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

.text-center {
    text-align: center !important;
}

.text-justify {
    text-align: justify !important;
}

.text-lowercase {
    text-transform: lowercase !important;
}

.text-uppercase {
    text-transform: uppercase !important;
}

.text-capitalize {
    text-transform: capitalize !important;
}

.font-weight-light {
    font-weight: 300 !important;
}

.font-weight-normal {
    font-weight: 400 !important;
}

.font-weight-bold {
    font-weight: 700 !important;
}

.font-italic {
    font-style: italic !important;
}

.text-white {
    color: #fff !important;
}

.text-muted {
    color: #6c757d !important;
}

.text-decoration-none {
    text-decoration: none !important;
}

/* Visibility */
.visible {
    visibility: visible !important;
}

.invisible {
    visibility: hidden !important;
}

/* COLLAPSE */
.collapse:not(.show) {
    display: none;
}

.collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    transition: height .35s ease;
}

@media (prefers-reduced-motion: reduce) {
    .collapsing {
        transition: none;
    }
}

.fade {
    transition: opacity .15s linear;
}

@media (prefers-reduced-motion: reduce) {
    .fade {
        transition: none;
    }
}

.fade:not(.show) {
    opacity: 0;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 999999;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 0.20rem 2rem;
    background-color: var(--background-light);
    will-change: transform;
    transition: transform 200ms linear, background-color 0.3s ease;
}

.navbar>.container,
.navbar>.container-fluid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.navbar[class*="-unpinned"] {
    transform: translate(0, -150%);
}

.navbar[class*="-pinned"] {
    transform: translate(0, 0);
}

.navbar[class*="headroom--not-top"] {
    background: #ffffff;
    padding-top: 0;
    padding-bottom: 0;
}

.navbar-brand {
    display: inline-block;
    padding-top: .3125rem;
    padding-bottom: .3125rem;
    margin-right: 1rem;
    font-size: 1.25rem;
    font-weight: bold;
    line-height: inherit;
    white-space: nowrap;
}

.navbar-brand:focus,
.navbar-brand:hover {
    text-decoration: none;
}

.navbar-brand .uil {
    font-size: 40px;
}

.navbar-nav {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.navbar-nav .nav-link {
    padding-right: 0;
    padding-left: 0;
}

.navbar-collapse {
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center;
}

.navbar-toggler {
    padding: .25rem .75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border: none;
    border-radius: .25rem;
}

.navbar-toggler:focus,
.navbar-toggler:hover {
    text-decoration: none;
    outline: none;
}

.navbar-toggler-icon {
    background: #212121;
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    transition: all 0.4s ease;
    position: relative;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:first-child {
    transform: rotate(45deg);
    top: 6px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:nth-child(2) {
    display: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:last-child {
    transform: rotate(-45deg);
    bottom: 1px;
}

/* Navbar expand at SM breakpoint */
@media (max-width: 575.98px) {

    .navbar-expand-sm>.container,
    .navbar-expand-sm>.container-fluid {
        padding-right: 0;
        padding-left: 0;
    }
}

@media (min-width: 576px) {
    .navbar-expand-sm {
        flex-flow: row nowrap;
        justify-content: flex-start;
    }

    .navbar-expand-sm .navbar-nav {
        flex-direction: row;
    }

    .navbar-expand-sm .navbar-nav .nav-link {
        padding-right: .5rem;
        padding-left: .5rem;
    }

    .navbar-expand-sm>.container,
    .navbar-expand-sm>.container-fluid {
        flex-wrap: nowrap;
    }

    .navbar-expand-sm .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
    }

    .navbar-expand-sm .navbar-toggler {
        display: none;
    }
}

/* Nav */
.nav {
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.nav-link {
    display: block;
    padding: .5rem 1rem;
    font-weight: bold;
    overflow: hidden;
}

.nav-link:focus,
.nav-link:hover {
    text-decoration: none;
}

.nav-link.disabled {
    pointer-events: none;
    cursor: default;
}

.nav-link span {
    position: relative;
    display: inline-block;
    transition: transform 0.3s;
}

/* Navbar Light */
.navbar-light .navbar-brand {
    color: rgba(0, 0, 0, .9);
}

.navbar-light .navbar-brand:focus,
.navbar-light .navbar-brand:hover {
    color: rgba(0, 0, 0, .9);
}

.navbar-light .navbar-nav .nav-link {
    color: var(--text-light);
}

.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
    color: var(--themeColor);
    font-weight: bold;
}

.navbar-light .navbar-nav .nav-link.disabled {
    color: rgba(0, 0, 0, .3);
}

.navbar-light .navbar-nav .active>.nav-link,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .show>.nav-link {
    color: rgba(0, 0, 0, .9);
}

.navbar-light .navbar-toggler-icon {
    background: none;
}

.navbar-expand-sm .navbar-nav .nav-link {
    padding: 0 20px;
}

/* CARD (Blog Card) */
.card {
    position: relative;
    margin-bottom: 24px;
    border-radius: 15px;
    overflow: hidden;
    border: none;
}

.card__image-container {
    position: relative;
    overflow: hidden;
}

.card__image {
    width: 100%;
    height: auto;
    transition: filter 0.3s ease, transform 0.3s ease;
    border: none;
}

.card__image-container:hover .card__image {
    filter: grayscale(100%) brightness(80%);
    opacity: 0.7;
}

.card__overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card__image-container:hover .card__overlay {
    opacity: 1;
}

.card__title {
    font-size: 125%;
    color: var(--headers-dark);
}

.card__date {
    font-size: 100%;
    color: var(--headers-dark);
}

@media (max-width: 768px) {
    .full-screen {
        padding: 5rem 0 3rem 0;
    }
    
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* LOADER */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.loader-light {
    background: var(--background-light);
}

.loader-dark {
    background: var(--background-dark);
}

.dot {
    width: 10px;
    height: 10px;
    background-color: #333;
    border-radius: 50%;
    margin: 0 5px;
    animation: dotJump 1s infinite;
}

.dot:nth-child(1) {
    animation-delay: 0s;
}

.dot:nth-child(2) {
    animation-delay: 0.1s;
}

.dot:nth-child(3) {
    animation-delay: 0.2s;
}

.dot:nth-child(4) {
    animation-delay: 0.3s;
}

@keyframes dotJump {

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

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

.line {
    width: 80px;
    height: 2px;
    background-color: #333;
    margin-left: 5px;
}

/* FULL SCREEN SECTION */
.full-screen {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.small-text {
    color: #5b5b5b;
    font-size: 14px;
    font-weight: bold;
    padding: 8px 16px;
    border-radius: 50px;
    letter-spacing: 0.2px;
}

p {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .full-screen {
        padding: 5rem 0 3rem 0;
    }
    
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* COLOR MODE TOGGLE */
.color-mode {
    font-weight: bold;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.color-mode-icon {
    cursor: pointer;
    font-size: 115%;
    width: 20px;
    height: 20px;
    align-items: center;
    justify-content: center;
}

.color-mode-icon:after {
    font-family: 'Font Awesome 6 Free';
    content: '\f186';
    font-size: 115%;
    width: 20px;
    height: 20px;
}

.color-mode-icon.active:after {
    content: '\f185';
    font-size: 115%;
    width: 20px;
    height: 20px;
}

/* DARK MODE */
.dark-mode {
    background: var(--background-dark);
}

.dark-mode .navbar-light .navbar-nav .nav-link {
    color: var(--text-dark);
}

.dark-mode .navbar-light .navbar-nav .nav-link:hover {
    color: var(--themeColor);
}

.dark-mode .navbar[class*="headroom--not-top"] {
    background: var(--background-dark);
}

.dark-mode .small-text {
    background: #0d0c15;
    color: var(--text-light);
}

.dark-mode .feature-card .uil,
.dark-mode .navbar-light .navbar-brand,
.dark-mode h1,
.dark-mode h2,
.dark-mode h3,
.dark-mode h4,
.dark-mode h5,
.dark-mode h6,
.dark-mode .color-mode {
    color: var(--headers-dark);
}

/* CONTACT & FOOTER */
.contact-form {
    position: relative;
}

.contact-form h3 span {
    display: block;
}

.copyright-text {
    font-size: 16px;
    font-weight: normal;
    display: block;
}

/* SOCIAL LINKS */
.social-links-container {
    margin-top: 2rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

.social-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: var(--text-color);
    background-color: transparent;
    border: 2px solid var(--border-color);
    font-size: 200%;
    transition: all 0.3s ease;
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.social-link:hover {
    color: var(--bg-color);
    transform: translateY(-3px);
}

.social-link:hover i.fa-envelope {
    color: #EA4335;
}

.social-link:hover i.fa-linkedin {
    color: #0A66C2;
}

.social-link:hover i.fa-github {
    color: #171515;
}

.social-link:hover i.fa-twitter {
    color: #1DA1F2;
}

.social-link:nth-child(1) {
    animation-delay: 0.1s;
}

.social-link:nth-child(2) {
    animation-delay: 0.2s;
}

.social-link:nth-child(3) {
    animation-delay: 0.3s;
}

.social-link:nth-child(4) {
    animation-delay: 0.4s;
}

[data-theme="dark"] .social-link {
    border-color: rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .social-link:hover {
    border-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .social-links {
        gap: 1rem;
    }

    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* TIMELINE */
.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--themeColor);
}

.timeline-item {
    display: grid;
    grid-template-columns: auto 2fr;
    align-items: center;
    gap: 10px;
    padding: 2% 4%;
    background: transparent;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    margin-bottom: 2rem;
}

.timeline-item:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px transparent;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.4rem;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background-color: var(--themeColor);
    border-radius: 50%;
    border: 2px solid var(--background-light);
}

.timeline-year {
    writing-mode: vertical-rl;
    color: var(--themeColor);
    font-weight: 600;
    font-size: 0.9rem;
    position: absolute;
    left: -3.5rem;
}

.timeline-content {
    background-color: var(--bg-color);
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(var(--themeColor-rgb), 0.1);
}

.timeline-content:hover {
    border-color: rgba(var(--themeColor-rgb), 0.2);
}

.timeline-content small {
    display: block;
    margin-bottom: 10px;
}

.timeline-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--headers-color);
}

.timeline-header {
    margin-bottom: 1rem;
}

.timeline-details {
    margin-top: 1rem;
}

.timeline-details summary {
    cursor: pointer;
    color: var(--themeColor);
    font-weight: 500;
    outline: none;
    padding: 0.5rem 0;
}

.timeline-details summary:hover {
    opacity: 0.8;
}

.details-content {
    margin-top: 1rem;
    padding: 1rem;
    border-left: 2px solid var(--themeColor);
    background-color: rgba(var(--themeColor-rgb), 0.05);
}

.details-section {
    margin-bottom: 1.5rem;
}

.details-section:last-child {
    margin-bottom: 0;
}

.details-section .section-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--headers-color);
}

.details-list {
    list-style: none;
    padding-left: 1rem;
    margin: 0;
}

.details-list li {
    position: relative;
    padding-left: 1rem;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.details-list li::before {
    content: "•";
    position: absolute;
    left: -0.5rem;
    color: var(--themeColor);
}

[data-theme="dark"] .timeline-content {
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .timeline-content:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .timeline {
        padding-left: 1.5rem;
    }

    .timeline-year {
        left: -2rem;
    }

    .timeline-content {
        padding: 1rem;
    }
}

/* COMPANY LOGOS */
.company-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 2rem 0;
}

.company-logo-container {
    flex: 1 1 auto;
    max-width: 150px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.company-logo {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-width: 200px;
    display: block;
}

.company-logo-container:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px transparent;
}

.light-logo {
    display: inline;
}

.dark-logo {
    display: none;
}

body.dark-mode .light-logo {
    display: none;
}

body.dark-mode .dark-logo {
    display: inline;
}

[data-theme="dark"] .dark-logo {
    display: block;
}

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

.companies-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    width: 100%;
}

.companies-section .container {
    flex: 1;
}

.companies-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 2rem 0;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 3rem;
}

.company-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.company-link {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.company-link:hover {
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .companies-section {
        min-height: 80vh;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .company-logo {
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .companies-section {
        min-height: 60vh;
    }

    .company-logo {
        max-width: 120px;
    }
}

/* ANIMATED TEXT */
.animated {
    position: relative;
}

.animated-info {
    display: inline-block;
    vertical-align: top;
    margin-top: 5px;
    min-width: 380px;
    position: relative;
}

.animated-item {
    color: var(--themeColor);
    font-size: 38px;
    line-height: inherit;
    display: block;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    animation: BottomTotop 6s linear infinite 0s;
}

.animated-item:nth-child(2n+2) {
    animation-delay: 2s;
}

.animated-item:nth-child(3n+3) {
    animation-delay: 4s;
}

@keyframes BottomTotop {
    0% {
        opacity: 0;
    }

    5% {
        opacity: 0;
        transform: translateY(5px);
    }

    10% {
        opacity: 1;
        transform: translateY(0px);
    }

    25% {
        opacity: 1;
        transform: translateY(0px);
    }

    30% {
        opacity: 0;
        transform: translateY(5px);
    }

    80% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

/* HERO TITLE (Terminal Style) */
.hero-title {
    font-family: 'Fira Mono', 'Fira Code', 'Consolas', monospace;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    background: #232323;
    color: #eeeeee;
    padding: 2.5rem 2.5rem 2rem 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    position: relative;
    min-width: 40%;
    max-width: 100%;
    margin: auto;
    transition: box-shadow 0.2s;
    overflow: hidden;
}

.hero-title:hover {
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.30);
}

.hero-title .keyword {
    color: #569cd6;
}

.hero-title .string {
    color: #d69d85;
}

.hero-title .branch {
    color: #b5cea8;
}

.hero-title::before {
    content: '';
    display: block;
    position: absolute;
    left: 24px;
    top: 18px;
    width: 9px;
    height: 9px;
    background: #fa625c;
    border-radius: 50%;
    box-shadow: 18px 0 0 #fdbc40, 36px 0 0 #34c749;
}

@media (max-width: 600px) {
    .hero-title {
        font-size: clamp(1.1rem, 5vw, 1.6rem);
        padding: 1.3rem 0.6rem 1rem 1.6rem;
    }
}

.terminal-write {
    white-space: pre;
    border-right: 3px solid #fff;
    animation: typing 2.5s steps(35, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes blink-caret {

    0%,
    100% {
        border-color: transparent;
    }

    50% {
        border-color: #fff;
    }
}

/* PAGINATION */
.pagination {
    align-items: center;
    display: flex;
    padding-left: 0;
    list-style: none;
    border-radius: .25rem;
}

.page-link {
    display: inline;
    padding: 5px 10px;
    margin: 0 5px;
    background-color: var(--themeColor);
    color: #333;
    text-decoration: none;
    border-radius: 3px;
    font-size: 18px;
}

.page-link:hover {
    background-color: #333;
    color: #fff;
}

.page-link:focus {
    z-index: 2;
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25);
}

.page-item:first-child .page-link {
    margin-left: 0;
    border-top-left-radius: .25rem;
    border-bottom-left-radius: .25rem;
}

.page-item:last-child .page-link {
    border-top-right-radius: .25rem;
    border-bottom-right-radius: .25rem;
}

.page-item.active .page-link {
    z-index: 1;
    color: #fff;
    background-color: var(--themeColor);
    border-color: #007bff;
}

.page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    cursor: auto;
    background-color: #fff;
    border-color: #dee2e6;
}

/* SCROLLBAR */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: var(--text-light);
    border-radius: 8px;
    a
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 991px) {
    .full-screen {
        padding-bottom: 4rem;
    }

    .color-mode {
        display: none;
    }

    .about-image {
        margin-top: 4em;
        object-fit: cover;
    }

    .mobile-mt-2,
    .contact-form {
        margin-top: 2em;
    }
}

@media (max-width: 767px) {
    h1 {
        font-size: 2.4em;
    }

    h2 {
        font-size: 2em;
    }

    .animated-item {
        font-size: 28px;
    }

    .navbar-collapse {
        background: #ffffff;
        text-align: center;
        padding-bottom: 20px;
    }

    .navbar-expand-sm .navbar-nav .nav-link {
        padding: 3px 20px;
    }
}

@media (max-width: 580px) {
    .animated-info {
        min-width: 200px;
    }

    .animated-item {
        font-size: 30px;
    }

    .timeline-info small {
        display: block;
        margin: 10px 0 0 0;
    }
}

@media (max-width: 320px) {
    .animated-text {
        margin-top: 0;
    }

    .about-text {
        text-align: center;
    }

    .full-screen {
        padding: 4rem 0;
    }

    .mobile-block {
        display: block;
    }

    .social-links li {
        display: inline-block;
        vertical-align: top;
    }
}

/* PAGE TRANSITIONS */
.page-transition {
    animation: fadeIn 0.5s ease-in;
}

.interactive-element {
    transition: all 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* DISPLAY UTILITIES (Typography) */
.lead {
    font-size: 1.25rem;
    font-weight: 300;
}

.display-1 {
    font-size: 6rem;
    font-weight: 300;
    line-height: 1.2;
}

.display-2 {
    font-size: 5.5rem;
    font-weight: 300;
    line-height: 1.2;
}

.display-3 {
    font-size: 4.5rem;
    font-weight: 300;
    line-height: 1.2;
}

.display-4 {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.2;
}

.mark,
mark {
    padding: .2em;
    background-color: #fcf8e3;
}

.initialism {
    font-size: 90%;
    text-transform: uppercase;
}

/* TABLE (Basic - for blog content) */
table {
    border-collapse: collapse;
}

caption {
    padding-top: .75rem;
    padding-bottom: .75rem;
    color: #6c757d;
    text-align: left;
    caption-side: bottom;
}

th {
    text-align: inherit;
}

.table {
    width: 100%;
    margin-bottom: 1rem;
}

.table td,
.table th {
    padding: .75rem;
    vertical-align: top;
}

.table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #dee2e6;
}

.table tbody+tbody {
    border-top: 2px solid #dee2e6;
}

/* ARTICLE CONTENT - Reading Width */
.article-content {
    max-width: 720px;
    width: 100%;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    margin-left: auto;
    margin-right: auto;
}

.article-content h2 {
    margin-bottom: 0.5rem;
}

.article-content p,
.article-content li {
    line-height: 1.8;
    letter-spacing: 0.01em;
}

.article-content img {
    max-width: 100%;
    height: auto;
    margin: 2rem 0;
}

.article-content .wide {
    max-width: 900px;
    margin-left: 50%;
    transform: translateX(-50%);
}

@media (max-width: 768px) {
    .article-content {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* MOBILE READING EXPERIENCE */
.article-content {
    max-width: 720px;
    width: 100%;
    padding: 0 1.5rem;
    margin: 0 auto;
}

.article-content p,
.article-content li {
    line-height: 1.8;
    margin-bottom: 1.5em;
    letter-spacing: 0.01em;
}

.article-content h2,
.article-content h3,
.article-content h4 {
    margin-top: 2em;
    margin-bottom: 0.75em;
}

@media (max-width: 768px) {
    html {
        font-size: 16px;
    }

    .article-content {
        padding: 0 1rem;
    }

    .article-content p,
    .article-content li {
        line-height: 1.75;
        margin-bottom: 1.25em;
        text-align: left;
        hyphens: auto;
        -webkit-hyphens: auto;
        word-wrap: break-word;
    }

    .article-content h2 {
        font-size: 1.5rem;
        margin-top: 1.75em;
    }

    .article-content h3 {
        font-size: 1.25rem;
    }

    .article-content h4 {
        font-size: 1.1rem;
    }

    .article-content pre {
        font-size: 0.85rem;
        padding: 1rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .article-content code {
        font-size: 0.9em;
        word-break: break-word;
    }

    .article-content img {
        margin: 1.5rem -1rem;
        width: calc(100% + 2rem);
        max-width: calc(100% + 2rem);
    }

    .article-content blockquote {
        margin: 1.5rem 0;
        padding: 1rem 1.25rem;
        font-size: 1rem;
    }

    .article-content ul,
    .article-content ol {
        padding-left: 1.25rem;
    }

    .article-content li {
        margin-bottom: 0.5em;
    }
}

@media (max-width: 375px) {
    html {
        font-size: 15px;
    }

    .article-content {
        padding: 0 0.875rem;
    }

    .article-content h2 {
        font-size: 1.35rem;
    }
}