
/* Project Source Button */
.project-actions {
    margin: 1.5rem 0;
    display: flex;
    gap: 1rem;
}

.source-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(89, 255, 185, 0.1);
    color: #59FFB9;
    border: 1px solid rgba(89, 255, 185, 0.3);
    border-radius: 4px;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.source-btn:hover {
    background: rgba(157, 78, 221, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(157, 78, 221, 0.25);
    border-color: rgba(157, 78, 221, 0.4);
}

.source-btn:active {
    transform: translateY(0);
}

.source-btn svg {
    transition: transform 0.3s ease;
}

.source-btn:hover svg {
    transform: scale(1.1);
}


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;
}

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;
}

/*
 * ==================
 * Base Styles
 * ==================
 */
*,*::before,*::after{
    padding: 0;
    margin: 0;
    box-sizing: inherit;
}
html {
    font-size: 62.5%; /* 10px of 16px */
    box-sizing: border-box;
    height: 100%;
    scroll-behavior: smooth;
}
/* 1. Make main sections transparent so Body background shows through */
.skills,
.certifications,
.projects,
#experience,
.connect,
.hero-header,
.footer {
    background: transparent !important;
    background-image: none !important;
    border: none !important;
    box-shadow: none !important;
    padding-top: 6rem !important; /* Adjust spacing to flow better */
    padding-bottom: 6rem !important;
}

body {
    color: white;
    background-color: #111111;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(89, 255, 185, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(114, 24, 250, 0.15) 0%, transparent 50%),
        linear-gradient(135deg, transparent 0%, rgba(0, 255, 148, 0.05) 25%, transparent 50%, rgba(89, 255, 185, 0.05) 75%, transparent 100%);
    background-attachment: fixed;
    position: relative;
    height: 100%;
    line-height: 1.5;
    font-size: 1.6rem; /* 16px */
    font-family: 'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    overflow-x: hidden;
}

/* Cybersecurity Background Animation */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        /* Matrix-style digital rain */
        repeating-linear-gradient(
            90deg,
            transparent 0px,
            rgba(89, 255, 185, 0.03) 1px,
            transparent 2px,
            transparent 50px
        ),
        repeating-linear-gradient(
            0deg,
            transparent 0px,
            rgba(114, 24, 250, 0.02) 1px,
            transparent 2px,
            transparent 100px
        );
    background-size: 100% 100%, 100% 100%;
    pointer-events: none;
    z-index: -2;
    animation: matrixRain 20s linear infinite;
}

/* Animated circuit patterns */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        /* Circuit board lines */
        linear-gradient(90deg, transparent 0%, rgba(89, 255, 185, 0.1) 1px, transparent 2px),
        linear-gradient(0deg, transparent 0%, rgba(114, 24, 250, 0.1) 1px, transparent 2px),
        radial-gradient(circle at 25% 25%, rgba(0, 255, 148, 0.1) 2px, transparent 3px),
        radial-gradient(circle at 75% 75%, rgba(89, 255, 185, 0.1) 2px, transparent 3px);
    background-size: 100px 100px, 100px 100px, 200px 200px, 200px 200px;
    pointer-events: none;
    z-index: -1;
    animation: circuitGlow 15s ease-in-out infinite alternate;
}

/* Floating data nodes */
.cyber-bg-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.data-node {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, #59FFB9 0%, rgba(89, 255, 185, 0.3) 70%, transparent 100%);
    border-radius: 50%;
    animation: dataFloat var(--duration) linear infinite;
    animation-delay: var(--delay);
}

.data-node:nth-child(1) { left: 10%; top: 20%; --duration: 8s; --delay: 0s; }
.data-node:nth-child(2) { left: 85%; top: 15%; --duration: 6s; --delay: 1s; }
.data-node:nth-child(3) { left: 25%; top: 60%; --duration: 10s; --delay: 2s; }
.data-node:nth-child(4) { left: 70%; top: 80%; --duration: 7s; --delay: 1.5s; }
.data-node:nth-child(5) { left: 90%; top: 40%; --duration: 9s; --delay: 0.5s; }
.data-node:nth-child(6) { left: 15%; top: 85%; --duration: 8.5s; --delay: 2.5s; }

@keyframes matrixRain {
    0% {
        background-position: 0% 0%, 0% 0%;
        opacity: 0.3;
    }
    50% {
        background-position: 100% 100%, 100% 100%;
        opacity: 0.1;
    }
    100% {
        background-position: 0% 0%, 0% 0%;
        opacity: 0.3;
    }
}

@keyframes circuitGlow {
    0% {
        opacity: 0.3;
        transform: translateX(0px) translateY(0px);
    }
    50% {
        opacity: 0.6;
        transform: translateX(-10px) translateY(-5px);
    }
    100% {
        opacity: 0.3;
        transform: translateX(0px) translateY(0px);
    }
}

@keyframes dataFloat {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: translateY(90vh) scale(1);
    }
    90% {
        opacity: 1;
        transform: translateY(10vh) scale(1);
    }
    100% {
        transform: translateY(-10vh) scale(0);
        opacity: 0;
    }
}

.container {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
}

/*
 * ==================
 * Navigation Component
 * ==================
 */
