/* --- Light & Dark Theme Variables --- */
[data-theme="dark"] {
    --bg-color: #121212;
    --primary-color: #1e1e1e;
    --secondary-color: #2a2a2a;
    --text-color: #e0e0e0;
    --heading-color: #ffffff;
    --border-color: #333;
    --gradient-start: rgba(42, 42, 42, 0.7);
    --gradient-mid: rgba(30, 30, 30, 0.8);
    --gradient-end: rgba(42, 42, 42, 0.7);
}

[data-theme="light"] {
    --bg-color: #f4f4f9;
    --primary-color: #ffffff;
    --secondary-color: #e9ecef;
    --text-color: #343a40;
    --heading-color: #212529;
    --border-color: #dee2e6;
    --gradient-start: rgba(233, 236, 239, 0.7);
    --gradient-mid: rgba(255, 255, 255, 0.8);
    --gradient-end: rgba(233, 236, 239, 0.7);
}

:root {
    --accent-color: #FF9900; /* AWS Orange */
    --link-color: #00aaff;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Roboto', sans-serif;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--heading-color);
    margin-bottom: 1rem;
    line-height: 1.2;
    transition: color 0.3s ease;
}

h1 { font-size: 3.8rem; }
h2 { font-size: 2.8rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.3rem; }

p {
    margin-bottom: 1rem;
}

a {
    color: var(--link-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

/* Header & Navbar */
header {
    background: rgba(18, 18, 18, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}
[data-theme="light"] header {
    background: rgba(255, 255, 255, 0.85);
}


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* UPDATED LOGO STYLE */
.nav-logo {
    font-family: 'Allura', cursive;
    font-size: 2rem;
    font-weight: 400; /* Cursive fonts look better without bold */
    color: var(--accent-color);
    text-decoration: none;
    letter-spacing: normal; /* Reset letter-spacing for cursive */
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s ease-out;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--accent-color);
}

.hamburger {
    display: none;
    cursor: pointer;
    padding: 10px;
}

.bar {
    display: block;
    width: 30px;
    height: 3px;
    margin: 6px auto;
    background-color: var(--text-color);
    transition: all 0.3s ease-in-out;
}

.theme-toggle-button {
    background: var(--secondary-color);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.theme-toggle-button:hover {
    color: var(--accent-color);
    transform: rotate(15deg);
}

/* CTA Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    margin-right: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button.primary {
    background-color: var(--accent-color);
    color: #121212;
}
[data-theme="light"] .cta-button.primary {
    color: #ffffff;
}


.cta-button.primary:hover {
    background-color: #cc7700;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 153, 0, 0.3);
}

.cta-button.secondary {
    background-color: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    padding: 10px 23px;
}

.cta-button.secondary:hover {
    background-color: var(--accent-color);
    color: var(--bg-color);
}
[data-theme="light"] .cta-button.secondary:hover {
    color: #ffffff;
}

.cta-button.small {
    padding: 8px 18px;
    font-size: 0.9rem;
    margin-top: 1.5rem;
}

.cta-button i {
    margin-left: 8px;
}

/* --- HERO SECTION --- */
.hero-section {
    min-height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
    padding: 40px 2rem 0 2rem;
}

.hero-content {
    flex: 2;
    padding-right: 2rem;
    min-width: 300px;
    animation: fadeInSlideRight 1s ease-out forwards;
    opacity: 0;
    text-align: left;
    margin-left: 4rem;
}

.hero-image {
    width: 300px;
    height: 300px;
    background-color: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInSlideLeft 1s ease-out forwards;
    opacity: 0;
    transition: background-color 0.3s ease;

    position: relative;
    left: -140px;
}

[data-theme="light"] .hero-image {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.hero-image img {
    width: 95%;
    height: 95%;
    object-fit: cover;
    border-radius: 50%;
    border: none;
    box-shadow: none;
    transition: transform 0.3s ease-in-out;
}

.hero-image:hover img {
    transform: scale(1.05);
}

.hero-content .greeting {
    font-size: 1.3rem;
    color: var(--accent-color);
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1;
    margin-bottom: 1rem;
}

.hero-content .subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--heading-color);
    margin-bottom: 2rem;
}

.hero-buttons {
    margin-top: 2.5rem;
    display: flex;
    gap: 1rem;
}

/* Content Sections */
.content-section {
    padding: 6rem 0;
    border-bottom: 1px solid var(--border-color);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out, border-color 0.3s ease;
}

.content-section:last-of-type {
    border-bottom: none;
}

.content-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.content-section h2 {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    padding-bottom: 10px;
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
    background-color: var(--primary-color);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    transition: background-color 0.3s ease;
}
[data-theme="light"] .about-stats {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.stat-item h3 {
    color: var(--accent-color);
    font-size: 2.5rem;
    margin-bottom: 0.3rem;
}

.stat-item p {
    font-size: 1rem;
    color: var(--text-color);
    margin: 0;
}

/* --- Skills Section with Animated Background --- */
.tech-skills-section {
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.tech-skills-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        var(--gradient-start),
        var(--gradient-mid),
        var(--gradient-end)
    );
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    z-index: -1;
    opacity: 0.6;
    transition: background 0.3s ease;
}

.tech-skills-section .container {
    position: relative;
    z-index: 1;
}

.skills-category {
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.skills-category h3 {
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--accent-color);
    position: relative;
    font-size: 1.8rem;
}

.skills-category h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: var(--heading-color);
    border-radius: 1px;
}

.skills-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.skill-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background-color: var(--secondary-color);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgb(0 0 0 / 0.2);
    width: 120px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    animation: float 4s ease-in-out infinite;
}
[data-theme="light"] .skill-item {
     box-shadow: 0 4px 10px rgb(0 0 0 / 0.05);
}

