/*!
    Title: Dev Portfolio Template
    Version: 1.2.2
    Last Change: 03/25/2020
    Author: Ryan Fitzgerald
    Repo: https://github.com/RyanFitzgerald/devportfolio-template
    Issues: https://github.com/RyanFitzgerald/devportfolio-template/issues

    Description: This file contains all the styles associated with the page
    Gulp and send to the /css folder which is then loaded on the page.
*/
:root {
    --primary-color: #3498DB;
    --primary-light: #5DADE2;
    --primary-dark: #2980B9;
    --text-color: #1F2937;
    --text-light: #6B7280;
    --bg-light: #F9FAFB;
    --bg-white: #FFFFFF;
    --border-color: #E5E7EB;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.6;
}

body.active {
    overflow: hidden;
    z-index: -1
}



.no-js #experience-timeline>div {
    background: #fff;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #dcd9d9
}

.no-js #experience-timeline>div h3 {
    font-size: 1.5em;
    font-weight: 300;
    color: #374054;
    display: inline-block;
    margin: 0
}

.no-js #experience-timeline>div h4 {
    font-size: 1.2em;
    font-weight: 300;
    color: #7e8890;
    margin: 0 0 15px 0
}

.no-js #experience-timeline>div p {
    color: #74808a;
    font-size: 0.9em;
    margin: 0
}

.no-js #experience-timeline:before,
.no-js #experience-timeline:after {
    content: none
}

@keyframes dropHeader {
    0% {
        transform: translateY(-100%)
    }

    100% {
        transform: translateY(0)
    }
}

header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 10;
    animation-name: dropHeader;
    animation-iteration-count: 1;
    animation-timing-function: ease;
    animation-duration: 0.75s
}

header ul {
    display: inline-block;
    background: var(--bg-white);
    text-align: center;
    padding: 10px;
    margin: 0;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px
}

header li {
    display: inline-block
}

header a {
    display: block;
    color: var(--text-color);
    padding: 10px;
    font-weight: 500;
}

header a:hover {
    color: var(--primary-color);
    text-decoration: none;
    background: var(--bg-light);
    border-radius: 4px
}

header a:focus {
    color: var(--primary-color);
    text-decoration: none
}

header.active {
    display: block
}

header.sticky {
    position: fixed;
    z-index: 999;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    width: 100%;
    box-shadow: var(--shadow-sm);
}

#menu.active {
    display: block
}

#mobile-menu-open {
    display: none;
    cursor: pointer;
    position: fixed;
    right: 15px;
    top: 10px;
    color: #3498db;
    font-size: 1.5em;
    z-index: 20;
    padding: 0 7px;
    border-radius: 4px;
    background: #fff
}

#mobile-menu-close {
    display: none;
    text-align: right;
    width: 100%;
    background: #fff;
    font-size: 1.5em;
    padding-right: 15px;
    padding-top: 10px;
    cursor: pointer;
    color: #3498db
}

#mobile-menu-close span {
    font-size: 0.5em;
    text-transform: uppercase
}

#mobile-menu-close i {
    vertical-align: middle
}

footer {
    padding: 50px 0
}

.copyright {
    padding-top: 20px
}

.copyright p {
    margin: 0;
    color: #74808a
}

.top {
    text-align: center
}

.top span {
    cursor: pointer;
    display: block;
    margin: 15px auto 0 auto;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 3px solid #b9bfc4;
    text-align: center
}

.top i {
    color: #74808a
}

.social {
    text-align: right
}

.social ul {
    margin: 5px 0 0 0;
    padding: 0
}

.social li {
    display: inline-block;
    font-size: 1.25em;
    list-style: none
}

.social a {
    display: block;
    color: #74808a;
    padding: 10px
}

.social a:hover {
    color: #3498db
}

.btn-rounded-white {
    display: inline-block;
    color: #fff;
    padding: 15px 25px;
    border: 3px solid #fff;
    border-radius: 30px;
    transition: .5s ease all;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-rounded-white:hover {
    color: var(--primary-color);
    background: #fff;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.shadow {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24)
}

.shadow-large {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08), 0 3px 6px rgba(0, 0, 0, 0.15)
}