.nav {
    padding-top: 3rem;
    padding-bottom: 3rem;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    backdrop-filter: blur(25px);
}
.nav__list{
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 0;
    overflow-y: scroll;
}
.nav__list-item {
    text-align: center;
    margin-bottom: 5rem;
}
.nav__list-link {
    color: #688277;
    position: relative;
    font-weight: 800;
    text-decoration: none;
    outline: none;
    font-size: 2rem;
}
.nav__list-link::before {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    border-radius: 99rem;
    background-color: #59FFB9;
    position: absolute;
    bottom: -12px;
    left: 0;
    transform-origin: center;
    transform: scaleX(0);
    transition: transform .15s ease-in-out;
}
.nav__list-link:focus,
.nav__list-link:hover {
    color: #59FFB9;
}
.nav__list-link:focus::before,
.nav__list-link:hover::before {
    transform: scaleX(1);
}
.nav__list-link.active {
    color: #59FFB9;
}
.nav__list-link.active:focus {
    color: #93ffd0;
}
.nav__list-link.active:focus::before {
    background-color: #93ffd0;
}
.nav__list-link.active::before {
    transform: scaleX(1);
}
.nav__hamburger-btn{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    width: 35px;
    height: 35px;
    background-color: transparent;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-left: auto;
    overflow: hidden;
}
.nav__hamburger-top,
.nav__hamburger-center,
.nav__hamburger-bottom{
    display: block;
    width: 95%;
    height: 3px;
    border-radius: 99rem;
    background-color: white;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
}
.nav__hamburger-top{
    top: 25%;
}
.nav__hamburger-center{
    top: 50%;
}
.nav__hamburger-bottom{
    top: 75%;
}

/*
 * ==================
 * Hero Header
 * ==================
 */
.hero-header{
    position: relative;
    overflow: hidden;
}
.header__container{
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}
.header__bg{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 350px;
    background: linear-gradient(to top, #111, #1110);
    z-index: -1;
}
.header__left{
    width: 100%;
    max-width: 900px;
}
.header__right{
    position: absolute;
    right: 0;
    z-index: -1;
    display: none;
}
.header__right img{
    width: 100%;
}
.header__sup-text{
    display: inline-flex;
    font-weight: 600;
    font-size: 1.2rem;
}
.header__title{
    text-transform: uppercase;
    font-weight: 800;
    font-size: 5rem;
    line-height: 1;
    display: flex;
    flex-direction: column;
}
.header__title-1,
.header__title-2{
    display: block;
    position: relative;
}
.header__title-1::before,
.header__title-1::after,
.header__title-2::before,
.header__title-2::after{
    content: attr(data-role);
    position: absolute;
    left: 2px;
    top: 0;
    color: white;
    background: #111111; /* To create an illusion that the text is moving */
    overflow:hidden;
    clip: rect(0,900px,0,0); /* Only show some part of the clipped-text */
}

.header__title-1::before,
.header__title-2::before{
    text-shadow: -5px 0 #59FFB9;
    animation: distort-1 2s infinite linear alternate-reverse;
}

.header__title-1::after,
.header__title-2::after{
    text-shadow: -5px 0 #7218FA;
    animation: distort-2 2s infinite linear alternate-reverse;
}

.header__msg{
    font-weight: 300;
    font-size: 1.6rem;
    margin-top: 1.5rem;
    line-height: 1.8;
}
.header__resume{
    display: inline-flex;
    border-radius: 7px;
    text-decoration: none;
    background-color: #37AE7C;
    padding: 1.2rem 1.5rem;
    font-weight: 700;
    color: white;
    margin-top: 5rem;
    position: relative;
}
.header__resume:hover::before{
    width: 80%;
    height: 80%;
}
.header__resume::before{
    content: '';
    background-color: #00FF94;
    width: 120%;
    height: 120%;
    display: block;
    position: absolute;
    transition: all .15s ease-in-out;
    top: 50%;
    left: 50%;
    z-index: -1;
    filter: blur(30px);
    transform: translate(-50%, -50%);
}

/*
 * ==================
 * Animations
 * ==================
 */
@keyframes distort-1{
    0% {
        clip: rect(57px, 9999px, 46px, 0);
    }
    5% {
        clip: rect(15px, 9999px, 56px, 0);
    }
    10% {
        clip: rect(6px, 9999px, 70px, 0);
    }
    15% {
        clip: rect(40px, 9999px, 80px, 0);
    }
    20% {
        clip: rect(32px, 9999px, 44px, 0);
    }
    25% {
        clip: rect(65px, 9999px, 85px, 0);
    }
    30% {
        clip: rect(27px, 9999px, 78px, 0);
    }
    35% {
        clip: rect(59px, 9999px, 93px, 0);
    }
    40% {
        clip: rect(44px, 9999px, 77px, 0);
    }
    45% {
        clip: rect(74px, 9999px, 10px, 0);
    }
    50% {
        clip: rect(73px, 9999px, 42px, 0);
    }
    55% {
        clip: rect(32px, 9999px, 58px, 0);
    }
    60% {
        clip: rect(21px, 9999px, 54px, 0);
    }
    65% {
        clip: rect(71px, 9999px, 11px, 0);
    }
    70% {
        clip: rect(85px, 9999px, 25px, 0);
    }
    75% {
        clip: rect(83px, 9999px, 77px, 0);
    }
    80% {
        clip: rect(62px, 9999px, 52px, 0);
    }
    85% {
        clip: rect(68px, 9999px, 84px, 0);
    }
    90% {
        clip: rect(37px, 9999px, 20px, 0);
    }
    95% {
        clip: rect(10px, 9999px, 15px, 0);
    }
    100% {
        clip: rect(83px, 9999px, 28px, 0);
    }
}
@keyframes distort-2 {
    0% {
        clip: rect(20px, 9999px, 96px, 0);
    }
    5% {
        clip: rect(62px, 9999px, 2px, 0);
    }
    10% {
        clip: rect(63px, 9999px, 39px, 0);
    }
    15% {
        clip: rect(92px, 9999px, 75px, 0);
    }
    20% {
        clip: rect(54px, 9999px, 2px, 0);
    }
    25% {
        clip: rect(22px, 9999px, 96px, 0);
    }
    30% {
        clip: rect(39px, 9999px, 98px, 0);
    }
    35% {
        clip: rect(49px, 9999px, 37px, 0);
    }
    40% {
        clip: rect(90px, 9999px, 17px, 0);
    }
    45% {
        clip: rect(36px, 9999px, 57px, 0);
    }
    50% {
        clip: rect(92px, 9999px, 78px, 0);
    }
    55% {
        clip: rect(97px, 9999px, 65px, 0);
    }
    60% {
        clip: rect(69px, 9999px, 30px, 0);
    }
    65% {
        clip: rect(92px, 9999px, 13px, 0);
    }
    70% {
        clip: rect(74px, 9999px, 76px, 0);
    }
    75% {
        clip: rect(2px, 9999px, 45px, 0);
    }
    80% {
        clip: rect(30px, 9999px, 21px, 0);
    }
    85% {
        clip: rect(58px, 9999px, 34px, 0);
    }
    90% {
        clip: rect(79px, 9999px, 27px, 0);
    }
    95% {
        clip: rect(32px, 9999px, 1px, 0);
    }
    100% {
        clip: rect(87px, 9999px, 63px, 0);
    }
}

/*
 * ==================
 * Responsive Design
 * ==================
 */
@media only screen and (min-width: 36em) {
    .container {
        max-width: 540px;
    }

    /* Header */
    .header__right{
        display: block;
        opacity: 0.3;
    }
    .header__title{
        flex-direction: row;
    }
    .header__title-1{
        margin-right: 1.5rem;
    }

    /* Navbar */
    .nav__list{
        height: unset;
        flex-direction: row;
        justify-content: flex-end;
        overflow-y: unset;
    }
    .nav__list-item{
        margin-bottom: 0;
        margin-right: 2rem;
    }
    .nav__list-item:last-of-type{
        margin-right: 0;
    }
    .nav__list-link{
        font-size: 1.3rem;
    }
    .nav__hamburger-btn{
        display: none;
    }
}

@media only screen and (min-width: 48em) {
    .container {
        max-width: 760px;
    }
}

@media only screen and (min-width: 62em) {
    .container {
        max-width: 960px;
    }
}

@media only screen and (min-width: 75em) {
    .container {
        max-width: 1140px;
    }
    .header__title{
        font-size: 8rem;
    }
}

@media only screen and (min-width: 87.5em) {
    .container {
        max-width: 1320px;
    }
}

/*
 * ==================
 * About Section
 * ==================
 */
.about__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
    margin-top: 3rem;
}

