* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #fff; /* White text globally */
}

body {
    font-family: 'Chakra Petch', sans-serif;
    background-color: #000; /* Pure black background */
    color: #fff;
    padding: 20px;
    line-height: 1.6;
    zoom: 75%;
}

/* GENERAL SECTION STYLING */
.section {
    width: 80%;
    margin: 20px auto;
    padding: 20px;
    background-color: #000;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

/* GENERAL SECTION CONTAINER */
.section-container {
    width: 80%;
    margin: 10px auto; /* Reduced from 20px to 10px */
    padding: 0;
}

/* CARD STYLES (applies to all sections) */
.section-card {
    background-color: #000;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 15px; /* Reduced from 30px */
}



/* Keep all other existing styles the same */
.section-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(255, 255, 255, 0.2);
}

#headshot {
    max-width: 200px;
    border-radius: 50%;
    margin: 20px 0;
    border: 3px solid #333;
}

/* Specific section heights */
#about-me, #education, #work-experience, #projects {
    min-height: 100px;
}

/* HEADERS */
h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #fff;
}

h3 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #fff;
}

/* NAVBAR STYLES */
#navbar {
    padding: 10px 20px;
    font-family: 'Chakra Petch', sans-serif;
    background-color: #111;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    margin: 20px auto;
    max-width: 1200px;
    border: 1px solid #333;
}

#navbar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

#navbar li {
    display: inline;
}

#navbar a {
    color: #fff;
    text-decoration: none;
    padding: 12px 20px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: background-color 0.3s ease, color 0.3s ease;
    border-radius: 6px;
}

#navbar a:hover {
    background-color: #333;
    color: #fff;
}

#navbar a.active {
    background-color: #555;
    color: white;
}

/* WELCOME SECTION */
#intro {
    padding: 60px 20px;
    text-align: center;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#intro h2 {
    font-size: 3rem;
    margin: 0;
    animation: typing 3s steps(40) 1s forwards;
}

/* Typing animation */
.typing {
    display: inline-block;
    border-right: 3px solid #fff;
    white-space: nowrap;
    overflow: hidden;
    animation: typing 4s steps(40) 1s 1 normal both, blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink-caret {
    50% { border-color: transparent; }
}


#headshot {
    width: 200px;
    height: 240px;
    border-radius: 12px !important; /* Force rounded corners */
    border: 3px solid #444;
    object-fit: cover;
    object-position: top center;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    filter: grayscale(20%) contrast(110%);
    justify-self: end;
    /* Ensure these properties aren't being overridden */
    -webkit-border-radius: 12px !important;
    -moz-border-radius: 12px !important;
    display: block; /* Important for img elements */
    overflow: hidden; /* Ensures corners stay rounded */
}

#headshot:hover {
    border-radius: 16px !important;
    -webkit-border-radius: 16px !important;
    -moz-border-radius: 16px !important;
}

/* Add this to ensure no parent elements are interfering */
#about-me img#headshot {
    border-radius: 12px !important;
    -webkit-border-radius: 12px !important;
    -moz-border-radius: 12px !important;
}

/* EDUCATION SECTION */
#education {
    background-color: #000 !important;
    border: none !important;
    box-shadow: none !important;
}

.details {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 8px;
}

.view-resume {
    display: inline-block;
    background-color: #333;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 20px;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
}

.view-resume:hover {
    background-color: #555;
}

.social-icons {
    display: flex;
    justify-content: flex-start;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    transition: transform 0.2s ease-in-out;
    filter: invert(1); /* Make icons white */
}

.social-icon:hover {
    transform: scale(1.2);
    cursor: pointer;
}

/* WORK EXPERIENCE SECTION */
#work-experience {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0;
}

.work-experience-cardbox {
    background-color: #000 !important;
    border: 1px solid #333 !important;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
}

.work-experience-cardbox:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(255, 255, 255, 0.2);
}

.work-title {
    display: flex;
    justify-content: space-between;
    font-size: 1.7rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 10px;
}

.location {
    font-size: 1.2rem;
    color: #ccc;
}

