body {
    background-color: #111111;
    margin: 0;
    padding: 0;
    font-family: __Inter_e8ce0c, __Inter_Fallback_e8ce0c, sans-serif;
    color: white;
    font-size: 0.85rem;
}

.container {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    max-width: 1600px;
    margin: 0 auto;
    padding: 40px 30px 60px 30px;
    gap: 38px;
}

.profile-section {
    flex: 0 0 40%;
    max-width: 40%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 20px;
    color: #9ca3af;
    text-align: left;
}

.profile-img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 24px;
    align-self: flex-start;
}

.profile-name {
    font-size: 2.125rem;
    font-weight: bold;
    margin: 0 0 8px 0;
    color: #fff;
    text-align: left;
}

.profile-title,
.profile-location,
.profile-tagline,
.profile-buttons {
    color: #768f93;
    text-align: left;
}

.profile-title {
    font-size: 1.1rem;
    font-weight: 400;
    margin: 0 0 4px 0;
    color: #9ca3af;
}

.profile-location {
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: 400;
    color: #D1D5DB;
}

.profile-tagline {
    font-size: 0.95rem;
    margin-bottom: 24px;
    color: #D1D5DB;
}

.profile-buttons {
    display: flex;
    gap: 12px;
}

.resume-btn {
    text-decoration: none;
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    height: 38px;
    display: flex;
    align-items: center;
    padding: 0 18px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border 0.2s;
    gap: 8px;
}
.resume-btn svg {
    width: 22px;
    height: 22px;
    margin-right: 6px;
}
.resume-btn:hover {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border-color: #fff;
}

.icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: #232323;
    border-radius: 6px;
    color: #768f93;
    font-size: 1.02rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, filter 0.2s;
    border: none;
    padding: 0;
}
.icon-btn svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
    display: block;
}
.icon-btn:hover {
    background: #444;
    color: #fff;
    filter: brightness(1.5);
}

.about-me-section {
    flex: 0 0 60%;
    max-width: 60%;
    padding: 0;
    margin: 0;
}

.about-me-section h1 {
    font-size: 2.125rem;
    font-weight: bold;
    margin-bottom: 24px;
}

.about-me-section p {
    font-size: 0.98rem;
    line-height: 1.6;
    margin-bottom: 18px;
    color: #D1D5DB;
}

@media (max-width: 900px) {
    .container {
        flex-direction: column;
        gap: 30px;
        padding: 20px 10px;
    }
    .profile-section, .about-me-section {
        max-width: 100%;
        flex: 1 1 100%;
    }
    .profile-section {
        align-items: center;
        text-align: center;
    }
    .profile-img {
        align-self: center;
    }
}