.about__text {
    max-width: 800px;
    text-align: center;
}

.about__intro {
    font-size: 1.8rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: #59FFB9;
    font-weight: 300;
}

.about__details {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 2rem;
}

.about__highlight {
    background: rgba(89, 255, 185, 0.05);
    border: 1px solid rgba(89, 255, 185, 0.2);
    border-radius: 10px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.about__highlight h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #00FF94;
    margin-bottom: 1.5rem;
    position: relative;
}

.about__highlight h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #59FFB9, #7218FA);
    border-radius: 1px;
}

.about__skills {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about__skills li {
    font-size: 1.6rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(89, 255, 185, 0.1);
    position: relative;
    padding-left: 2rem;
}

.about__skills li::before {
    content: '';
    position: absolute;
    left: 0;
    color: #59FFB9;
    font-size: 1.4rem;
}

.about__skills li:last-child {
    border-bottom: none;
}

.about__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about__icon {
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about__svg {
    width: 100%;
    height: 100%;
    animation: securityFloat 4s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(89, 255, 185, 0.3));
}

@keyframes securityFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.02);
    }
}

/* Responsive adjustments for about section */
@media only screen and (min-width: 48em) {
    .about__content {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
    }

    .about__text {
        flex: 1;
        max-width: none;
        text-align: left;
    }

    .about__intro {
        text-align: left;
    }

    .about__details {
        flex-direction: row;
        gap: 2rem;
    }

    .about__highlight {
        flex: 1;
    }
}

@media only screen and (min-width: 62em) {
    .about__intro {
        font-size: 2rem;
    }

    .about__icon {
        width: 250px;
        height: 250px;
    }
}

/*
 * ==================
 * Enhanced About Section
 * ==================
 */
.about__header {
    text-align: center;
    margin-bottom: 6rem;
}

.about__title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #59FFB9 0%, #7218FA 50%, #00FF94 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.about__title-underline {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #59FFB9, #7218FA, #00FF94);
    margin: 0 auto;
    border-radius: 2px;
    position: relative;
}


.about__subtitle {
    font-size: 1.8rem;
    color: #59FFB9;
    font-weight: 300;
    opacity: 0.9;
    margin-top: 1rem;
}

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

.about__main {
    max-width: 100%;
}

.about__intro-section {
    margin-bottom: 4rem;
}

.about__intro {
    font-size: 1.8rem;
    line-height: 1.8;
    color: #59FFB9;
    margin-bottom: 3rem;
    font-weight: 300;
    text-align: justify;
}

.about__quote {
    background: rgba(89, 255, 185, 0.1);
    border-left: 4px solid #59FFB9;
    padding: 2rem;
    margin: 2rem 0;
    position: relative;
    border-radius: 0 10px 10px 0;
    backdrop-filter: blur(10px);
}