.skill-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 153, 0, 0.2);
    animation-play-state: paused;
}

.skill-item img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 0.8rem;
    filter: grayscale(20%) brightness(90%);
    transition: filter 0.3s ease;
}
[data-theme="light"] .skill-item img {
    filter: none;
}

.skill-item:hover img {
    filter: grayscale(0%) brightness(100%);
}

.skill-item span {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-color);
    text-align: center;
}

/* Project Section */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.project-card {
    background: var(--primary-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    display: flex;
    flex-direction: column;
}
[data-theme="light"] .project-card {
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(255, 153, 0, 0.2);
}

.project-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 1px solid var(--border-color);
}

.project-info {
    padding: 1.8rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.project-info h3 {
    margin-bottom: 0.8rem;
    color: var(--accent-color);
}

.project-info p {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.project-tags {
    margin-bottom: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.project-tags span {
    background: var(--secondary-color);
    color: var(--text-color);
    padding: 6px 12px;
    border-radius: 5px;
    font-size: 0.85rem;
    white-space: nowrap;
}

.project-links {
    margin-top: auto;
    display: flex;
    gap: 1.5rem;
}

.project-links a {
    color: var(--link-color);
    font-weight: 500;
    display: flex;
    align-items: center;
}

.project-links a:hover {
    color: var(--accent-color);
}

.project-links a i {
    margin-right: 8px;
}

/* Experience Section */
.experience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.timeline, .certifications {
    background-color: var(--primary-color);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    transition: background-color 0.3s ease;
}
[data-theme="light"] .timeline,
[data-theme="light"] .certifications {
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}


.timeline h3, .certifications h3 {
    color: var(--heading-color);
    margin-bottom: 2.5rem;
    text-align: center;
    position: relative;
}
.timeline h3::after, .certifications h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background-color: var(--accent-color);
}

.timeline-item {
    border-left: 3px solid var(--accent-color);
    padding-left: 1.5rem;
    padding-bottom: 2rem;
    position: relative;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -9px;
    top: 0;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: var(--accent-color);
    border: 3px solid var(--bg-color);
}

.timeline-item h4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.timeline-item span {
    display: block;
    color: var(--text-color);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.timeline-item ul {
    list-style-type: disc;
    margin-left: 1.5rem;
    color: var(--text-color);
    font-size: 1rem;
}

.timeline-item ul li {
    margin-bottom: 0.5rem;
}

/* --- UPDATED CERTIFICATION STYLES --- */
.certification-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 2.5rem;
    gap: 1rem;
}

.certification-item:last-child {
    margin-bottom: 0;
}

.cert-details h4 {
    color: var(--heading-color);
    margin-bottom: 0.3rem;
}

.cert-details p {
    font-size: 0.95rem;
    color: var(--text-color);
    margin: 0;
}

.cert-badge-image {
    width: 100%;
    max-width: 90px;
    height: auto;
    margin-top: 1rem;
    border-radius: 8px;
}

.cert-details a {
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
}

.cert-details a i {
    margin-left: 5px;
    font-size: 0.8rem;
}


/* Contact Section */
.contact-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem auto;
    font-size: 1.1rem;
}

.contact-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.contact-info p {
    margin: 0;
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 10px;
    color: var(--accent-color);
    font-size: 1.3rem;
}

#contact-form {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2.5rem;
    background-color: var(--primary-color);
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    transition: background-color 0.3s ease;
}
[data-theme="light"] #contact-form {
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

#contact-form input,
#contact-form textarea {
    width: 100%;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background: var(--secondary-color);
    color: var(--text-color);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

#contact-form input::placeholder,
#contact-form textarea::placeholder {
    color: #999;
}
[data-theme="light"] #contact-form input::placeholder,
[data-theme="light"] #contact-form textarea::placeholder {
    color: #6c757d;
}

#contact-form input:focus,
#contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(255, 153, 0, 0.3);
}

#contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