.heading {
    position: relative;
    display: inline-block;
    font-size: 2em;
    font-weight: 300;
    margin: 0 0 30px 0
}

.heading:after {
    position: absolute;
    content: '';
    top: 100%;
    height: 1px;
    width: 50px;
    left: 0;
    right: 0;
    margin: 0 auto;
    background: #3498db
}

.background-alt {
    background: var(--bg-light)
}

#lead {
    position: relative;
    height: 100vh;
    min-height: 500px;
    max-height: 1080px;
    background: url(../images/lead-bg.jpg);
    background-size: cover;
    padding: 15px;
    overflow: hidden
}

#lead-content {
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center
}

#lead-content h1,
#lead-content h2 {
    margin: 0
}

#lead-content h1 {
    color: #fff;
    font-weight: 900;
    font-size: 5em;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 0.9em
}

#lead-content h2 {
    color: var(--primary-light);
    font-weight: 500;
    font-size: 2.25em;
    margin-bottom: 15px;
    margin-top: 10px;
    letter-spacing: 0.02em;
}

#lead-overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.9) 0%, rgba(41, 128, 185, 0.8) 100%);
    z-index: 1
}

#lead-down {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    text-align: center;
    z-index: 10;
    bottom: 15px;
    color: #fff
}

#lead-down span {
    cursor: pointer;
    display: block;
    margin: 0 auto;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 3px solid #a0cfee;
    text-align: center
}

#lead-down i {
    animation: pulsate 1.5s ease;
    animation-iteration-count: infinite;
    padding-top: 5px
}

@keyframes pulsate {
    0% {
        transform: scale(1, 1)
    }

    50% {
        transform: scale(1.2, 1.2)
    }

    100% {
        transform: scale(1, 1)
    }
}

#about {
    padding: 75px 15px;
    border-bottom: 1px solid #dcd9d9
}

#about h2 {
    color: #374054
}

#about p {
    color: #74808a;
    margin: 0
}

#experience {
    padding: 50px 15px;
    text-align: center;
    border-bottom: 1px solid #dcd9d9
}

#experience h2 {
    color: #374054
}

#experience-timeline {
    margin: 30px auto 0 auto;
    position: relative;
    max-width: 1000px
}

#experience-timeline:before {
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    left: 303px;
    right: auto;
    height: 100%;
    width: 3px;
    background: var(--primary-color);
    z-index: 0
}

#experience-timeline:after {
    position: absolute;
    content: '';
    width: 3px;
    height: 40px;
    background: var(--primary-color);
    background: linear-gradient(to bottom, var(--primary-color), rgba(37, 99, 235, 0));
    top: 100%;
    left: 303px
}

.vtimeline-content {
    margin-left: 350px;
    background: var(--bg-white);
    border: none;
    padding: 25px;
    border-radius: 8px;
    text-align: left;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.vtimeline-content:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.vtimeline-content h3 {
    font-size: 1.5em;
    font-weight: 600;
    color: var(--text-color);
    display: inline-block;
    margin: 0
}

.vtimeline-content h4 {
    font-size: 1.2em;
    font-weight: 400;
    color: var(--text-light);
    margin: 5px 0 15px 0
}

.vtimeline-content p {
    color: var(--text-light);
    font-size: 0.95em;
    margin: 0
}

.vtimeline-point {
    position: relative;
    display: block;
    margin-bottom: 30px
}

.vtimeline-icon {
    position: relative;
    color: #fff;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    float: left;
    z-index: 99;
    margin-left: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 4px var(--bg-white);
}

.vtimeline-icon i {
    display: block;
    font-size: 1.5em;
}

.vtimeline-date {
    width: 260px;
    text-align: right;
    position: absolute;
    left: 0;
    top: 10px;
    font-weight: 400;
    color: var(--text-color);
}

#education {
    padding: 50px 15px 20px 15px;
    border-bottom: 1px solid #dcd9d9;
    text-align: center
}