/* Skills Section Styles */
.skills-section {
    margin-top: 40px;
}
.skills-section h1 {
    font-size: 1.87rem;
    font-weight: bold;
    margin-bottom: 22px;
    color: #fff;
}
.skills-category {
    margin-bottom: 22px;
}
.skills-category h2 {
    font-size: 1.06rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #fff;
    display: block;
}
.skill-badge {
    display: inline-block;
    padding: 7px 18px;
    border-radius: 18px;
    font-size: 0.85rem;
    font-weight: 550;
    margin: 0 10px 10px 0;
    background: #232323;
    color: #fff;
    letter-spacing: 0.01em;
    transition: background 0.2s, color 0.2s;
    font-family: Roboto, Arial, sans-serif;
    font-weight: 550;
}
.skill-badge.blue { background: #2b7af64d; color: #3b7ff0; }
.skill-badge.green { background: #1dc55e4d; color: #1dc55e; }
.skill-badge.purple { background: #9055f74d; color: #9055f7; }
.skill-badge.red { background: #ef372b4d; color: #ef372b; }
.skill-badge.yellow { background: #eaaf094d; color: #eaaf09; }

.experience-section {
    margin-top: 48px;
}
.experience-section h1 {
    font-size: 1.87rem;
    font-weight: bold;
    margin-bottom: 28px;
    color: #fff;
}
.experience-card {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    background: #181818;
    border-radius: 18px;
    padding: 32px 32px 24px 32px;
    box-shadow: 0 2px 16px 0 rgba(0,0,0,0.10);
    margin-bottom: 18px;
    gap: 32px;
    transition: transform 0.25s cubic-bezier(0.4,0,0.2,1), box-shadow 0.25s cubic-bezier(0.4,0,0.2,1);
}
.experience-logo {
    flex: 0 0 90px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
.logo-circle {
    width: 90px;
    height: 90px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px 0 rgba(0,0,0,0.10);
}
.logo-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    display: block;
}
.experience-logo .logo-img[src*="asa.png"] {
    object-fit: cover;
    width: 48px;
    transform: scale(1.6); /* Zoom in */
    object-position: center 40%; /* Adjust vertical crop if needed */
    border-radius: 50%; /* Ensure image stays circular */
}
.experience-details {
    flex: 1 1 auto;
}
.job-title {
    font-size: 1.18rem;
    font-weight: bold;
    margin: 0 0 4px 0;
    color: #fff;
}
.company-location {
    font-size: 1rem;
    color: #d1d5db;
    margin-bottom: 2px;
}
.job-dates {
    font-size: 0.95rem;
    color: #9ca3af;
    margin-bottom: 18px;
}
.job-description {
    margin: 0 0 18px 0;
    padding-left: 18px;
    color: #f1f1f1;
    font-size: 0.98rem;
    line-height: 1.6;
}
.job-description li {
    margin-bottom: 8px;
}
.experience-skills {
    margin-top: 8px;
}
.exp-badge {
    display: inline-block;
    padding: 7px 18px;
    border-radius: 18px;
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0 10px 10px 0;
    background: #1dc55e4d;
    color: #1dc55e;
    letter-spacing: 0.01em;
    transition: background 0.2s, color 0.2s;
    font-family: Helvetica, Arial, sans-serif;
    font-weight: 600;
}

.education-section {
    margin-top: 48px;
}
.education-section h1 {
    font-size: 1.87rem;
    font-weight: bold;
    margin-bottom: 28px;
    color: #fff;
}
.education-card {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    background: #181818;
    border-radius: 18px;
    padding: 32px 32px 24px 32px;
    box-shadow: 0 2px 16px 0 rgba(0,0,0,0.10);
    margin-bottom: 18px;
    gap: 32px;
    transition: transform 0.25s cubic-bezier(0.4,0,0.2,1), box-shadow 0.25s cubic-bezier(0.4,0,0.2,1);
}
.education-logo {
    flex: 0 0 90px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
.education-logo .logo-img {
    width: 84px;
    height: 84px;
    object-fit: cover;
    border-radius: 50%;
}
.degree-title {
    font-size: 1.18rem;
    font-weight: bold;
    margin: 0 0 4px 0;
    color: #fff;
}
.university-location {
    font-size: 1rem;
    color: #d1d5db;
    margin-bottom: 2px;
}
.education-dates {
    font-size: 0.95rem;
    color: #9ca3af;
    margin-bottom: 12px;
}
.units-toggle {
    background: none;
    border: none;
    color: #d1d5db;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}
.units-toggle:hover {
    color: #fff;
}
#unitsToggleIcon {
    font-size: 1.1em;
    font-family: inherit;
    display: inline-block;
    transform: none;
    vertical-align: middle;
    margin-right: 4px;
}
.units-list {
    margin: 0 0 0 0;
    padding-left: 22px;
    color: #f1f1f1;
    font-size: 0.98rem;
    line-height: 1.6;
    list-style-type: disc;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.25s cubic-bezier(0.4,0,0.2,1);
}
.units-list.active {
    max-height: 800px;
    opacity: 1;
    transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1), opacity 0.3s cubic-bezier(0.4,0,0.2,1);
}

.units-toggle .chevron-svg svg {
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}
.units-toggle.open .chevron-svg svg {
    transform: translateY(2px) scale(1.15);
}

.projects-section {
    margin-top: 48px;
}
.projects-section h1 {
    font-size: 1.87rem;
    font-weight: bold;
    margin-bottom: 28px;
    color: #fff;
}
.project-card {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    background: #181818;
    border-radius: 18px;
    padding: 32px 32px 24px 32px;
    box-shadow: 0 2px 16px 0 rgba(0,0,0,0.10);
    margin-bottom: 18px;
    gap: 32px;
    min-height: 180px;
    transition: transform 0.25s cubic-bezier(0.4,0,0.2,1), box-shadow 0.25s cubic-bezier(0.4,0,0.2,1);
}
.project-image {
    flex: 0 0 160px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
.project-placeholder-img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 10px;
    background: #232323;
    box-shadow: 0 2px 8px 0 rgba(0,0,0,0.10), 0 4px 16px 0 rgba(0,0,0,0.10);
}
.project-icon-zoomout {
    object-fit: contain !important;
    width: 140px;
    height: 140px;
    background: #232323;
    border-radius: 10px;
    box-shadow: 0 2px 8px 0 rgba(0,0,0,0.10), 0 4px 16px 0 rgba(0,0,0,0.10);
    padding: 0;
}
.project-placeholder-img[src*="Library.PNG"] {
    object-fit: cover !important;
    width: 140px;
    height: 140px;
    border-radius: 10px;
    background: #232323;
    box-shadow: 0 2px 8px 0 rgba(0,0,0,0.10), 0 4px 16px 0 rgba(0,0,0,0.10);
    padding: 0;
}
.project-details {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.project-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin: 0 0 10px 0;
    color: #fff;
}
.project-description {
    margin: 0 0 14px 0;
    padding-left: 18px;
    color: #d1d5db;
    font-size: 0.98rem;
    line-height: 1.6;
    list-style-type: disc;
}
.project-description li {
    margin-bottom: 6px;
}
.project-tech {
    margin-bottom: 14px;
}
.project-badge {
    display: inline-block;
    padding: 7px 18px;
    border-radius: 18px;
    font-size: 0.85rem;
    font-family: Roboto, Arial, sans-serif;
    font-weight: 550;
    margin: 0 10px 10px 0;
    background: #1dc55e4d;
    color: #1dc55e;
    letter-spacing: 0.01em;
    transition: background 0.2s, color 0.2s;
}
.project-links {
    display: flex;
    gap: 18px;
    align-items: center;
    margin-top: 6px;
}
.project-link {
    color: #d1d5db;
    text-decoration: none;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}
.project-link:hover {
    color: #fff;
}
.project-link svg,
.project-link img {
    color: inherit;
    fill: currentColor;
    filter: none;
    transition: color 0.2s, fill 0.2s;
}

/* Card Hover Animations */
.project-card:hover,
.experience-card:hover,
.education-card:hover {
    transform: translateY(-6px) scale(1.025);
    box-shadow: 0 8px 32px 0 rgba(0,0,0,0.18), 0 2px 16px 0 rgba(0,0,0,0.10);
    z-index: 2;
}

/* Invert PNG icon colors for dark mode */
.icon-btn img[src*="assets/github-logo.png"],
.icon-btn img[src*="assets/linkedin.png"],
.icon-btn img[src*="assets/mail.png"],
.project-link img[src*="assets/github-logo.png"],
.project-link img[src*="assets/external-link.png"] {
    filter: invert(1) hue-rotate(180deg);
}