.about__quote-icon {
    font-size: 4rem;
    color: #59FFB9;
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: Georgia, serif;
    opacity: 0.7;
}

.about__quote p {
    font-size: 1.6rem;
    font-style: italic;
    color: #fff;
    margin: 0;
    padding-left: 2rem;
    line-height: 1.6;
}

.about__expertise {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.about__highlight {
    background: rgba(20, 20, 20, 0.9);
    border: 1px solid rgba(89, 255, 185, 0.3);
    border-radius: 15px;
    padding: 2.5rem;
    backdrop-filter: blur(15px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.about__highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #59FFB9, #7218FA);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about__highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(89, 255, 185, 0.15);
    border-color: rgba(89, 255, 185, 0.6);
}

.about__highlight:hover::before {
    opacity: 1;
}

.about__highlight-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.about__highlight-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(89, 255, 185, 0.2), rgba(114, 24, 250, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #59FFB9;
    transition: all 0.4s ease;
}

.about__highlight:hover .about__highlight-icon {
    background: linear-gradient(135deg, rgba(89, 255, 185, 0.3), rgba(114, 24, 250, 0.3));
    transform: scale(1.1);
}

.about__highlight h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.about__skills {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about__skills li {
    font-size: 1.6rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(89, 255, 185, 0.1);
    position: relative;
    padding-left: 3rem;
    transition: all 0.3s ease;
}

.about__skills li:hover {
    color: #59FFB9;
    padding-left: 3.5rem;
}

.about__skills li:last-child {
    border-bottom: none;
}

.skill-dot {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #59FFB9, #00FF94);
    border-radius: 50%;
    animation: skillPulse 2s ease-in-out infinite;
}

.about__focus-text {
    font-size: 1.6rem;
    line-height: 1.7;
    color: #ccc;
    margin: 0;
}

/* Enhanced Visual Section */
.about__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about__icon-container {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about__icon {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 30px rgba(89, 255, 185, 0.3));
}

.about__svg {
    width: 100%;
    height: 100%;
    animation: iconFloat 6s ease-in-out infinite;
}

.about__floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    width: 30px;
    height: 30px;
    background: rgba(89, 255, 185, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #59FFB9;
    animation: float 4s ease-in-out infinite;
}

.floating-element--1 {
    top: 10%;
    right: 15%;
    animation-delay: 0s;
}

.floating-element--2 {
    bottom: 20%;
    left: 10%;
    animation-delay: 1s;
}

.floating-element--3 {
    top: 60%;
    right: 5%;
    animation-delay: 2s;
}

.pulse-node {
    animation: nodePulse 3s ease-in-out infinite;
}

.main-pulse {
    filter: drop-shadow(0 0 10px #59FFB9);
}

/* Keyframe Animations */
@keyframes skillPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-8px) rotate(1deg);
    }
    50% {
        transform: translateY(-15px) rotate(0deg);
    }
    75% {
        transform: translateY(-8px) rotate(-1deg);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-20px) scale(1.1);
        opacity: 1;
    }
}

@keyframes nodePulse {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.3);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Responsive Design for Enhanced About */
@media only screen and (min-width: 48em) {
    .about__content {
        flex-direction: row;
        align-items: flex-start;
        gap: 5rem;
    }

    .about__main {
        flex: 1;
    }

    .about__expertise {
        flex-direction: row;
        gap: 2rem;
    }

    .about__highlight {
        flex: 1;
    }

    .about__title {
        font-size: 5rem;
    }

    .about__intro {
        font-size: 2rem;
        text-align: left;
    }
}

@media only screen and (min-width: 75em) {
    .about__icon-container {
        width: 350px;
        height: 350px;
    }

    .about__title {
        font-size: 6rem;
    }
}

/*
 * ==================
 * Skills Section
 * ==================
 */
.skills {
    padding: 10rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.skills::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(89, 255, 185, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(114, 24, 250, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.skills__title {
    font-size: 4rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #59FFB9 0%, #7218FA 50%, #00FF94 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.skills__subtitle {
    font-size: 1.8rem;
    text-align: center;
    color: #59FFB9;
    margin-bottom: 6rem;
    font-weight: 300;
    opacity: 0.8;
}

.skills__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 8rem;
}

.skill-card {
    background: rgba(20, 20, 20, 0.9);
    border: 1px solid rgba(89, 255, 185, 0.3);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.skill-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #59FFB9, #7218FA, #00FF94);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.skill-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(89, 255, 185, 0.15);
    border-color: rgba(89, 255, 185, 0.6);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(89, 255, 185, 0.1);
    border-color: rgba(89, 255, 185, 0.5);
}

.skill-card:hover::before {
    opacity: 1;
}

.skill-card__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(89, 255, 185, 0.1);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.skill-card:hover .skill-card__icon {
    background: rgba(89, 255, 185, 0.2);
    transform: scale(1.1);
}

.skill-icon {
    width: 50px;
    height: 50px;
}

.skill-card__title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
    position: relative;
}

.skill-card__title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #59FFB9, #7218FA);
    border-radius: 1px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.skill-card:hover .skill-card__title::after {
    opacity: 1;
}

.skill-card__description {
    font-size: 1.6rem;
    color: #aaa;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.skill-card__progress {
    width: 100%;
    height: 8px;
    background: rgba(89, 255, 185, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.skill-card__progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #59FFB9 0%, #7218FA 50%, #00FF94 100%);
    border-radius: 10px;
    width: var(--progress);
    position: relative;
    overflow: hidden;
    animation: progressShimmer 2s ease-in-out infinite;
}

.skill-card__progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes progressShimmer {
    0% { opacity: 0.8; }
    50% { opacity: 1; }
    100% { opacity: 0.8; }
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Skills Cloud */
.skills-cloud {
    text-align: center;
    margin-top: 6rem;
}

.skills-cloud__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #fff;
    position: relative;
    display: inline-block;
}

.skills-cloud__title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #59FFB9, #7218FA);
    border-radius: 1px;
}

.skills-cloud__container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.skill-tag {
    background: linear-gradient(135deg, rgba(89, 255, 185, 0.1), rgba(114, 24, 250, 0.1));
    border: 1px solid rgba(89, 255, 185, 0.3);
    border-radius: 25px;
    padding: 0.8rem 1.8rem;
    font-size: 1.4rem;
    font-weight: 500;
    color: #59FFB9;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.skill-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(89, 255, 185, 0.2), transparent);
    transition: left 0.5s ease;
}

.skill-tag:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(89, 255, 185, 0.2);
    border-color: rgba(89, 255, 185, 0.6);
    color: #00FF94;
}