#education h2 {
    color: #374054;
    margin-bottom: 50px
}

.education-block {
    max-width: 700px;
    margin: 0 auto 30px auto;
    padding: 25px;
    border: none;
    border-radius: 8px;
    text-align: left;
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.education-block:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.education-block h3 {
    font-weight: 600;
    float: left;
    margin: 0;
    color: var(--text-color);
}

.education-block span {
    color: var(--text-light);
    float: right;
    font-weight: 500;
}

.education-block h4 {
    color: var(--text-light);
    clear: both;
    font-weight: 500;
    margin: 5px 0 15px 0;
}

.education-block p,
.education-block ul {
    margin: 0;
    color: var(--text-light);
    font-size: 0.95em;
}

.education-block ul {
    padding: 0 0 0 15px
}

#projects {
    padding: 50px 15px;
    border-bottom: 1px solid #dcd9d9;
    text-align: center
}

#projects h2 {
    color: #374054;
    margin-bottom: 50px
}

.project {
    display: flex;
    align-items: stretch;
    position: relative;
    max-width: 900px;
    margin: 0 auto 30px auto;
    overflow: hidden;
    background: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.project:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.project-image {
    flex-shrink: 0;
    width: 35%;
    background: #f0f4f8;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.project-info {
    padding: 40px;
    width: 65%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.project-info h3 {
    font-size: 1.5em;
    font-weight: 300;
    color: #374054;
    margin: 0 0 15px 0
}

.project-info p {
    color: #74808a;
    margin: 0 0 15px 0;
    font-size: 0.9em;
    text-align: justify;
}

.no-image .project-info {
    position: relative;
    margin: 0;
    padding: 30px 15px;
    transform: none
}

#more-projects {
    display: none
}

@media (max-width: 770px) {
    .project {
        flex-direction: column;
        align-items: stretch;
        text-align: left;
    }

    .project-image {
        width: 100%;
        text-align: left;
    }

    .project-image img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        border-radius: 4px 4px 0 0;
    }

    .project-info {
        width: 100%;
        margin: 0;
        padding: 30px 20px;
        text-align: left;
    }

    .no-image .project-info {
        position: relative;
        margin: 0;
        padding: 30px 15px;
        transform: none;
    }
}

@media (max-width: 600px) {
    .project-info h3 {
        font-size: 1.2em;
    }

    .project-info p {
        font-size: 0.85em;
    }
}

#skills {
    padding: 50px 15px;
    text-align: center
}

#skills h2 {
    color: #374054;
    margin-bottom: 50px
}

#skills ul {
    display: block;
    margin: 0 auto;
    padding: 0;
    max-width: 800px
}

#skills li {
    display: inline-block;
    margin: 7px;
    padding: 8px 15px;
    color: var(--primary-color);
    background: #e4e4ea;
    list-style: none;
    cursor: default;
    font-size: 1.1em;
    border-radius: 9999px;
    font-weight: 500;
    transition: var(--transition);
}

#skills li:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

#contact {
    padding: 50px 15px;
    background: #3498db;
    text-align: center
}

#contact h2 {
    margin: 0 0 15px 0;
    color: #fff;
    font-weight: 500
}

#contact-form {
    max-width: 500px;
    margin: 0 auto
}

#contact-form input,
#contact-form textarea {
    display: block;
    width: 100%;
    padding: 10px;
    border-radius: 4px;
    border: none;
    margin-bottom: 10px;
    background: #1d6fa5;
    color: #fff;
    transition: .5s ease all
}

#contact-form input::-webkit-input-placeholder,
#contact-form textarea::-webkit-input-placeholder {
    color: #fff
}

#contact-form input:-moz-placeholder,
#contact-form textarea:-moz-placeholder {
    color: #fff;
    opacity: 1
}

#contact-form input::-moz-placeholder,
#contact-form textarea::-moz-placeholder {
    color: #fff;
    opacity: 1
}

#contact-form input:-ms-input-placeholder,
#contact-form textarea:-ms-input-placeholder {
    color: #fff
}