.company-time {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.company {
    font-weight: bold;
    color: #fff;
}

.work-time {
    font-size: 1rem;
    font-style: italic;
    color: #ccc;
}

.job-description {
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.6;
}

/* PROJECTS SECTION */
#projects {
    background-color: #000 !important;
    border: none !important;
    box-shadow: none !important;
    margin-top: 40px;
}

.projects-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.project {
    background-color: #000;
    border: 1px solid #333;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(255, 255, 255, 0.2);
}

.project-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid #333;
}

/* THANK YOU SECTION */
#thankyou {
    text-align: center;
    padding: 40px 20px;
}

footer {
    margin-top: 30px;
    color: #ccc;
}

/* RESPONSIVE DESIGN */
@media (max-width: 767px) {
    .section {
        width: 95%;
    }
    
    #navbar ul {
        flex-direction: column;
        gap: 10px;
    }
    
    .projects-container {
        grid-template-columns: 1fr;
    }
    
    #intro h2 {
        font-size: 2rem;
    }
}


#headshot {
    max-width: 200px;
    border-radius: 50%;
    margin: 20px 0;
    border: 3px solid #333;
}

.about-content {
    width: 100%;
}

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

/* EDUCATION SECTION */
#education {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0;
}

.education-cardbox {
    background-color: #000 !important;
    border: 1px solid #333 !important;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
}

.education-cardbox:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(255, 255, 255, 0.2);
}

.education-header {
    display: flex;
    justify-content: space-between;
    font-size: 1.7rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 10px;
}

.education-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.school {
    font-weight: bold;
    color: #fff;
}

.education-time {
    font-size: 1rem;
    font-style: italic;
    color: #ccc;
}

.education-description {
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.6;
}

/* Keep the existing social icons and resume button styles */
.social-icons {
    display: flex;
    justify-content: flex-start;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    transition: transform 0.2s ease-in-out;
    filter: invert(1); /* Make icons white */
}

.social-icon:hover {
    transform: scale(1.2);
    cursor: pointer;
}

.view-resume {
    display: inline-block;
    background-color: #333;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 20px;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
}

.view-resume:hover {
    background-color: #555;
}

/* GLOBAL CONTAINER */
.website-wrapper {
    max-width: 1200px; /* Adjust this to your preferred max width */
    width: 90%; /* Allows for padding on smaller screens */
    margin: 0 auto; /* Centers the content */
    padding: 0 20px; /* Optional side padding */
}

/* HEADER/CONTENT/FOOTER ALIGNMENT */
#navbar,
.section-container,
footer {
    max-width: inherit; /* Inherits from .website-wrapper */
    width: 100%;
}


/* RESPONSIVE BREAKPOINTS */
@media (max-width: 768px) {
    .website-wrapper {
        width: 95%; /* More padding on mobile */
        padding: 0 15px;
    }
    
    #about-me {
        grid-template-columns: 1fr;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #000; /* Black text globally */
}

body {
    font-family: 'Chakra Petch', sans-serif;
    background-color: #fff; /* Pure white background */
    color: #000;
    padding: 20px;
    line-height: 1.6;
    zoom: 75%;
}

/* GENERAL SECTION STYLING */
.section {
    width: 80%;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* GENERAL SECTION CONTAINER */
.section-container {
    width: 80%;
    margin: 10px auto;
    padding: 0;
}

/* CARD STYLES (applies to all sections) */
.section-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 15px;
}

/* ABOUT ME SECTION SPECIFIC */
#about-me .section-container {
    margin-bottom: 5px;
}

.section-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    background-color: #f5f5f5; /* Light gray hover */
}

#headshot {
    max-width: 200px;
    border-radius: 50%;
    margin: 20px 0;
    border: 3px solid #ddd;
}



/* HEADERS */
h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #000;
}

h3 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #000;
}

/* NAVBAR STYLES */
#navbar {
    padding: 10px 20px;
    font-family: 'Chakra Petch', sans-serif;
    background-color: #f5f5f5;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    margin: 20px auto;
    max-width: 1200px;
    border: 1px solid #ddd;
}

#navbar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

#navbar li {
    display: inline;
}