.skill-tag:hover::before {
    left: 100%;
}

/* Responsive Design for Skills */
@media only screen and (min-width: 48em) {
    .skills__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
    }

    .skill-card {
        padding: 4rem;
    }

    .skills__title {
        font-size: 5rem;
    }

    .skills__subtitle {
        font-size: 2rem;
    }
}

/*
 * ==================
 * Certifications Section
 * ==================
 */
.certifications {
    padding: 10rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.certifications::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(89, 255, 185, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(114, 24, 250, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.certifications__title {
    font-size: 5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #59FFB9 0%, #7218FA 50%, #00FF94 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.certifications__subtitle {
    font-size: 2rem;
    color: #59FFB9;
    text-align: center;
    margin-bottom: 6rem;
    opacity: 0.9;
}

.certifications__grid {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
    backdrop-filter: blur(15px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    flex: 1;
    min-width: 300px;

}

.certification-card {
    background: rgba(20, 20, 20, 0.9);
    border: 1px solid rgba(89, 255, 185, 0.3);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(15px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.certification-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #59FFB9, #7218FA);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.certification-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(89, 255, 185, 0.15);
    border-color: rgba(89, 255, 185, 0.6);
}

.certification-card:hover::before {
    opacity: 1;
}

.certification-card__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 2.5rem;
}

.certification-card__icon {
    width: 80px;
    height: 80px;
    background: rgba(89, 255, 185, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.certification-card:hover .certification-card__icon {
    background: rgba(89, 255, 185, 0.2);
    transform: scale(1.1);
}

.cert-icon {
    width: 50px;
    height: 50px;
}

.certification-card__badge {
    margin-top: 1rem;
}

.certification-card__badge-text {
    background: linear-gradient(135deg, rgba(89, 255, 185, 0.2), rgba(114, 24, 250, 0.2));
    border: 1px solid rgba(89, 255, 185, 0.4);
    border-radius: 20px;
    padding: 0.5rem 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    backdrop-filter: blur(10px);
    color: #ffffff;
}

.certification-card__badge--advanced .certification-card__badge-text {
    background: linear-gradient(135deg, rgba(89, 255, 185, 0.2), rgba(114, 24, 250, 0.2));
    border-color: rgba(156, 156, 156, 0.5);
    color: #f8f8f8;
}

.certification-card__content {
    position: relative;
    z-index: 2;
    padding: 0rem 0rem 1rem 0rem;
}

.certification-card__title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.certification-card__issuer {
    font-size: 1.4rem;
    color: #7218FA;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.certification-card__description {
    font-size: 1.6rem;
    line-height: 1.7;
    color: #ccc;
    margin-bottom: 2rem;
}

.certification-card__details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.certification-card__detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.detail-label {
    font-size: 1.4rem;
    font-weight: 600;
    color: #59FFB9;
}

.detail-value {
    font-size: 1.4rem;
    color: #fff;
}

/* Responsive Design for Certifications */
@media only screen and (max-width: 768px) {
    .certifications__grid {
        flex-direction: column;
        gap: 3rem;
    }

    .certification-card {
        min-width: unset;
    }
}

/* Responsive Design for Impact */
@media only screen and (min-width: 48em) {
    .impact-results__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    .impact-results__title {
        font-size: 4rem;
    }
}

@media only screen and (min-width: 75em) {
    .impact-results__grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }

    .impact-results__title {
        font-size: 3rem;
    }
}

/* Responsive Design for Projects */

@media only screen and (min-width: 48em) {
    .projects__grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .projects__title {
    font-size: 5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 2rem;
    margin-top: 13rem;
    background: linear-gradient(135deg, #59FFB9 0%, #7218FA 50%, #00FF94 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}}

/* Experience Section */
#experience {
    background: linear-gradient(135deg, rgba(89, 255, 185, 0.05) 0%, rgba(114, 24, 250, 0.05) 100%);
    border-top: 1px solid rgba(89, 255, 185, 0.2);
    border-bottom: 1px solid rgba(114, 24, 250, 0.2);
    padding: 10rem 0;
    position: relative;
    overflow: hidden;
}

#experience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #59FFB9 50%, transparent 100%);
    opacity: 0.5;
}

#experience::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #7218FA 50%, transparent 100%);
    opacity: 0.5;
}

#experience h2 {
    font-size: 6rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #59FFB9 0%, #7218FA 50%, #00FF94 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
}

#experience h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #59FFB9 0%, #7218FA 100%);
    border-radius: 2px;
}

/* Timeline Styles */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 4rem auto 0;
    padding-left: 50px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg,
        #59FFB9 0%,
        #7218FA 30%,
        #00FF94 60%,
        #59FFB9 100%);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(89, 255, 185, 0.3);
}

.timeline-item1 {
    position: relative;
    margin-bottom: 4rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(89, 255, 185, 0.2);
    border-radius: 15px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 0.6s ease forwards;
}

.timeline-item1:nth-child(2) {
    animation-delay: 0.2s;
}

.timeline-item1:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(89, 255, 185, 0.1);
    border-color: rgba(89, 255, 185, 0.4);
}

.timeline-item1::before {
    content: '';
    position: absolute;
    left: -38px;
    top: 2rem;
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, #59FFB9 0%, #7218FA 100%);
    border-radius: 50%;
    border: 3px solid rgba(89, 255, 185, 0.3);
    box-shadow: 0 0 15px rgba(89, 255, 185, 0.5);
    z-index: 2;
}

.timeline-item1::after {
    content: '';
    position: absolute;
    left: -30px;
    top: 2.5rem;
    width: 8px;
    height: 8px;
    background: #59FFB9;
    border-radius: 50%;
    box-shadow: 0 0 10px #59FFB9;
    animation: pulse 2s infinite;
}

/* Experience Card Header */
.experience-header {
    margin-bottom: 1rem;
}

.company-name {
    color: #59FFB9;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.8;
}

.employment-type {
    display: inline-block;
    background: linear-gradient(135deg, #00FF94 0%, #59FFB9 100%);
    color: #000;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 15px;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.date-range {
    display: inline-block;
    background: linear-gradient(135deg, #7218FA 0%, #9D4EDD 100%);
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.timeline-item1 h3 {
    color: #59FFB9;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.timeline-item1 span {
    display: inline-block;
    background: linear-gradient(135deg, #7218FA 0%, #9D4EDD 100%);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.timeline-item1 p {
    color: #ccc;
    font-size: 1.4rem;
    line-height: 1.6;
    margin: 0;
}

/* Projects Section */
.projects {
    padding: 10rem 0;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(89, 255, 185, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    margin: 2rem 0;
    border-radius: 15px;
}

.projects__header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.projects__title {
    font-size: 6rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.projects__title:after {
    content: '';
    position: absolute;
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, #59FFB9, #00D4AA);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(89, 255, 185, 0.5);
}

.projects__subtitle {
    font-size: 1.8rem;
    color: #bdc3c7;
    line-height: 1.6;
    margin: 2rem auto 0;
    max-width: 700px;
}

/* Filter Buttons */
.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin: 0 auto 5rem;
    max-width: 1000px;
}

.filter-btn {
    padding: 1rem 2.2rem;
    background: rgba(89, 255, 185, 0.1);
    border: 2px solid rgba(89, 255, 185, 0.2);
    color: #b3ffe6;
    border-radius: 30px;
    font-size: 1.4rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(5px);
}

.filter-btn:hover, .filter-btn.active {
    background: linear-gradient(135deg, #59FFB9, #00D4AA);
    border-color: transparent;
    color: #0a1a1f;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(89, 255, 185, 0.3);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    font-weight: 700;
}

.filter-btn:hover {
    background-color: #f1f2f6;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(90deg, #59FFB9, #7218FA);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(89, 255, 185, 0.3);
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

/* Project Card */
.project-card {
    background: rgba(10, 26, 31, 0.7);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(89, 255, 185, 0.2);
    backdrop-filter: blur(12px);
    transform: translateY(0);
}

.project-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(89, 255, 185, 0.2);
    border-color: #59FFB9;
    background: rgba(0, 0, 0, 0.5);
}

.project-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.project-content {
    padding: 2.5rem;
}

.project-title {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.project-type {
    color: #59FFB9;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.project-description {
    color: #bdc3c7;
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.tag {
    background: rgba(255, 255, 255, 0.1);
    color: #ecf0f1;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 500;
}

.tag.pentest { background: rgba(89, 255, 185, 0.2); color: #59FFB9; border: 1px solid rgba(89, 255, 185, 0.3); }
.tag.ctf { background: rgba(0, 212, 170, 0.2); color: #00D4AA; border: 1px solid rgba(0, 212, 170, 0.3); }
.tag.tool { background: rgba(0, 179, 138, 0.2); color: #00b38a; border: 1px solid rgba(0, 179, 138, 0.3); }
.tag.automation { background: rgba(77, 232, 168, 0.2); color: #4de8a8; border: 1px solid rgba(77, 232, 168, 0.3); }
.tag.challenges { background: rgba(89, 200, 185, 0.2); color: #59C8B9; border: 1px solid rgba(89, 200, 185, 0.3); }

.project-actions {
    display: flex;
    gap: 1.2rem;
    margin-top: 1.5rem;
}

.source-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem 1.8rem;
    background: rgba(89, 255, 185, 0.1);
    color: #b3ffe6;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.3rem;
    border: 1px solid rgba(89, 255, 185, 0.2);
    backdrop-filter: blur(5px);
}

.source-btn:hover {
    background: rgba(157, 78, 221, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(157, 78, 221, 0.25);
    border-color: rgba(157, 78, 221, 0.4);
}

.source-btn:active {
    transform: translateY(0);
}

.source-btn svg {
    transition: transform 0.3s ease;
}

.source-btn:hover svg {
    transform: scale(1.1);
}

.source-btn.live {
    background: linear-gradient(135deg, #59FFB9, #00D4AA);
    border-color: transparent;
    color: #0a1a1f;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(89, 255, 185, 0.3);
}

.source-btn.live:hover {
    background: linear-gradient(135deg, #4de8a8, #00b38a);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 25px rgba(89, 255, 185, 0.4);
    color: #0a1a1f;
}

/* Empty State */
.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 6rem 2rem;
    display: none;
}

.empty-state i {
    font-size: 5rem;
    color: #bdc3c7;
    margin-bottom: 2rem;
}

.empty-state h3 {
    font-size: 2.4rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.empty-state p {
    color: #7f8c8d;
    font-size: 1.6rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .filter-buttons {
        gap: 0.8rem;
    }
    
    .filter-btn {
        padding: 0.8rem 1.6rem;
        font-size: 1.2rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .project-content {
        padding: 2rem;
    }
    
    .project-title {
        font-size: 1.8rem;
    }
    
    .project-description {
        font-size: 1.4rem;
    }
}

/* Connect Section */
.connect {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(114, 24, 250, 0.1) 50%, rgba(0, 0, 0, 0.95) 100%);
    border-top: 1px solid rgba(89, 255, 185, 0.3);
    border-bottom: 1px solid rgba(114, 24, 250, 0.3);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.connect__header {
    text-align: center;
    margin-bottom: 4rem;
}

.connect__title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #59FFB9 0%, #7218FA 50%, #00FF94 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
}

.connect__title-underline {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #59FFB9 0%, #7218FA 100%);
    margin: 0 auto;
    border-radius: 2px;
}

.connect__subtitle {
    font-size: 1.2rem;
    color: #ccc;
    max-width: 600px;
    margin: 1rem auto 0;
    line-height: 1.6;
}

.connect__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.connect__info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.connect__methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.connect__method {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(89, 255, 185, 0.2);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.connect__method:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(89, 255, 185, 0.1);
    border-color: rgba(89, 255, 185, 0.4);
}

.connect__icon {
    width: 50px;
    height: 50px;
    padding: 12px;
    background: linear-gradient(135deg, #59FFB9 0%, #7218FA 100%);
    border-radius: 12px;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.connect__icon svg {
    width: 24px;
    height: 24px;
}

.connect__details h3 {
    color: #59FFB9;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.connect__link {
    color: #ccc;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.connect__link:hover {
    color: #59FFB9;
}

.connect__cta {
    display: flex;
    align-items: center;
    justify-content: center;
}

.connect__cta-content {
    text-align: center;
    padding: 3rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(89, 255, 185, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    max-width: 500px;
}

.connect__cta-content h3 {
    color: #59FFB9;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.connect__cta-content p {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.connect__cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn--primary {
    background: linear-gradient(135deg, #59FFB9 0%, #00FF94 100%);
    color: #000;
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(89, 255, 185, 0.3);
}

.btn--secondary {
    background: linear-gradient(135deg, #7218FA 0%, #9D4EDD 100%);
    color: white;
}

.btn--secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(114, 24, 250, 0.3);
}

.btn__icon {
    width: 18px;
    height: 18px;
}

/* Connect Background Elements */
.connect__bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.connect__bg-node {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    opacity: 0.1;
}

.connect__bg-node--1 {
    background: radial-gradient(circle, #59FFB9 0%, transparent 70%);
    top: 20%;
    left: 10%;
    animation: float 6s ease-in-out infinite;
}

.connect__bg-node--2 {
    background: radial-gradient(circle, #7218FA 0%, transparent 70%);
    top: 60%;
    right: 15%;
    animation: float 8s ease-in-out infinite reverse;
}

.connect__bg-node--3 {
    background: radial-gradient(circle, #00FF94 0%, transparent 70%);
    bottom: 30%;
    left: 20%;
    animation: float 7s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.1);
    }
}

/* Responsive Design for Connect */
@media (max-width: 768px) {
    .connect__content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .connect__title {
        font-size: 2.5rem;
    }

    .connect__cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }

    .connect__methods {
        gap: 1.5rem;
    }

    .connect__method {
        padding: 1rem;
        gap: 1rem;
    }

    .connect__icon {
        width: 40px;
        height: 40px;
        padding: 10px;
    }

    .connect__icon svg {
        width: 20px;
        height: 20px;
    }
}

/* Footer Section */
.footer {
    background: linear-gradient(135deg,
        rgba(0, 0, 0, 0.98) 0%,
        rgba(89, 255, 185, 0.05) 25%,
        rgba(114, 24, 250, 0.05) 50%,
        rgba(0, 255, 148, 0.05) 75%,
        rgba(0, 0, 0, 0.98) 100%);
    border-top: 1px solid rgba(89, 255, 185, 0.3);
    padding: 6rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.footer__content {
    position: relative;
    z-index: 2;
}

.footer__main {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer__message {
    padding-right: 2rem;
}

.footer__title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #59FFB9 0%, #7218FA 50%, #00FF94 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer__quote {
    font-size: 1.3rem;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
}

.footer__quote::before {
    content: '"';
    color: #59FFB9;
    font-size: 4rem;
    position: absolute;
    top: -0.5rem;
    left: -1rem;
    opacity: 0.3;
}

.footer__signature {
    border-top: 1px solid rgba(89, 255, 185, 0.2);
    padding-top: 1.5rem;
}

.footer__name {
    display: block;
    color: #59FFB9;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.footer__tagline {
    color: #888;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.footer__stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(89, 255, 185, 0.2);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.footer__stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(89, 255, 185, 0.1);
    border-color: rgba(89, 255, 185, 0.4);
}

.footer__stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #59FFB9;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(89, 255, 185, 0.3);
}

.footer__stat-label {
    color: #ccc;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer__bottom {
    border-top: 1px solid rgba(89, 255, 185, 0.2);
    padding-top: 2rem;
    text-align: center;
}

.footer__links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer__link {
    color: #888;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.footer__link:hover {
    color: #59FFB9;
}

.footer__link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #59FFB9 0%, #7218FA 100%);
    transition: width 0.3s ease;
}

.footer__link:hover::after {
    width: 100%;
}

.footer__social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.footer__social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #59FFB9 0%, #7218FA 100%);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer__social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(89, 255, 185, 0.3);
}

.footer__social-link svg {
    width: 20px;
    height: 20px;
}

.footer__copyright {
    color: #666;
    font-size: 0.9rem;
}

.footer__heart {
    color: #59FFB9;
    animation: heartbeat 2s infinite;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

/* Footer Background Elements */
.footer__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.footer__bg-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
}

.footer__bg-element--1 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #59FFB9 0%, transparent 70%);
    top: 10%;
    left: 5%;
    animation: rotate 20s linear infinite;
}

.footer__bg-element--2 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, #7218FA 0%, transparent 70%);
    top: 70%;
    right: 10%;
    animation: rotate 25s linear infinite reverse;
}

.footer__bg-element--3 {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, #00FF94 0%, transparent 70%);
    top: 40%;
    left: 15%;
    animation: rotate 15s linear infinite;
}

.footer__bg-element--4 {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, #FFD93D 0%, transparent 70%);
    bottom: 20%;
    right: 20%;
    animation: rotate 30s linear infinite reverse;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Footer Responsive Design */
@media (max-width: 768px) {
    .footer__main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer__message {
        padding-right: 0;
        text-align: center;
    }

    .footer__title {
        font-size: 2.5rem;
    }

    .footer__stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .footer__stat-number {
        font-size: 2rem;
    }

    .footer__links {
        gap: 1.5rem;
    }

    .footer__social-link {
        width: 40px;
        height: 40px;
    }

    .footer__social-link svg {
        width: 18px;
        height: 18px;
    }
}

/* Certifications Section */
.certifications {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(89, 255, 185, 0.05) 50%, rgba(0, 0, 0, 0.95) 100%);
    border-top: 1px solid rgba(89, 255, 185, 0.3);
    border-bottom: 1px solid rgba(114, 24, 250, 0.3);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.certifications__title {
    font-size: 5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #59FFB9 0%, #7218FA 50%, #00FF94 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
}

.certifications__subtitle {
    font-size: 2rem;
    color: #59FFB9;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
    line-height: 1.6;
}

.certifications__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.project-card {
background: rgba(0, 0, 0, 0.3);
border: 1px solid rgba(89, 255, 185, 0.2);
border-radius: 15px;
overflow: hidden;
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
transition: all 0.3s ease;
position: relative;
backdrop-filter: blur(10px);
}

.project-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 40px rgba(89, 255, 185, 0.1);
}

.certification-card {
background: rgba(0, 0, 0, 0.3);
border: 1px solid rgba(89, 255, 185, 0.2);
border-radius: 20px;
padding: 2.5rem;
backdrop-filter: blur(10px);
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}

.certification-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 40px rgba(89, 255, 185, 0.1);
border-color: rgba(89, 255, 185, 0.4);
    border-color: rgba(89, 255, 185, 0.4);
}

.certification-card__header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.certification-card__icon {
    width: 80px;
    height: 80px;
    padding: 20px;
    background: linear-gradient(135deg, #59FFB9 0%, #7218FA 100%);
    border-radius: 15px;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.certification-card__icon svg {
    width: 40px;
    height: 40px;
}

.certification-card__badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, #7218FA 0%, #9D4EDD 100%);
    color: white;
    padding: 0rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.certification-card__badge--advanced {
    background: linear-gradient(135deg, #00FF94 0%, #59FFB9 100%);
    color: #000;
}

.certification-card__content {
    flex: 1;
}

.certification-card__title {
    color: #59FFB9;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.certification-card__issuer {
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.certification-card__description {
    color: #aaa;
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.certification-card__details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.certification-card__detail {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.detail-label {
    color: #888;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.detail-value {
    color: #59FFB9;
    font-size: 1.5rem;
    font-weight: 600;
}

/* Certifications Background Elements */
.certifications::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(89, 255, 185, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(114, 24, 250, 0.05) 0%, transparent 50%);
    pointer-events: none;
}


/* Certifications Responsive Design */
@media (max-width: 768px) {
    .certifications__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .certifications__title {
        font-size: 2.5rem;
    }

    .certification-card {
        padding: 2rem;
    }

    .certification-card__header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .certification-card__icon {
        width: 70px;
        height: 70px;
        padding: 15px;
    }

    .certification-card__icon svg {
        width: 35px;
        height: 35px;
    }

    .certification-card__badge {
        position: static;
        margin-top: 1rem;
    }

    .certification-card__details {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .timeline {
        padding-left: 30px;
        margin-top: 2rem;
    }

    .timeline::before {
        left: 15px;
    }

    .timeline-item1 {
        padding: 2rem;
        margin-bottom: 3rem;
    }

    .timeline-item1::before {
        left: -28px;
        width: 12px;
        height: 12px;
    }

    .timeline-item1::after {
        left: -22px;
        width: 6px;
        height: 6px;
    }

    #experience h2 {
        font-size: 2.5rem;
    }

    #experience {
        padding: 6rem 0;
    }

    #projects {
        padding: 10rem 0 6rem;
        margin-top: 0rem;
    }


}