#contact-form input:focus,
#contact-form textarea:focus {
    outline: none;
    background: #16527a
}

#contact-form textarea {
    height: 150px;
    resize: none
}

#contact-form button {
    display: block;
    width: 100%;
    background: #fff;
    border-radius: 4px;
    padding: 5px 10px;
    border: none;
    color: #3498db;
    font-weight: 700;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    transition: .5s ease all
}

#contact-form button:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23)
}

.optional-section {
    padding: 50px 15px;
    text-align: center;
    border-top: 1px solid #dcd9d9
}

.optional-section h2 {
    color: #374054
}

.optional-section-block {
    max-width: 700px;
    margin: 0 auto 30px auto;
    padding: 15px;
    border: 1px solid #dcd9d9;
    background: #fff;
    text-align: left
}

.optional-section-block h3 {
    font-weight: 500;
    margin: 0 0 15px 0;
    color: #374054
}

.optional-section-block h4 {
    color: #74808a;
    clear: both;
    font-weight: 500;
    margin: 0 0 15px 0
}

.optional-section-block p,
.optional-section-block ul {
    margin: 0 0 15px 0;
    color: #74808a;
    font-size: 0.9em
}

.optional-section-block ul {
    padding: 0 0 0 15px
}

@media only screen and (max-width: 750px) {

    #experience-timeline:before,
    #experience-timeline:after {
        left: 23px
    }

    .vtimeline-date {
        width: auto;
        text-align: left;
        position: relative;
        margin-bottom: 15px;
        display: block;
        margin-left: 70px
    }

    .vtimeline-icon {
        margin-left: 0
    }

    .vtimeline-content {
        margin-left: 70px
    }
}

@media only screen and (max-width: 992px) {
    #lead {
        height: auto;
        min-height: auto;
        max-height: auto;
        padding: 100px 15px
    }

    #lead-content {
        position: relative;
        transform: none;
        left: auto;
        top: auto
    }

    #lead-content h1 {
        font-size: 3em
    }

    #lead-content h2 {
        font-size: 1.75em
    }

    #about {
        text-align: center
    }

    #about p {
        text-align: left
    }
}

@media only screen and (max-width: 768px) {
    header {
        position: fixed;
        display: none;
        z-index: 999;
        animation: none;
        bottom: 0;
        height: 100%
    }

    #mobile-menu-open,
    #mobile-menu-close {
        display: block
    }

    #menu {
        height: 100%;
        overflow-y: auto;
        box-shadow: none;
        border-radius: 0;
        width: 100%
    }

    #menu li {
        display: block;
        margin-bottom: 10px
    }

    #lead-content h1 {
        font-size: 2em
    }

    #lead-content h2 {
        font-size: 1.3em
    }

    #lead-content a {
        padding: 10px 20px
    }

    #lead-down {
        display: none
    }

    .education-block h3,
    .education-block span {
        float: none
    }


    .project-info {
        position: relative;
        margin: 0;
        padding: 30px 15px;
        top: auto;
        transform: none
    }

    footer {
        text-align: center
    }

    .social {
        text-align: center
    }
}

@media only screen and (max-width: 480px) {
    #lead-content h1 {
        font-size: 1.5em
    }

    #lead-content h2 {
        font-size: 1em
    }

    #lead-content a {
        font-size: 0.9em;
        padding: 5px 10px
    }
}

/* Additional*/
ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

li {
    margin-bottom: 10px;
    line-height: 1.6;
}

#about p {
    text-align: justify;
    /* Aligns the text in both left and right margins */
    margin-bottom: 20px;
    /* Adds space between paragraphs */
    line-height: 1.6;
    /* Improves readability */
}

#about .heading {
    margin-bottom: 20px;
    /* Adds space below the heading */
}

#experience ul li {
    text-align: justify;
    /* Aligns the text in both left and right margins */
    margin-bottom: 20px;
    /* Adds space between paragraphs */
    line-height: 1.6;
    /* Improves readability */
}