#navbar a {
    color: #000;
    text-decoration: none;
    padding: 12px 20px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: background-color 0.3s ease, color 0.3s ease;
    border-radius: 6px;
}

#navbar a:hover {
    background-color: #ddd;
    color: #000;
}

#navbar a.active {
    background-color: #aaa;
    color: #000;
}

/* WELCOME SECTION */
#intro {
    padding: 60px 20px;
    text-align: center;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#intro h2 {
    font-size: 3rem;
    margin: 0;
    animation: typing 3s steps(40) 1s forwards;
}

/* Typing animation */
.typing {
    display: inline-block;
    border-right: 3px solid #000;
    white-space: nowrap;
    overflow: hidden;
    animation: typing 4s steps(40) 1s 1 normal both, blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink-caret {
    50% { border-color: transparent; }
}

/* ABOUT ME SECTION */
#about-me {
    border-radius: 8px;
    background-color: transparent !important;
    padding: 25px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
}

#headshot {
    width: 200px;
    height: 240px;
    border-radius: 12px !important;
    object-fit: cover;
    object-position: top center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    filter: grayscale(20%) contrast(110%);
    justify-self: end;
}

#headshot:hover {
    border-radius: 16px !important;
}

/* EDUCATION SECTION */
#education {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.details {
    font-size: 1rem;
    color: #555;
    margin-bottom: 8px;
}

.view-resume {
    display: inline-block;
    background-color: #ddd;
    color: #000;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 20px;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
}

.view-resume:hover {
    background-color: #aaa;
}

.social-icons {
    display: flex;
    justify-content: flex-start;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    transition: transform 0.2s ease-in-out;
    filter: invert(0); /* Make icons black */
}

.social-icon:hover {
    transform: scale(1.2);
    cursor: pointer;
}

/* WORK EXPERIENCE SECTION */
#work-experience {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0;
}

.work-experience-cardbox {
    background-color: #fff !important;
    border: 1px solid #ddd !important;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
}

.work-experience-cardbox:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    background-color: #f5f5f5;
}

.work-title {
    display: flex;
    justify-content: space-between;
    font-size: 1.7rem;
    font-weight: bold;
    color: #000;
    margin-bottom: 10px;
}

.location {
    font-size: 1.2rem;
    color: #555;
}

.company-time {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.company {
    font-weight: bold;
    color: #000;
}

.work-time {
    font-size: 1rem;
    font-style: italic;
    color: #555;
}

.job-description {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
}

/* PROJECTS SECTION */
#projects {
    background-color: #fff !important;
    border: none !important;
    box-shadow: none !important;
    margin-top: 40px;
}

.projects-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.project {
    background-color: #fff;
    border: 1px solid #ece7e7;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    background-color: #f5f5f5;
}

.project-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
}

/* THANK YOU SECTION */
#thankyou {
    text-align: center;
    padding: 40px 20px;
}

footer {
    margin-top: 30px;
    color: #555;
}

/* ABOUT ME SECTION */
.about-cardbox {
    padding: 25px;
    margin-bottom: 30px;
}

.about-content p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 0px;
}

/* EDUCATION SECTION */
.education-cardbox {
    background-color: #fff !important;
    border: 1px solid #ddd !important;
    padding: 25px;
    margin-bottom: 30px;
}

.education-header {
    color: #000;
}

.school {
    color: #000;
}

.education-time {
    color: #555;
}

.education-description {
    color: #333;
}

/* GLOBAL CONTAINER */
.website-wrapper {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    padding: 0 20px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 767px) {
    .section {
        width: 95%;
    }
    
    #navbar ul {
        flex-direction: column;
        gap: 10px;
    }
    
    .projects-container {
        grid-template-columns: 1fr;
    }
    
    #intro h2 {
        font-size: 2rem;
    }
    
    #about-me {
        grid-template-columns: 1fr;
    }
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #000; /* Black text globally */
}

body {
    font-family: 'Chakra Petch', sans-serif;
    background-color: #fff; /* Pure white background */
    color: #000;
    padding: 20px;
    line-height: 1.6;
    zoom: 75%;
}