#contact-form button {
    align-self: flex-start;
    border: none;
    cursor: pointer;
}

/* Footer */
footer {
    background: var(--primary-color);
    padding: 2.5rem 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
    color: var(--text-color);
    font-size: 0.95rem;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

footer .fas.fa-heart {
    color: #e74c3c;
    margin: 0 5px;
}


/* Animations */
@keyframes fadeInSlideRight {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInSlideLeft {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Float animation for skills - UPDATED SYNTAX */
@keyframes float {
    0% {
        transform: translateY(0px);
        box-shadow: 0 4px 10px rgb(0 0 0 / 0.2);
    }
    50% {
        transform: translateY(-6px);
        box-shadow: 0 10px 15px rgb(0 0 0 / 0.3);
    }
    100% {
        transform: translateY(0px);
        box-shadow: 0 4px 10px rgb(0 0 0 / 0.2);
    }
}

[data-theme="light"] @keyframes float {
    0% {
        transform: translateY(0px);
        box-shadow: 0 4px 10px rgb(0 0 0 / 0.05);
    }
    50% {
        transform: translateY(-6px);
        box-shadow: 0 10px 15px rgb(0 0 0 / 0.1);
    }
    100% {
        transform: translateY(0px);
        box-shadow: 0 4px 10px rgb(0 0 0 / 0.05);
    }
}

/* Animation for gradient background shift */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* --- Social Sidebar --- */
.social-sidebar {
    position: fixed;
    top: 60%;
    left: 1rem; /* Moved further from the edge */
    transform: translateY(-50%);
    z-index: 999; 
    
    display: flex;
    flex-direction: column;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px; /* Made circle smaller */
    height: 20px; /* Made circle smaller */
    font-size: 1.1rem; /* Made icon smaller */
    color: var(--text-color);
    
    background-color: var(--secondary-color);
    border: 1px solid var(--border-color);
    border-radius: 50%; /* This makes it a circle */
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    margin-bottom: 1rem; /* Adjusted space between circles */
    
    transition: all 0.3s ease;
}

[data-theme="light"] .social-icon {
    background-color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.social-icon:hover {
    color: var(--accent-color); 
    transform: scale(1.1) translateY(-3px); /* Lift and scale on hover */
    box-shadow: 0 6px 15px rgba(255, 153, 0, 0.2); /* Accent color glow */
}


/* Responsive Design */
@media (max-width: 992px) {
    .hero-section {
        flex-direction: column-reverse;
        text-align: center;
        height: auto;
        padding: 100px 0 60px 0;
    }

    .hero-content {
        padding-right: 0;
        margin-left: 0; /* Reset margin for mobile */
        margin-bottom: 3rem;
        animation: none;
        opacity: 1;
        transform: none;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        animation: none;
        opacity: 1;
        transform: none;
        margin-bottom: 3rem;
        margin-left: 0;
        left: 0; /* Reset position for mobile */
        position: static; /* Reset position for mobile */
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }
    .hero-content .subtitle {
        font-size: 1.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .experience-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.2rem; }
    h3 { font-size: 1.5rem; }

    .navbar {
        padding: 0 1.5rem;
    }
    .nav-logo {
        font-size: 1.6rem;
    }
    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--bg-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        gap: 0;
        border-top: 1px solid var(--border-color);
        box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    }
    [data-theme="light"] .nav-menu {
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .nav-item {
        padding: 18px 0;
        border-bottom: 1px solid var(--secondary-color);
    }
    .nav-item:last-child {
        border-bottom: none;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }
    .hero-content .subtitle {
        font-size: 1.3rem;
    }

    .hero-image {
        width: 220px;
        height: 220px;
    }

    .skill-item {
        width: 100px;
        padding: 0.8rem;
    }
    .skill-item img {
        width: 50px;
        height: 50px;
    }
    .skill-item span {
        font-size: 0.85rem;
    }

    .project-grid {
        grid-template-columns: 1fr;
    }

    .timeline-item ul {
        margin-left: 1rem;
    }
    .timeline-item h4 {
        font-size: 1.2rem;
    }

    .contact-info {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    #contact-form {
        padding: 1.5rem;
    }
    
    .social-sidebar {
        display: none; /* Hide floating icons on mobile */
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    .hero-content .subtitle {
        font-size: 1.1rem;
    }
    .cta-button {
        width: 100%;
        justify-content: center;
        margin-right: 0;
        margin-bottom: 1rem;
    }
    .hero-buttons {
        flex-direction: column;
    }

    .hero-image {
        width: 180px;
        height: 180px;
    }

    .skill-item {
        width: 90px;
        padding: 0.6rem;
    }
    .skill-item img {
        width: 40px;
        height: 40px;
    }
    .project-links {
        flex-direction: column;
        gap: 0.8rem;
    }
    .contact-info p {
        font-size: 1rem;
    }
}