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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Global Color Variables */
:root {
    --pink-100: #ede9fe;
    --pink-300: #c4b5fd;
    --pink-500: #8b5cf6;
    --pink-600: #7c3aed;
    --pink-700: #6d28d9;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 6rem 0;
    background: linear-gradient(135deg, #f5f3ff 0%, #fff 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(124, 58, 237, 0.03) 100%);
    border-radius: 50%;
}

.hero-shape:nth-child(1) {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -200px;
}

.hero-shape:nth-child(2) {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
}

/* Mouse Follow Effect */
.mouse-follow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, rgba(124, 58, 237, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease-out;
    opacity: 0;
}

.hero-section:hover .mouse-follow {
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Smooth Fade Content Animation (React Bits style) */
@keyframes fadeInContent {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    opacity: 0;
    animation: fadeInContent 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animation-delay-200 {
    animation-delay: 0.2s;
}

.animation-delay-300 {
    animation-delay: 0.3s;
}

.animation-delay-400 {
    animation-delay: 0.4s;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
}

.greeting {
    display: block;
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.name {
    display: block;
    font-size: 4rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    background: linear-gradient(135deg, #1a1a1a 0%, #4a4a4a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-tagline {
    font-size: 1.25rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.download-btn,
.contact-btn {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.download-btn {
    background-color: #8b5cf6;
    color: white;
    box-shadow: 0 4px 6px rgba(236, 72, 153, 0.2);
}

.download-btn:hover {
    background-color: #7c3aed;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(236, 72, 153, 0.3);
}

.contact-btn {
    background-color: white;
    color: #1a1a1a;
    border: 2px solid #eee;
}

.contact-btn:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.download-btn i,
.contact-btn i {
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

.hero-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-link {
    display: inline-flex;
    align-items: center;
    color: #666;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.hero-link:hover {
    color: #8b5cf6;
}

.hero-link i {
    margin-right: 0.5rem;
}

/* Responsive adjustments for hero section */
@media (max-width: 768px) {
    .hero-section {
        padding: 4rem 0;
        min-height: auto;
    }

    .name {
        font-size: 3rem;
    }

    .hero-tagline {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .hero-cta {
        flex-direction: column;
        padding: 0 1rem;
    }

    .download-btn,
    .contact-btn {
        width: 100%;
        justify-content: center;
    }

    .hero-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

/* Section Styles */
section {
    margin-bottom: 4rem;
}

/* Animation Keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Headings */
.section-heading {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--pink-600);
    border-bottom: 2px solid var(--pink-300);
    padding-bottom: 0.5rem;
    opacity: 0;
}

.emoji {
    font-size: 1.5rem;
    background: var(--pink-100);
    padding: 0.5rem;
    border-radius: 0.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Section Title Animations */
.section-heading.animate-fadeIn {
    animation: fadeIn 0.8s ease-out forwards;
}

.section-heading.animate-slideUp {
    animation: slideUp 0.8s ease-out forwards;
}

/* Animation Delays */
.animation-delay-100 {
    animation-delay: 0.1s;
}

.animation-delay-200 {
    animation-delay: 0.2s;
}

.animation-delay-300 {
    animation-delay: 0.3s;
}

.animation-delay-400 {
    animation-delay: 0.4s;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section p {
        font-size: 1.25rem;
    }
    
    .section-heading {
        margin-bottom: 1.25rem;
    }

    .card {
        padding: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .work-header h3,
    .education-item h3,
    .cert-content h3,
    .project-card h3 {
        font-size: 1.1rem;
    }

    .work-skills,
    .project-tags {
        gap: 0.4rem;
    }

    .skill-tag,
    .project-tag {
        font-size: 0.8rem;
        padding: 0.2rem 0.6rem;
    }

    .cert-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .emoji {
        font-size: 1.25rem;
        padding: 0.4rem;
    }
}

/* Space between sections */
.space-y-24 > * + * {
    margin-top: 6rem;
}

/* Contact Info in Hero Section */
.contact-info {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.contact-info a {
    color: #666;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.2s ease;
}

.contact-info a:hover {
    color: #8b5cf6;
}

/* Card Base Styles */
.card {
    background: var(--pink-100);
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid var(--pink-300);
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Work Experience Cards */
.work-item {
    composes: card;
    animation-delay: 0.1s;
}

.work-header {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.work-header h3 {
    font-size: 1.2rem;
    color: var(--pink-600);
    margin-bottom: 0.25rem;
    line-height: 1.4;
}

.work-header i {
    color: var(--pink-500);
    font-size: 1.2rem;
}

.company {
    color: #666;
    font-size: 0.95rem;
    font-weight: 500;
}

.work-meta {
    margin-bottom: 1rem;
}

.work-years {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.work-years i {
    color: var(--pink-500);
    font-size: 0.9rem;
}

.work-description {
    color: #4a4a4a;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.work-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.skill-tag {
    background: var(--pink-100);
    color: var(--pink-700);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.85rem;
    border: 1px solid var(--pink-300);
    transition: all 0.3s ease;
}

.skill-tag:hover {
    transform: scale(1.05);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Education Cards */
.education-item {
    composes: card;
    animation-delay: 0.2s;
    position: relative;
    padding-left: 2rem;
}

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

.education-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.education-header h3 {
    font-size: 1.2rem;
    color: var(--pink-600);
    margin-bottom: 0;
    line-height: 1.4;
}

.education-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.gpa-badge {
    background: var(--pink-100);
    color: var(--pink-700);
    padding: 0.4rem 0.8rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid var(--pink-300);
}

.education-item p {
    color: #4a4a4a;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.education-item .date {
    color: #666;
    font-size: 0.9rem;
}

/* Certification Cards */
.cert-card {
    composes: card;
    animation-delay: 0.3s;
}

.cert-content h3 {
    font-size: 1.2rem;
    color: var(--pink-600);
    margin-bottom: 0.5rem;
    line-height: 1.4;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cert-content h3::before {
    content: '🏅';
    font-size: 1.2rem;
}

.cert-org {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.cert-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.cert-level {
    background: var(--pink-100);
    color: var(--pink-700);
    padding: 0.4rem 0.8rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid var(--pink-300);
    transition: all 0.3s ease;
}

.cert-level:hover {
    transform: scale(1.05);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cert-year {
    color: #666;
    font-size: 0.9rem;
}

/* Project Cards */
.project-card {
    composes: card;
    animation-delay: 0.4s;
    display: flex;
    flex-direction: column;
}

.project-content {
    flex-grow: 1;
}

.project-card h3 {
    font-size: 1.2rem;
    color: var(--pink-600);
    margin-bottom: 1rem;
    line-height: 1.4;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.project-card h3::before {
    content: '🚀';
    font-size: 1.2rem;
}

.project-description {
    color: #4a4a4a;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.project-tag {
    background: var(--pink-100);
    color: var(--pink-700);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.85rem;
    border: 1px solid var(--pink-300);
    transition: all 0.3s ease;
}

.project-tag:hover {
    transform: scale(1.05);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.project-footer {
    padding-top: 1rem;
    border-top: 1px solid var(--pink-300);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.project-date {
    color: #666;
    font-size: 0.9rem;
}

/* Award Cards */
.cert-card.award {
    background: white;
    border-color: var(--pink-300);
}

.cert-card.award .cert-level {
    background: var(--pink-100);
    color: var(--pink-700);
    border-color: var(--pink-300);
}

/* Projects */
.project-item {
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.project-item .tech-stack {
    color: #8b5cf6;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

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

.project-item ul {
    list-style-type: disc;
    padding-left: 1.5rem;
}

.project-item li {
    margin-bottom: 0.5rem;
    color: #4a4a4a;
}

/* Skills Section */
.skill-category {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

.skill-category h3 {
    font-size: 1.25rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.skill-category p {
    color: #4a4a4a;
    line-height: 1.6;
}

.skill-category ul {
    list-style-type: disc;
    padding-left: 1.5rem;
}

.skill-category li {
    margin-bottom: 0.5rem;
    color: #4a4a4a;
}

/* Hover Effects */
.education-item,
.work-item,
.project-item,
.skill-category {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.education-item:hover,
.work-item:hover,
.project-item:hover,
.skill-category:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Contact Section Styles */
.contact-section {
    background: white;
    padding: 3rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-intro h3 {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.contact-intro p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: 0.5rem;
    background: #f8f9fa;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Place Location box under Email on larger screens */
@media (min-width: 850px) {
    .contact-item:nth-child(4) {
        grid-column: 2;
    }
}

.contact-item i {
    font-size: 2rem;
    color: #8b5cf6;
    margin-bottom: 1rem;
}

.contact-item h4 {
    font-size: 1.1rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.contact-item p,
.contact-item a {
    color: #666;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-item a:hover {
    color: #8b5cf6;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-button {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-button i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.social-button.github {
    background-color: #24292e;
}

.social-button.linkedin {
    background-color: #0077b5;
}

.social-button:hover {
    transform: scale(1.05);
}

/* Skills Section - Badge Style */
.skills-section {
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.skills-group {
    margin-bottom: 2.5rem;
}

.skills-group:last-child {
    margin-bottom: 0;
}

.skills-group h3 {
    font-size: 1.25rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f0f0f0;
}

.skills-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.skill-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #f8f9fa;
    border-radius: 2rem;
    font-size: 0.9rem;
    color: #4a4a4a;
    border: 1px solid #e9ecef;
    transition: all 0.2s ease;
}

.skill-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background: #fff;
}

/* Special badges for cloud platforms */
.skill-badge.aws {
    background-color: #232f3e;
    color: white;
    border-color: #232f3e;
}

.skill-badge.azure {
    background-color: #008ad7;
    color: white;
    border-color: #008ad7;
}

.skill-badge.gcp {
    background-color: #4285f4;
    color: white;
    border-color: #4285f4;
}

/* Certification and award badges */
.skill-badge.cert {
    background-color: #28a745;
    color: white;
    border-color: #28a745;
}

.skill-badge.award {
    background-color: #ffd700;
    color: #1a1a1a;
    border-color: #ffd700;
}

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

.project-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.project-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.project-content {
    padding: 1.5rem;
    flex-grow: 1;
}

.project-card h3 {
    font-size: 1.25rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.project-description {
    color: #4a4a4a;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.project-tag {
    background: #f8f9fa;
    color: #8b5cf6;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.85rem;
    border: 1px solid #8b5cf622;
    transition: all 0.3s ease;
}

.project-tag:hover {
    transform: scale(1.05);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.project-footer {
    padding: 1rem 1.5rem;
    background: #f8f9fa;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.project-date {
    color: #666;
    font-size: 0.9rem;
}

.github-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #24292e;
    color: white;
    text-decoration: none;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.github-button:hover {
    background: #1a1f24;
    transform: scale(1.05);
}

.github-button i {
    font-size: 1.1rem;
}

/* Certifications Section */
.certifications-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 0;
}

.cert-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.cert-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.cert-content h3 {
    font-size: 1.1rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.cert-org {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.cert-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.cert-level {
    background: #f5f3ff;
    color: #8b5cf6;
    padding: 0.4rem 0.8rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid #8b5cf622;
    transition: all 0.3s ease;
}

.cert-level:hover {
    transform: scale(1.05);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cert-year {
    color: #666;
    font-size: 0.9rem;
}

/* Remove the following case studies section */
/* Case Studies Section */
.case-studies-grid,
.case-study-card,
.case-study-image,
.case-study-tag,
.case-study-content,
.case-study-brief,
.case-study-details,
.detail-item,
.case-study-footer,
.read-more-btn {
    display: none;
}

/* Side by Side Sections */
.side-by-side-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.section-column {
    display: flex;
    flex-direction: column;
}

/* Education & Experience Section */
.education-section,
.work-certifications-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.education-item,
.work-item {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.education-item:hover,
.work-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.education-item h3,
.work-item h3 {
    font-size: 1.1rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.education-item p,
.work-item .date {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.work-item ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-top: 0.5rem;
}

.work-item li {
    color: #4a4a4a;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    line-height: 1.5;
}

/* Certifications & Awards Section */
.certifications-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .side-by-side-section {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .section-column {
        margin-bottom: 2rem;
    }

    .education-item,
    .work-item {
        padding: 1.25rem;
    }
}

/* Button Base Styles */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn:hover {
    transform: scale(1.05);
}

/* Primary Button */
.btn-primary {
    background-color: var(--pink-500);
    color: white;
    box-shadow: 0 4px 6px rgba(236, 72, 153, 0.2);
}

.btn-primary:hover {
    background-color: var(--pink-600);
    color: white;
    box-shadow: 0 6px 8px rgba(236, 72, 153, 0.3);
}

/* Secondary Button */
.btn-secondary {
    background-color: white;
    color: var(--pink-600);
    border: 2px solid var(--pink-300);
}

.btn-secondary:hover {
    background-color: var(--pink-100);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Icon spacing in buttons */
.btn-primary i,
.btn-secondary i {
    margin-right: 0.5rem;
}

/* Social Button */
.btn-social {
    background-color: var(--pink-500);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

.btn-social:hover {
    transform: scale(1.05);
    background-color: var(--pink-600);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Card Hover Effects */
.card {
    transition: all 0.2s ease;
}

.card:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Badge Hover Effects */
.badge {
    transition: all 0.2s ease;
}

.badge:hover {
    transform: scale(1.05);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Link Hover Effects */
a {
    transition: color 0.2s ease;
}

a:hover {
    color: var(--pink-600);
}

/* Icon Hover Effects */
.icon {
    transition: all 0.2s ease;
}

.icon:hover {
    transform: scale(1.1);
    color: var(--pink-600);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .btn-social {
        padding: 0.4rem 0.8rem;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .education-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .gpa-badge {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }

    .education-item {
        padding-left: 1.5rem;
    }
} 