/* GENERAL SECTION STYLING */
.section {
    width: 80%;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* GENERAL SECTION CONTAINER */
.section-container {
    width: 80%;
    margin: 10px auto;
    padding: 0;
}

/* CARD STYLES (applies to all sections) */
.section-card {
    background-color: #fff;
    border: 1px solid #ece7e7; /* Updated border color */
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 15px;
}

.section-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    background-color: #f5f5f5;
}

#headshot {
    max-width: 200px;
    border-radius: 50%;
    margin: 20px 0;
    border: 3px solid #ece7e7; /* Updated border color */
}

/* HEADERS */
h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #000;
}

h3 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #000;
}

/* NAVBAR STYLES */
#navbar {
    padding: 10px 20px;
    font-family: 'Chakra Petch', sans-serif;
    background-color: #f5f5f5;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    margin: 20px auto;
    max-width: 1200px;
    border: 1px solid #ece7e7; /* Updated border color */
}

/* WORK EXPERIENCE SECTION */
.work-experience-cardbox {
    background-color: #fff !important;
    border: 1px solid #ece7e7 !important; /* Updated border color */
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
}

/* PROJECTS SECTION */
.project {
    background-color: #fff;
    border: 1px solid #ece7e7; /* Updated border color */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-image {
    border: 1px solid #ece7e7; /* Updated border color */
}

/* ABOUT ME SECTION */
.about-cardbox {
    padding: 25px;
    margin-bottom: 30px;
}

/* EDUCATION SECTION */
.education-cardbox {
    background-color: #fff !important;
    border: 1px solid #ece7e7 !important; /* Updated border color */
    padding: 25px;
    margin-bottom: 30px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #222; /* Softer black for text */
}

body {
    font-family: 'Chakra Petch', sans-serif;
    background-color: #f9f9f9; /* Off-white background */
    color: #222;
    padding: 20px;
    line-height: 1.8; /* Increased line spacing */
    zoom: 75%;
}

/* GENERAL SECTION STYLING */
.section {
    width: 85%;
    max-width: 1200px;
    margin: 30px auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.section-container {
    width: 90%;
    margin: 0 auto;
    padding: 0;
}

/* CARD STYLES */
.section-card {
    background-color: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.section-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-color: #e0e0e0;
}

/* TYPOGRAPHY */
h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #111;
    font-weight: 600;
    letter-spacing: -0.5px;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #111;
    font-weight: 500;
}

p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.7;
}

/* NAVBAR */
#navbar {
    padding: 12px 25px;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    margin: 20px auto;
    max-width: 1200px;
    border: 1px solid #f0f0f0;
}

#navbar a {
    color: #333;
    padding: 10px 20px;
    font-size: 1rem;
    transition: all 0.2s ease;
}

#navbar a:hover {
    background-color: #f5f5f5;
    color: #000;
}

/* IMAGES */
#headshot {
    max-width: 200px;
    border-radius: 12px;
    margin: 20px 0;
    border: 3px solid #f0f0f0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

/* BUTTONS & LINKS */
.view-resume {
    background-color: #f0f0f0;
    color: #333;
    padding: 12px 25px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.view-resume:hover {
    background-color: #e0e0e0;
    transform: translateY(-2px);
}

/* WORK EXPERIENCE */
.work-title {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.company-time {
    margin-bottom: 20px;
}

.job-description {
    font-size: 1.1rem;
    color: #444;
}

/* PROJECTS */
.project {
    background-color: #fff;
    border: 1px solid #f0f0f0;
    padding: 25px;
    border-radius: 10px;
}

.project:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .section {
        width: 95%;
        padding: 25px 20px;
    }
    
    #navbar ul {
        flex-direction: column;
    }
    
    #about-me {
        grid-template-columns: 1fr;
    }
}

/* ANIMATIONS */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.section {
    animation: fadeIn 0.6s ease-out forwards;
}

/* ABOUT ME SECTION */
#about-me {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0;
}

#about-me .section-card {
    background-color: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

#about-me .section-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-color: #e0e0e0;
}

#about-me .details {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.7;
    max-width: 800px;
}

#headshot {
    max-width: 200px;
    border-radius: 12px;
    margin: 20px 0;
    border: 3px solid #f0f0f0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}