/* Add theme colors at the top of the file */
:root {
    --theme-blue: #007bff;
    --theme-blue-dark: #0056b3;
    --theme-purple: #9c27b0;
    --theme-purple-dark: #7b1fa2;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f5f7fa;
}

/* Navigation */
header {
    position: fixed;
    width: 100%;
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
    top: 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    height: 60px;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #007bff;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: #007bff;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding-top: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 10%;
    padding-right: 5%;
    background: white;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: -5%;
    width: 50%;
    height: 100%;
    background: #f5f7fa;
    border-radius: 50% 0 0 50%;
    z-index: 1;
}

.hero-content {
    flex: 1;
    padding-right: 10%;
    z-index: 2;
}

.hello-text {
    color: #666;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #222;
    white-space: nowrap;
    line-height: 1.2;
}

.subtitle {
    font-size: 1.8rem;
    color: #666;
    margin-bottom: 2rem;
    white-space: nowrap;
}

.contact-info {
    text-align: center;
    margin-bottom: 1.5rem;
}

.contact-email,
.contact-phone {
    margin-bottom: 0.25rem;
}

.contact-email a,
.contact-phone a {
    color: #007bff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.contact-email a:hover,
.contact-phone a:hover {
    color: #0056b3;
}

.profile-circle {
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: #f5f7fa;
    position: relative;
    z-index: 2;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-right: -5%;
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
}

/* Floating sections modification */
section:nth-child(even) {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

/* Remove the arch background from even sections */
section:nth-child(even)::after {
    display: none;
}

/* Keep the arch only in hero section */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: -5%;
    width: 50%;
    height: 100%;
    background: #f5f7fa;
    border-radius: 50% 0 0 50%;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .profile-circle {
        width: 400px;
        height: 400px;
    }
    .subtitle {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: flex;
        position: fixed;
        top: 60px;
        right: -100%;
        width: 100%;
        height: auto;
        background: white;
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        gap: 1.5rem;
        transition: right 0.3s ease;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.1rem;
        padding: 0.5rem 0;
        width: 100%;
        text-align: center;
    }
    
    .hero {
        flex-direction: column;
        padding: 5rem 5%;
        text-align: center;
    }
    
    .hero::after {
        display: none;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .profile-circle {
        width: 300px;
        height: 300px;
    }
    .subtitle {
        font-size: 1.2rem;
    }

    .hero .social-links {
        margin-top: 2rem;
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .linkedin-logo,
    .github-logo {
        width: 35px;
        height: 35px;
    }
}

/* Sections */
section {
    padding: 5rem 5%;
    padding-bottom: 0rem;
    max-width: 1200px;
    margin: 2rem auto;
    position: relative;
}

h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

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

.skills-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

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

.project-card {
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-link {
    display: inline-block;
    margin-top: 1rem;
    color: #007bff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.project-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

/* Contact Section */
.contact-content {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

input, textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

textarea {
    min-height: 150px;
    resize: none !important;
}

button {
    padding: 1rem;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
}

/* Experience Section */
.experience-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.experience-item {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.experience-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #007bff;
    border-radius: 4px;
}

.experience-item:hover {
    transform: none;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.experience-item h3 {
    color: #222;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.experience-item .company {
    color: #007bff;
    font-weight: 500;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.experience-item .date {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.experience-item ul {
    list-style: none;
    padding-left: 0;
}

.experience-item li {
    color: #444;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.experience-item li::before {
    content: '•';
    color: #007bff;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    line-height: 1.2;
}

/* Remove background from experience section */
section#experience {
    background: transparent;
    box-shadow: none;
    border-radius: 0;
}

/* Skills grid items floating effect */
.skill-category {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.skill-category:hover {
    transform: none;
}

.skill-category h4 {
    color: #007bff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.skill-category ul {
    list-style: none;
    padding-left: 0;
}

.skill-category li {
    color: #444;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.skill-category li::before {
    content: '•';
    color: #007bff;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    line-height: 1.2;
}

.education-header {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

.education-text {
    flex: 1;
}

.school-logo {
    width: 134px;
    height: 134px;
    flex-shrink: 0;
    background: #007bff;
    border-radius: 50%;
    padding: 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #007bff;
}

.school-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Remove the hover effect */
.school-logo:hover {
    transform: none;
    transition: none;
}

/* Adjust padding on the education item to accommodate larger logo */
.education-item {
    padding: 3rem;
}

/* Update education item padding for better logo placement */
.education-item {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Programming Languages styling */
.programming-languages {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.programming-languages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #007bff;
    border-radius: 4px;
}

.programming-languages:hover {
    transform: none;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.programming-languages h3 {
    color: #222;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.programming-languages ul {
    list-style: none;
    padding-left: 0;
}

.programming-languages li {
    color: #444;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.programming-languages li::before {
    content: '•';
    color: #007bff;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    line-height: 1.2;
}

.language-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    padding: 1rem 0;
}

.language-card {
    text-align: center;
    position: relative;
    padding: 0.5rem;
    background: transparent;
    border: none;
    box-shadow: none;
    transition: none;
}

.language-card::before {
    display: none;
}

.language-card h4 {
    color: #222;
    font-size: 1.2rem;
    line-height: 1.3;
    margin: 0;
}

.language-card .proficiency {
    display: none;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    padding: 1rem 0;
}

.tool-card {
    text-align: center;
    position: relative;
    padding: 0.5rem;
    background: transparent;
    border: none;
    box-shadow: none;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: none;
}

.tool-card::before {
    display: none;
}

.tool-card h4 {
    color: #222;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.tool-card .category {
    color: #007bff;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Remove hover effects from experience cards */
.experience-item:hover {
    transform: none;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

/* Remove hover effects from education cards */
.education-item:hover {
    transform: none;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

/* Remove hover effects from certification cards */
.certifications:hover {
    transform: none;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

/* Remove hover effects from programming language cards */
.language-card:hover {
    transform: none;
    box-shadow: none;
}

/* Remove hover effects from tool cards */
.tool-card:hover {
    transform: none;
    box-shadow: none;
}

/* Remove hover effects from technical skills */
.technical-skills:hover {
    transform: none;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

/* Remove hover effects from skill category */
.skill-category:hover {
    transform: none;
}

/* Education Section */
.education-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.education-item {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.education-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #007bff;
    border-radius: 4px;
}

.education-header {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

.education-text {
    flex: 1;
}

.education-text h3 {
    color: #222;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.education-text p:first-of-type {
    color: #007bff;
    font-weight: 500;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.education-text p:nth-of-type(2) {
    color: #444;
    margin-bottom: 0.5rem;
}

.education-text p:last-child {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.school-logo {
    width: 134px;
    height: 134px;
    flex-shrink: 0;
    background: #007bff;
    border-radius: 50%;
    padding: 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #007bff;
}

.school-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Remove background from education section */
section#education {
    background: transparent;
    box-shadow: none;
    border-radius: 0;
}

/* Skills Section */
.skills-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.skills-item {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.skills-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #007bff;
    border-radius: 4px;
}

.skills-item h3 {
    color: #222;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.skills-item ul {
    list-style: none;
    padding-left: 0;
}

.skills-item li {
    color: #444;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.skills-item li::before {
    content: '•';
    color: #007bff;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    line-height: 1.2;
}

/* Remove background from skills section */
section#skills {
    background: transparent;
    box-shadow: none;
    border-radius: 0;
}

/* Adjust grids within skills items */
.skills-item .language-grid,
.skills-item .tools-grid {
    margin-top: 1rem;
}

.certs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    padding: 1rem 0;
}

.cert-card {
    text-align: center;
    position: relative;
    padding: 0.5rem;
    background: transparent;
    border: none;
    box-shadow: none;
    transition: none;
}

.cert-card h4 {
    color: #222;
    font-size: 1.2rem;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

.cert-card .date {
    color: #007bff;
    font-size: 0.9rem;
    font-weight: 500;
}

.social-links {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.linkedin-logo,
.github-logo {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease;
}

.linkedin-link:hover .linkedin-logo,
.github-link:hover .github-logo {
    transform: translateY(-2px);
}

.contact-email {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-email a {
    color: #007bff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.contact-email a:hover {
    color: #0056b3;
}

.contact-intro {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.hero .social-links {
    margin-top: 2rem;  /* Increased from 1rem for better spacing in hero section */
}

/* Education Section - Mobile Friendly Updates */
.education-header {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

@media (max-width: 768px) {
    .education-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }

    .education-text {
        width: 100%;
    }

    .school-logo {
        width: 100px;  /* Smaller logo on mobile */
        height: 100px;
        padding: 15px;
    }

    .education-item {
        padding: 2rem;  /* Reduced padding on mobile */
    }

    .education-text h3 {
        font-size: 1.3rem;  /* Slightly smaller heading on mobile */
    }

    .education-text p:first-of-type {
        font-size: 1rem;
    }

    .education-content {
        padding: 0 1rem;  /* Reduced side padding on mobile */
    }
}

/* Even smaller screens */
@media (max-width: 480px) {
    .school-logo {
        width: 80px;  /* Even smaller logo on very small screens */
        height: 80px;
        padding: 12px;
    }

    .education-item {
        padding: 1.5rem;
    }

    .education-text h3 {
        font-size: 1.2rem;
    }
}

/* Experience Section - Mobile Friendly Updates */
@media (max-width: 768px) {
    .experience-grid {
        padding: 0 1rem;  /* Reduced side padding */
    }

    .experience-item {
        padding: 2rem;  /* Reduced padding */
    }

    .experience-item h3 {
        font-size: 1.3rem;  /* Smaller heading */
        line-height: 1.3;
    }

    .experience-item .company {
        font-size: 1rem;
    }

    .experience-item .date {
        font-size: 0.85rem;
    }

    .experience-item li {
        font-size: 0.95rem;
        margin-bottom: 1rem;
        line-height: 1.4;
    }
}

/* Even smaller screens */
@media (max-width: 480px) {
    .experience-item {
        padding: 1.5rem;  /* Further reduced padding */
    }

    .experience-item h3 {
        font-size: 1.2rem;
    }

    .experience-item .company {
        font-size: 0.95rem;
    }

    .experience-item li {
        font-size: 0.9rem;
        padding-left: 1.2rem;  /* Reduced bullet point spacing */
    }

    .experience-item li::before {
        font-size: 1rem;
    }
}

/* Skills Section - Mobile Friendly Updates */
@media (max-width: 768px) {
    .skills-content {
        padding: 0 1rem;
    }

    .skills-item {
        padding: 2rem;
    }

    .skills-item h3 {
        font-size: 1.3rem;
        margin-bottom: 1.2rem;
    }

    /* Certifications Grid */
    .certs-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }

    .cert-card h4 {
        font-size: 1.1rem;
    }

    .cert-card .date {
        font-size: 0.85rem;
    }

    /* Programming Languages Grid */
    .language-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
    }

    .language-card h4 {
        font-size: 1.1rem;
    }

    /* Tools Grid */
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);  /* Force 2 columns on mobile */
        gap: 1rem;
    }

    .tool-card {
        padding: 0.8rem;
        min-height: 80px;  /* Ensure consistent height */
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .tool-card h4 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
        line-height: 1.2;
        word-wrap: break-word;
        hyphens: auto;
    }

    .tool-card .category {
        font-size: 0.8rem;
        line-height: 1.2;
        word-wrap: break-word;
        hyphens: auto;
    }
}

/* Even smaller screens */
@media (max-width: 480px) {
    .skills-item {
        padding: 1.5rem;
    }

    .skills-item h3 {
        font-size: 1.2rem;
    }

    /* Adjust grids for very small screens */
    .certs-grid,
    .language-grid,
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .cert-card h4,
    .language-card h4,
    .tool-card h4 {
        font-size: 1rem;
    }

    .cert-card .date,
    .tool-card .category {
        font-size: 0.8rem;
    }

    .tools-grid {
        gap: 0.8rem;
    }

    .tool-card {
        padding: 0.6rem;
    }

    .tool-card h4 {
        font-size: 0.9rem;
    }

    .tool-card .category {
        font-size: 0.75rem;
    }
}

/* Mobile Navigation Styles */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #333;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        top: 60px;
        right: -100%;
        width: 100%;
        height: auto;
        background: white;
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        gap: 1.5rem;
        transition: right 0.3s ease;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.1rem;
        padding: 0.5rem 0;
        width: 100%;
        text-align: center;
    }

    /* Hamburger menu animation */
    .mobile-menu-btn.active .bar:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .mobile-menu-btn.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* Theme-specific styles */
.theme-blue .logo,
.theme-blue .nav-links a:hover,
.theme-blue .company,
.theme-blue .degree,
.theme-blue .logo-placeholder,
.theme-blue .experience-item li:before,
.theme-blue .education-text p:first-of-type,
.theme-blue .tool-card .category,
.theme-blue .contact-email a,
.theme-blue .contact-phone a {
    color: var(--theme-blue);
}

.theme-blue button {
    background: var(--theme-blue);
}

.theme-blue button:hover {
    background: var(--theme-blue-dark);
}

.theme-blue .school-logo {
    background: var(--theme-blue);
    border-color: var(--theme-blue);
}

.theme-blue .experience-item::before,
.theme-blue .education-item::before,
.theme-blue .skills-item::before {
    background: var(--theme-blue);
}

.theme-purple .logo,
.theme-purple .nav-links a:hover,
.theme-purple .company,
.theme-purple .degree,
.theme-purple .logo-placeholder,
.theme-purple .experience-item li:before,
.theme-purple .education-text p:first-of-type,
.theme-purple .tool-card .category,
.theme-purple .contact-email a,
.theme-purple .contact-phone a {
    color: var(--theme-purple);
}

.theme-purple button {
    background: var(--theme-purple);
}

.theme-purple button:hover {
    background: var(--theme-purple-dark);
}

.theme-purple .school-logo {
    background: var(--theme-purple);
    border-color: var(--theme-purple);
}

.theme-purple .experience-item::before,
.theme-purple .education-item::before,
.theme-purple .skills-item::before {
    background: var(--theme-purple);
}

/* Update any hardcoded #007bff colors */
.theme-purple .contact-email a:hover,
.theme-purple .contact-phone a:hover {
    color: var(--theme-purple-dark);
}

.theme-purple .project-link {
    color: var(--theme-purple);
}

.theme-purple .project-link:hover {
    box-shadow: 0 5px 15px rgba(156, 39, 176, 0.3);
}

.theme-purple button:hover {
    box-shadow: 0 5px 15px rgba(156, 39, 176, 0.3);
}

.theme-purple .skill-category h4 {
    color: var(--theme-purple);
}

.theme-purple .skill-category li::before {
    color: var(--theme-purple);
}

/* Remove background from licenses section */
section#licenses {
    background: transparent;
    box-shadow: none;
    border-radius: 0;
}

/* Style certification items like education items */
.certifications-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.certification-item {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.certification-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--theme-purple);
    border-radius: 4px;
}

.certification-item h3 {
    color: #222;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.certification-item .org {
    color: var(--theme-purple);
    font-weight: 500;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.certification-item .date {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.certification-item .credential {
    color: #666;
    font-size: 0.9rem;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .certifications-grid {
        padding: 0 1rem;
    }

    .certification-item {
        padding: 2rem;
    }

    .certification-item h3 {
        font-size: 1.3rem;
    }
} 