#experience .heading {
    margin-bottom: 20px;
    /* Adds space below the heading */
}

/* General Styling for Education Block */
.education-block {
    margin-bottom: 40px;
    /* Add space between education blocks */
}

/* Heading Styling */
.education-block h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #2c3e50;
}

.education-block h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #34495e;
}

/* Date Styling */
.education-date {
    font-size: 14px;
    font-style: italic;
    color: #7f8c8d;
    margin-bottom: 10px;
    display: block;
}

/* Two-Column List Styling */
.two-column-list {
    display: flex;
    /* Arrange items in a row */
    flex-wrap: wrap;
    /* Allow items to wrap to the next line */
    padding: 0;
    /* Remove default padding */
    margin: 0;
    /* Remove default margin */
    list-style-type: disc;
    /* Show bullet points */
    list-style-position: inside;
    /* Place bullets inside the list item */
}

.two-column-list li {
    flex: 0 0 50%;
    /* Each item takes 50% of the container width */
    margin-bottom: 10px;
    /* Add spacing between rows */
    text-align: left;
    /* Align text to the left */
    padding-left: 20px;
    /* Add padding for the bullet */
}


/* Volunteering Section */
#volunteering {
    padding: 50px 20px;
    background-color: #ffffff;
    text-align: center;
}

#volunteering .heading {
    /* font-size: 2rem; */
    margin-bottom: 30px;
    color: #333;
}

.volunteering-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.volunteering-item {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: center;
    padding: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.volunteering-item:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.volunteering-item img {
    width: 100px;
    height: 100px;
    margin-bottom: 15px;
    object-fit: contain;
}

.volunteering-info h3 {
    font-size: 2.00rem;
    margin: 10px 0;
    color: #007BFF;
}

.volunteering-info p {
    font-size: 2rem;
    color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
    .volunteering-item {
        width: 100%;
    }
}

/* General Styling */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Certificate Gallery Styling */
/* Certificates Section */
.certificates-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.certificate-item {
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    width: 300px;
    /* Consistent card width */
}

.certificate-item:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.certificate-item img {
    width: 100%;
    /* Adjust to the container width */
    height: auto;
    /* Maintain aspect ratio */
    max-height: 200px;
    /* Limit height for consistent look */
    object-fit: contain;
    /* Ensures the image fits within the container */
}

.certificate-item p {
    margin: 10px 0;
    font-size: 1rem;
    color: #333;
}

.certificate-item a {
    display: inline-block;
    margin: 10px 0;
    padding: 8px 16px;
    background-color: #007BFF;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
}

.certificate-item a:hover {
    background-color: #0056b3;
}

/* ============================================
   PORTFOLIO ENHANCEMENTS
   ============================================ */

html {
    scroll-behavior: smooth;
}

body,
header,
header ul,
#about,
#experience,
#education,
#projects,
#skills,
#volunteering,
#certificate,
#contact,
footer,
.vtimeline-content,
.education-block,
.project,
.volunteering-item,
.certificate-item {
    transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

/* ---- DARK MODE ---- */
[data-theme="dark"] {
    --primary-color: #60A5FA;
    --primary-light: #93C5FD;
    --primary-dark: #3B82F6;
    --text-color: #F3F4F6;
    --text-light: #D1D5DB;
    --bg-light: #1E293B;
    --bg-white: #0F172A;
    --border-color: rgba(255, 255, 255, 0.1);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] body {
    background: #0F172A;
}

[data-theme="dark"] header ul {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
}

[data-theme="dark"] header a {
    color: #E2E8F0;
}

[data-theme="dark"] header a:hover {
    color: var(--primary-color);
    background: rgba(96, 165, 250, 0.1);
}

[data-theme="dark"] header.sticky {
    background: rgba(15, 23, 42, 0.95);
}

[data-theme="dark"] #about {
    background: #0F172A;
    border-bottom-color: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] #about h2,
[data-theme="dark"] #about p {
    color: #CBD5E1;
}

[data-theme="dark"] #experience {
    background: #1E293B;
    border-bottom-color: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] #experience h2 {
    color: #F1F5F9;
}

[data-theme="dark"] .vtimeline-content {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .vtimeline-content h3 {
    color: #94A3B8;
}

[data-theme="dark"] .vtimeline-content h4 {
    color: #7B8794;
}

[data-theme="dark"] .vtimeline-content p,
[data-theme="dark"] .vtimeline-content li {
    color: #7B8794;
}

[data-theme="dark"] .vtimeline-date {
    color: #7B8794;
}

[data-theme="dark"] .vtimeline-icon {
    box-shadow: 0 0 0 4px #0F172A;
}

[data-theme="dark"] #education {
    background: #0F172A;
    border-bottom-color: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] #education h2 {
    color: #F1F5F9;
}

[data-theme="dark"] .education-block {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .education-block h3 {
    color: #94A3B8;
}

[data-theme="dark"] .education-block h4 {
    color: #7B8794;
}

[data-theme="dark"] .education-block span {
    color: #7B8794;
}

[data-theme="dark"] .education-block li {
    color: #7B8794;
}

[data-theme="dark"] #projects {
    background: #1E293B;
    border-bottom-color: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] #projects h2 {
    color: #F1F5F9;
}

[data-theme="dark"] .project {
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .project-info h3 {
    color: #F1F5F9;
}

[data-theme="dark"] .project-info p {
    color: #94A3B8;
}

[data-theme="dark"] .project-info a {
    color: #fff;
}

[data-theme="dark"] .project-image {
    background: rgba(15, 23, 42, 0.5);
}

[data-theme="dark"] #volunteering {
    background: #0F172A;
}

[data-theme="dark"] #volunteering .heading {
    color: #F1F5F9;
}

[data-theme="dark"] .volunteering-item {
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .volunteering-info h3 {
    color: var(--primary-color);
}

[data-theme="dark"] .volunteering-info p {
    color: #94A3B8;
}

[data-theme="dark"] #skills {
    background: #1E293B;
}

[data-theme="dark"] #skills h2 {
    color: #F1F5F9;
}

[data-theme="dark"] #skills li {
    background: rgba(96, 165, 250, 0.15);
    color: var(--primary-light);
    border: 1px solid rgba(96, 165, 250, 0.2);
}

[data-theme="dark"] #skills li:hover {
    background: var(--primary-color);
    color: #0F172A;
}

[data-theme="dark"] #certificate {
    background: #0F172A;
}

[data-theme="dark"] #certificate .heading {
    color: #F1F5F9;
}

[data-theme="dark"] .certificate-item {
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .certificate-item h3 {
    color: #F1F5F9;
}

[data-theme="dark"] .certificate-item a {
    background: var(--primary-color);
}

[data-theme="dark"] #contact {
    background: linear-gradient(135deg, #1E3A5F, #0F172A);
}

[data-theme="dark"] footer {
    background: #0F172A;
}

[data-theme="dark"] .copyright p {
    color: #64748B;
}

[data-theme="dark"] .social a {
    color: #94A3B8;
}

[data-theme="dark"] .social a:hover {
    color: var(--primary-color);
}

[data-theme="dark"] #mobile-menu-open {
    background: #1E293B;
    color: var(--primary-color);
}

[data-theme="dark"] #mobile-menu-close {
    background: #0F172A;
    color: var(--primary-color);
}

[data-theme="dark"] .heading:after {
    background: var(--primary-color);
}

/* ---- DARK MODE TOGGLE ---- */
.dark-mode-toggle {
    background: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1em;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.dark-mode-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: rotate(30deg);
}

[data-theme="dark"] .dark-mode-toggle {
    border-color: rgba(96, 165, 250, 0.4);
    color: #60A5FA;
}

[data-theme="dark"] .dark-mode-toggle:hover {
    background: rgba(96, 165, 250, 0.1);
    border-color: #60A5FA;
}

header .dark-mode-toggle {
    border-color: rgba(0, 0, 0, 0.2);
    color: var(--text-color);
}

header .dark-mode-toggle:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(52, 152, 219, 0.1);
}

/* ---- PARTICLE CANVAS ---- */
#particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

/* ---- TYPEWRITER ---- */
.typewriter-cursor {
    display: inline-block;
    animation: blink 1s step-end infinite;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    margin-left: 2px;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* ---- CUSTOM CURSOR ---- */
.custom-cursor {
    width: 30px;
    height: 30px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.15s ease-out, opacity 0.15s ease;
    transform: translate(-50%, -50%);
    opacity: 0;
    mix-blend-mode: difference;
}

.custom-cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10001;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.15s ease;
}

.custom-cursor.active,
.custom-cursor-dot.active {
    opacity: 1;
}

.custom-cursor.hovering {
    transform: translate(-50%, -50%) scale(1.8);
    background: rgba(52, 152, 219, 0.1);
    border-color: var(--primary-light);
}

@media (pointer: coarse) {

    .custom-cursor,
    .custom-cursor-dot {
        display: none !important;
    }
}

/* ---- GLASSMORPHISM ---- */
.vtimeline-content {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.education-block {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.volunteering-item {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.certificate-item {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ---- SKILLS CATEGORIES ---- */
.skills-category {
    max-width: 900px;
    margin: 0 auto 35px auto;
    text-align: left;
}

.skills-category h3 {
    font-size: 1.1em;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.skills-category h3 i {
    color: var(--primary-color);
    font-size: 1.1em;
}

.skills-category ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 0;
    margin: 0;
}

.skills-category li {
    display: inline-block;
    margin: 0;
    padding: 8px 18px;
    color: var(--primary-color);
    background: rgba(52, 152, 219, 0.08);
    border: 1px solid rgba(52, 152, 219, 0.15);
    list-style: none;
    cursor: default;
    font-size: 0.95em;
    border-radius: 9999px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.skills-category li:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

[data-theme="dark"] .skills-category h3 {
    color: #E2E8F0;
}

[data-theme="dark"] .skills-category li {
    background: rgba(96, 165, 250, 0.12);
    color: var(--primary-light);
    border: 1px solid rgba(96, 165, 250, 0.2);
}

[data-theme="dark"] .skills-category li:hover {
    background: var(--primary-color);
    color: #0F172A;
    box-shadow: 0 4px 15px rgba(96, 165, 250, 0.3);
}

/* ---- MAGNETIC SOCIAL LINKS ---- */
.social a {
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
}

.social a:hover {
    color: var(--primary-color);
    background: rgba(52, 152, 219, 0.1);
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(52, 152, 219, 0.3);
}

[data-theme="dark"] .social a:hover {
    background: rgba(96, 165, 250, 0.15);
    box-shadow: 0 0 20px rgba(96, 165, 250, 0.3);
}

/* ---- SCROLL PROGRESS BAR ---- */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), #8B5CF6, var(--primary-light));
    z-index: 10001;
    transition: width 0.1s ease;
    border-radius: 0 2px 2px 0;
    width: 0%;
}

/* ---- HERO GRADIENT ENHANCEMENT ---- */
#lead-overlay {
    background: linear-gradient(135deg,
            rgba(15, 23, 42, 0.85) 0%,
            rgba(30, 58, 138, 0.8) 30%,
            rgba(52, 152, 219, 0.75) 60%,
            rgba(99, 102, 241, 0.8) 100%) !important;
}

/* ---- PROJECT LINK BUTTONS ---- */
.project-info a {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9em;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.3);
}

.project-info a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.5);
    color: #fff;
    text-decoration: none;
}

[data-theme="dark"] .project-info a {
    background: linear-gradient(135deg, #3B82F6, #6366F1);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

/* ---- 3D TILT GLOW ---- */
.project {
    transform-style: preserve-3d;
}

.project:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

[data-theme="dark"] .project:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(96, 165, 250, 0.1);
}

/* ---- HEADING ENHANCEMENT ---- */
.heading {
    font-weight: 700 !important;
    font-size: 2.2em !important;
    letter-spacing: -0.02em;
}