/* General Styling & Variables */
:root {
    --primary-color: #0066cc;
    --secondary-color: #f8f9fa;
    --accent-color: #ffffff;
    --light-blue: #e3f2fd;
    --text-dark: #000000;
    --text-light: #0066cc;
    --text-muted: #6c757d;
    --border-light: #e9ecef;
    --blue-medium: #4285f4;
    --font-family: 'Poppins', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    background: var(--accent-color);
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Ensure all text elements use Poppins font */
h1, h2, h3, h4, h5, h6,
p, span, div, a, li, td, th,
input, textarea, select, button,
label, legend, fieldset {
    font-family: 'Poppins', sans-serif !important;
}

/* Specific font enforcement for common elements */
* {
    font-family: 'Poppins', sans-serif;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: transparent;
    z-index: 100;
    transition: background-color 0.3s ease;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.navbar a {
    font-size: 1.1rem;
    color: var(--text-dark);
    text-decoration: none;
    margin-left: 35px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar a:hover {
    color: var(--blue-medium);
}

.contact-btn {
    display: inline-block;
    padding: 10px 25px;
    background: var(--accent-color);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: var(--primary-color);
    color: var(--accent-color);
}

.hamburger {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    display: flex;
    min-height: 100vh;
    width: 100%;
}

.hero-left {
    background: var(--secondary-color);
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 5%;
}

.intro-text .greeting {
    font-size: 1.5rem;
}

.intro-text h1 {
    font-size: 4rem;
    color: var(--primary-color);
    margin: 10px 0;
}

.intro-text .subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 10px;
}

.intro-text .location {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
    font-weight: 500;
}

.intro-text .elevator-pitch {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 90%;
    margin-top: 20px;
}

.social-links {
    margin-top: 30px;
}

.social-links a {
    display: inline-flex;
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: #ffffff;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--text-dark);
    color: #ffffff;
    transform: translateY(-3px);
}

/* CV Download Button */
.cv-download {
    margin-top: 25px;
}

.download-cv-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: var(--primary-color);
    color: var(--accent-color);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.download-cv-btn:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.download-cv-btn i {
    font-size: 1.1rem;
}

.hero-right {
    width: 50%;
    background: var(--secondary-color);
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.hero-right img {
    width: 85%;
    height: 90%;
    object-fit: cover;
    object-position: center top;
    border-radius: 20px 0 0 0;
}

/* Content Sections */
.content-section {
    padding: 100px 10%;
    text-align: center;
}

.content-section h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    line-height: 1.3;
}

.content-section h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.gray-bg {
    background: var(--secondary-color);
}

/* About Section Specifics */
.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
    text-align: left;
    margin-bottom: 50px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-image {
    text-align: center;
}

.about-image img {
    width: 100%;
    max-width: 300px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.skills-section {
    margin-top: 60px;
}

.skills-section h3 {
    font-size: 1.8rem;
    margin-bottom: 40px;
    color: var(--primary-color);
    text-align: center;
}

/* Skills Grid Layout */
.skills-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.skill-category {
    text-align: center;
}

.skill-category h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 600;
}

/* Video Section Specifics */
.video-intro {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #666;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    background: var(--accent-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.video-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

.video-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 450px;
    background: #f8f9fa;
    color: #666;
    text-align: center;
    padding: 40px;
}

.video-placeholder i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.video-placeholder p {
    margin-bottom: 10px;
}

.video-note {
    font-size: 0.9rem;
    color: #999;
    font-style: italic;
}

.content-section h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.gray-bg {
    background: var(--secondary-color);
}

/* Portfolio Section Specifics */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    text-align: left;
}

.portfolio-item {
    background: var(--accent-color);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.portfolio-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.portfolio-content {
    padding: 30px;
}

.portfolio-content h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 1.4rem;
}

.project-description {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.6;
}

.project-details {
    margin-bottom: 20px;
}

.project-details p {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.project-details strong {
    color: var(--primary-color);
}

.project-links {
    margin-top: 20px;
}

.project-link {
    display: inline-block;
    padding: 8px 20px;
    background: var(--primary-color);
    color: var(--accent-color);
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.project-link:hover {
    background: var(--text-dark);
    transform: translateY(-2px);
}

.experience-header h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin: 0;
    flex: 1;
    min-width: 200px;
}

.experience-company {
    color: #666;
    font-weight: 600;
    font-size: 1.1rem;
}

.experience-date {
    color: #999;
    font-size: 0.95rem;
    white-space: nowrap;
}

.experience-description p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #555;
}

.experience-achievements {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.experience-achievements li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    color: #555;
}

.experience-achievements li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Achievements list styling for experience cards */
.achievements {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.achievements li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 14px;
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 0.95rem;
}

.achievements li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1.6;
}

.experience-skills {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.skill-tag.small {
    padding: 6px 12px;
    font-size: 0.85rem;
}

/* Enhanced Portfolio Styles */
.portfolio-item.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.project-badge {
    background: var(--primary-color);
    color: var(--accent-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

/* Project Toggle Styles */
.project-date {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.project-description {
    margin-bottom: 15px;
    color: #666;
    line-height: 1.6;
}

.project-description-full {
    margin-bottom: 15px;
    color: #666;
    line-height: 1.6;
}

.project-details {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    display: none;
}

.project-highlights ul {
    list-style: none;
    padding: 0;
    margin: 15px 0 20px 0;
}

.project-highlights li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #555;
    line-height: 1.5;
}

.project-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.tech-tag {
    background: var(--primary-color);
    color: var(--accent-color);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.project-toggle-btn {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
}

.project-toggle-btn:hover {
    background: var(--primary-color);
    color: var(--accent-color);
    transform: translateY(-2px);
}

.toggle-icon {
    transition: transform 0.3s ease;
}

.project-toggle-btn:hover .toggle-icon {
    transform: scale(1.1);
}

.detail-item {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.detail-item strong {
    min-width: 80px;
    flex-shrink: 0;
}

.project-link.secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    margin-left: 10px;
}

.project-link.secondary:hover {
    background: var(--primary-color);
    color: var(--accent-color);
}

/* Work Experience Timeline Layout */
.experience-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
}

/* Timeline line */
.experience-grid::before {
    content: '';
    position: absolute;
    left: 80px;
    top: 100px;
    bottom: 100px;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 2px;
    z-index: 1;
}

.experience-card {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    background: transparent;
    padding: 0;
    position: relative;
    width: 100%;
    transition: all 0.3s ease;
}

.experience-card:hover .company-logo {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(46, 111, 64, 0.3);
}

.experience-card.current-role .company-logo {
    border: 3px solid var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.experience-card.current-role .company-logo::after {
    content: 'Current';
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary-color);
    color: var(--accent-color);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 12px;
    border: 2px solid var(--accent-color);
}

.experience-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
    gap: 20px;
}

.role-info h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.role-subtitle {
    color: var(--text-light);
    font-size: 0.95rem;
    font-style: italic;
    margin: 0 0 12px 0;
}

.company {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    margin: 0 0 8px 0;
}

.location {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.date-badge {
    background: var(--secondary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-dark);
    white-space: nowrap;
    align-self: flex-start;
}

.date-badge.current {
    background: var(--blue-medium);
    color: var(--text-dark);
}

.experience-content {
    margin-top: 25px;
}

.role-description {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.key-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.key-points li {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 14px;
    padding-left: 20px;
    position: relative;
}

.key-points li::before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* Company Experience Timeline Styles */
.experience-timeline {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 0;
}

.company-experience {
    background: transparent;
    border: none;
    border-radius: 0;
    margin-bottom: 30px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: none;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 20px;
}

.company-experience:hover {
    transform: none;
    box-shadow: none;
}

.company-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: none;
    background: transparent;
}

.company-header:hover {
    background: rgba(46, 111, 64, 0.05);
}

.company-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.company-logo {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.company-logo-img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.company-logo-icon {
    font-size: 2rem;
    color: var(--primary-color);
}

.company-details h3 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.4rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.company-details h3:hover {
    color: var(--text-dark);
}

.company-period {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 5px 0 0 0;
}

.expand-icon {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.company-roles {
    display: none;
    padding: 20px 0 0 75px;
    border-left: 2px solid var(--border-light);
    margin-left: 30px;
}

.role-item {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-light);
}

.role-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.role-content h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.role-duration {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.achievements {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.achievements li {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.achievements li::before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.skills-used {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

/* Education Styles */
.education-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.education-item {
    display: flex;
    gap: 20px;
    background: var(--accent-color);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.education-item.featured {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, #f8f9fa 0%, var(--accent-color) 100%);
}

.education-location {
    color: #999;
    font-size: 0.9rem;
    margin-top: 5px;
}

/* Certifications Styles */
.certifications-section {
    margin-top: 50px;
}

.certifications-section h3 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.certification-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--accent-color);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.certification-item:hover {
    transform: translateY(-3px);
}

.certification-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    min-width: 25px;
}

.cert-issuer {
    font-weight: 600;
    color: #666;
    margin-top: 5px;
}

.cert-date {
    color: #999;
    font-size: 0.9rem;
    margin-top: 2px;
}

/* Volunteer Activities */
.volunteer-section {
    margin-top: 50px;
}

.volunteer-section h3 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.volunteer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.volunteer-item {
    display: flex;
    gap: 20px;
    background: var(--accent-color);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-left: 4px solid var(--primary-color);
}

.volunteer-item i {
    color: var(--primary-color);
    font-size: 1.8rem;
    min-width: 30px;
    margin-top: 5px;
}

.volunteer-org {
    font-weight: 600;
    color: #666;
    margin-top: 5px;
}

.volunteer-date {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 3px;
}

.volunteer-desc {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-top: 8px;
}

.education-icon {
    font-size: 2rem;
    color: var(--primary-color);
    min-width: 50px;
}

.education-institution {
    font-weight: 600;
    color: #666;
}

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

/* Contact Page Enhancements */
.contact-info-extended {
    background: var(--secondary-color);
    padding: 40px;
    border-radius: 15px;
}

.contact-methods {
    margin: 40px 0;
}

.contact-item.large {
    background: transparent;
    margin-bottom: 20px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
}

.contact-item.large p {
    margin-top: 5px;
    color: #666;
    font-size: 0.9rem;
}

.availability-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.availability-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.availability-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group.half {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background: var(--accent-color);
}

.form-group.checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.form-group.checkbox input {
    width: auto;
    margin: 0;
}

/* Alternative Contact Cards */
.alternative-contact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-card {
    background: transparent;
    padding: 20px 10px;
    border-radius: 0;
    text-align: center;
    box-shadow: none;
    transition: none;
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 20px;
}

.contact-card:hover {
    transform: none;
}

.contact-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Social links in contact cards */
.contact-card .social-links {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.contact-card .social-links a {
    display: inline-flex;
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: #ffffff;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-card .social-links a:hover {
    background: var(--text-dark);
    color: #ffffff;
    transform: translateY(-3px);
}

.contact-card .social-links a i {
    font-size: 1.2rem;
    margin: 0;
    color: #ffffff;
}

.contact-card-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background: var(--primary-color);
    color: var(--accent-color);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-card-btn:hover {
    background: var(--text-dark);
    transform: translateY(-2px);
}

.social-links-extended {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-links-extended a {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-links-extended a:hover {
    background: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    color: #ffffff;
}

.social-links-extended a i {
    font-size: 1.1rem;
    color: #ffffff;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Testimonials Section */
.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.testimonial-item {
    position: relative;
}

.testimonial-content {
    background: transparent;
    padding: 30px 0;
    border-radius: 0;
    border-left: 3px solid var(--primary-color);
    padding-left: 30px;
    transition: all 0.3s ease;
}

.testimonial-content:hover {
    border-left-color: var(--text-dark);
}

.quote-icon {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 20px;
    opacity: 0.7;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    font-style: italic;
    color: #555;
}

.testimonial-author h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.testimonial-author span {
    color: #666;
    font-size: 0.95rem;
    display: block;
    margin-bottom: 10px;
}

.testimonial-author .contact-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #777;
    margin-top: 10px;
}

.testimonial-author .contact-info i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

/* CTA Section */
.cta-section {
    padding: 80px 10%;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #666;
}

.cta-btn {
    display: inline-block;
    padding: 15px 35px;
    background: var(--primary-color);
    color: var(--accent-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin: 0 10px;
}

.cta-btn:hover {
    background: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.cta-btn.secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-btn.secondary:hover {
    background: var(--primary-color);
    color: var(--accent-color);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Skills Section Specifics */
.skills-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 10px;
}

.skill-tag {
    background: var(--secondary-color);
    color: var(--text-dark);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.skill-tag:hover {
    background: var(--primary-color);
    color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 111, 64, 0.3);
}


/* Contact Section Specifics */
.contact-intro {
    font-size: 1.2rem;
    margin-bottom: 50px;
    color: #666;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    text-align: left;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px 0;
    background: transparent;
    border-radius: 0;
    transition: none;
    border-bottom: 1px solid var(--border-light);
}

.contact-item:hover {
    transform: none;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 30px;
    text-align: center;
}

.contact-item h4 {
    margin-bottom: 5px;
    color: var(--primary-color);
}

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

.contact-item a:hover {
    color: var(--primary-color);
}

.contact-form-container {
    background: transparent;
    padding: 20px 0;
    border-radius: 0;
}

.contact-form h3 {
    margin-bottom: 30px;
    color: var(--primary-color);
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: var(--primary-color);
    color: var(--accent-color);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.submit-btn i {
    font-size: 1rem;
}

/* Form Messages */
.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
}

.form-message-success {
    background: #e3f2fd;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, var(--light-blue) 0%, #ffffff 100%);
    color: var(--text-dark);
    padding: 140px 10% 100px;
    text-align: center;
    margin-top: 80px;
}

.page-header-content h1 {
    font-size: 3rem;
    margin-bottom: 25px;
    color: var(--primary-color);
    line-height: 1.2;
}

.page-header-content p {
    font-size: 1.3rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Quick Links Section */
.quick-links-section {
    padding: 80px 10%;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.quick-link-card {
    background: var(--accent-color);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
    color: var(--text-dark);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.quick-link-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

.quick-link-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.quick-link-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.quick-link-card p {
    color: #666;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: #ffffff;
    text-align: center;
    padding: 20px 5%;
}

/* Responsive Design */
@media (max-width: 992px) {
    .header {
        padding: 20px 5%;
    }

    .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--accent-color);
        display: none;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .navbar.active {
        display: flex;
    }

    .navbar a {
        margin: 10px 0;
    }

    .hamburger {
        display: block;
    }

    .contact-btn {
        display: none; /* Hide button on smaller screens, can be moved inside menu */
    }

    .hero {
        flex-direction: column;
        height: auto;
    }

    .hero-left, .hero-right {
        width: 100%;
    }

    .hero-left {
        min-height: 50vh;
        text-align: center;
        align-items: center;
        padding: 100px 5% 40px;
    }

    .hero-right {
        min-height: 50vh;
        clip-path: none;
        display: flex;
        justify-content: center;
        align-items: flex-end;
    }

    .hero-right img {
        position: static;
        width: 60%;
        left: 0;
    }

    .intro-text h1 {
        font-size: 3rem;
    }

    .cv-download {
        margin-top: 20px;
    }

    .download-cv-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    /* About section responsive */
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .about-image img {
        max-width: 250px;
    }

    /* Portfolio responsive */
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .portfolio-item {
        max-width: 500px;
        margin: 0 auto;
    }

    /* Contact responsive */
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .contact-form-container {
        padding: 30px 20px;
    }

    /* Experience cards responsive */
    .experience-grid {
        gap: 25px;
        padding: 0 15px;
    }
    
    .experience-card {
        padding: 25px;
        margin-bottom: 15px;
    }
    
    .experience-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .date-badge {
        align-self: flex-start;
    }
}

@media (max-width: 576px) {
    .intro-text h1 {
        font-size: 2.5rem;
    }
    .intro-text .greeting {
        font-size: 1.2rem;
    }
    .intro-text .subtitle {
        font-size: 1.1rem;
    }
    .content-section {
        padding: 60px 5%;
    }
    .content-section h2 {
        font-size: 2rem;
        margin-bottom: 35px;
    }

    /* Small screen adjustments */
    .intro-text .elevator-pitch {
        font-size: 1rem;
        margin-top: 15px;
    }

    .about-text p {
        font-size: 1rem;
    }

    .portfolio-image {
        height: 180px;
    }

    .contact-form-container {
        padding: 25px 15px;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px;
        font-size: 0.95rem;
    }
}

/* ===== NEW COMPONENT STYLES ===== */

/* Portfolio Project Highlights */
.project-highlights {
    margin: 20px 0;
}

.project-highlights ul {
    list-style: none;
    padding: 0;
}

.project-highlights li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.project-highlights li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--light-blue);
    font-weight: bold;
}

/* Project Tech Tags */
.project-tech {
    margin: 15px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-tag {
    background: var(--light-blue);
    color: var(--text-dark);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Project Date */
.project-date {
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

/* Tech Showcase Styles */
.tech-showcase {
    margin-top: 40px;
}

.tech-category {
    margin-bottom: 40px;
}

.tech-category h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: 20px;
    text-align: center;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background: var(--accent-color);
    border: 2px solid var(--border-light);
    border-radius: 10px;
    transition: all 0.3s ease;
    text-align: center;
}

.tech-item:hover {
    border-color: var(--light-blue);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.tech-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.tech-item span {
    font-weight: 500;
    color: var(--text-dark);
}

/* Education Section Styles */
.education-section {
    margin: 40px 0;
    padding: 30px 0;
    border-top: 1px solid var(--border-light);
}

.education-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.education-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--accent-color);
    border-left: 4px solid var(--light-blue);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.education-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.education-icon i {
    color: var(--text-dark);
    font-size: 1.2rem;
}

.education-content h4 {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.education-institution {
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 3px;
}

.education-date {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.education-status {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Certifications Section - Timeline Layout */
.certifications-section {
    margin: 50px 0;
    padding: 0;
}

.certifications-section h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

.certifications-section h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

/* Certifications Timeline Structure */
.certifications-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}

.certifications-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    border-radius: 1px;
}

.cert-timeline-item {
    position: relative;
    margin-bottom: 50px;
    padding-left: 80px;
}

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

.cert-timeline-marker {
    position: absolute;
    left: 0;
    top: 0;
}

.cert-timeline-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent-color);
    border: 3px solid var(--primary-color);
    position: relative;
    left: 21px;
    transition: all 0.3s ease;
}

.recent-dot {
    background: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(46, 111, 64, 0.2);
}

.cert-timeline-line {
    position: absolute;
    left: 31px;
    top: 20px;
    width: 2px;
    height: 50px;
    background: var(--primary-color);
}

/* Certifications Timeline Content */
.cert-timeline-content {
    background: transparent;
    position: relative;
    padding: 0;
}

.cert-timeline-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.recent-badge {
    background: linear-gradient(135deg, #0066cc, #004499);
    color: white;
}

.completed-badge {
    background: linear-gradient(135deg, #607D8B, #455A64);
    color: white;
}

.cert-timeline-content h4 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-weight: 600;
    line-height: 1.3;
}

.cert-provider {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 1.05rem;
    margin-bottom: 5px;
}

.cert-date {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 12px;
    font-weight: 500;
}

.cert-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

/* Certification Skills Row */
.cert-skills-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.cert-skill-chip {
    background: var(--primary-color);
    color: var(--accent-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: none;
}

/* Certifications Summary */
.certifications-summary {
    margin-top: 60px;
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #f8f9fa, #e3f2fd);
    border-radius: 20px;
    border: 1px solid rgba(46, 111, 64, 0.1);
}

.certifications-summary h4 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: 30px;
    font-weight: 600;
}

.cert-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.cert-stat-metric {
    text-align: center;
}

.cert-metric-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
    line-height: 1;
}

.cert-metric-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Volunteer Section - Timeline Layout */
.volunteer-section {
    margin: 50px 0;
    padding: 0;
}

.volunteer-section h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

.volunteer-section h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

/* Timeline Structure */
.volunteer-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}

.volunteer-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    border-radius: 1px;
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    padding-left: 80px;
}

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

.timeline-marker {
    position: absolute;
    left: 0;
    top: 0;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent-color);
    border: 3px solid var(--primary-color);
    position: relative;
    left: 21px;
    transition: all 0.3s ease;
}

.timeline-dot.active {
    background: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(46, 111, 64, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(46, 111, 64, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(46, 111, 64, 0); }
    100% { box-shadow: 0 0 0 0 rgba(46, 111, 64, 0); }
}

/* Timeline Content */
.timeline-content {
    background: transparent;
    position: relative;
    padding: 0;
}

.timeline-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.current-badge {
    background: linear-gradient(135deg, #0066cc, #004499);
    color: white;
}

.completed-badge {
    background: linear-gradient(135deg, #607D8B, #455A64);
    color: white;
}

.timeline-content h4 {
    color: var(--text-dark);
    font-size: 1.4rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.organization {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 1.05rem;
    margin-bottom: 5px;
}

.duration {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.role-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

/* Achievements List */
.achievements-list {
    margin-bottom: 20px;
}

.achievement {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    padding: 0;
    background: transparent;
}

.achievement i {
    color: var(--primary-color);
    font-size: 1rem;
    margin-right: 12px;
    margin-top: 2px;
    flex-shrink: 0;
}

.achievement span {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Skills Row */
.skills-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.skill-chip {
    background: var(--primary-color);
    color: var(--accent-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: none;
}

/* Impact Summary */
.impact-summary {
    margin-top: 60px;
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #f8f9fa, #e3f2fd);
    border-radius: 20px;
    border: 1px solid rgba(46, 111, 64, 0.1);
}

.impact-summary h4 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: 30px;
    font-weight: 600;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.impact-metric {
    text-align: center;
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
    line-height: 1;
}

.metric-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Career Summary Styles */
.career-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
    text-align: center;
}

.career-stat {
    padding: 20px 10px;
    background: transparent;
    border: none;
    border-radius: 0;
    transition: none;
    border-bottom: 1px solid var(--border-light);
}

.career-stat:hover {
    border-color: var(--primary-color);
    transform: none;
    box-shadow: none;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    color: var(--text-light);
    font-weight: 500;
    font-size: 1rem;
}

/* Career Highlights */
.career-highlights {
    margin-top: 50px;
}

.career-highlights h3 {
    text-align: center;
    color: var(--text-dark);
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.highlight-item {
    text-align: center;
    padding: 20px 10px;
    background: transparent;
    border: none;
    border-radius: 0;
    transition: none;
    border-bottom: 1px solid var(--border-light);
}

.highlight-item:hover {
    border-color: var(--primary-color);
    transform: none;
    box-shadow: none;
}

.highlight-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.highlight-item h4 {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.highlight-item p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Bio Highlight */
.bio-highlight {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--light-blue);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

/* Experience Card Company Logo */
.company-logo {
    flex-shrink: 0;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.company-logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

/* If no logo image is available, show placeholder */
.company-logo:empty::before {
    content: "🏢";
    font-size: 2rem;
    color: var(--primary-color);
}

/* Experience Content Layout */
.experience-content {
    flex-grow: 1;
    margin-left: 0;
    padding: 20px 0;
    padding-left: 30px;
    margin-left: 20px;
    position: relative;
}

.experience-header {
    margin-bottom: 15px;
}

.role-info h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.company {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0 0 5px 0;
}

.location {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0 0 10px 0;
}

.date-badge {
    display: inline-block;
    background: var(--blue-medium);
    color: var(--text-dark);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.date-badge.current {
    background: var(--primary-color);
    color: #ffffff;
}

.role-description {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Skills Pills - Circular Style */
.skills-used {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.skill-pill {
    background: var(--secondary-color);
    color: var(--text-dark);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid var(--primary-color);
    transition: all 0.3s ease;
}

.skill-pill:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Responsive Design for New Components */
@media (max-width: 768px) {
    .tech-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 15px;
    }
    
    .tech-item {
        padding: 15px 10px;
    }
    
    .tech-item i {
        font-size: 1.5rem;
    }
    
    .education-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .education-icon {
        margin-right: 0;
        margin-bottom: 15px;
        width: 55px;
        height: 55px;
    }
    
    /* Timeline Mobile Styles */
    .volunteer-timeline::before {
        left: 15px;
    }
    
    .timeline-item {
        padding-left: 50px;
        margin-bottom: 40px;
    }
    
    .timeline-dot {
        left: 6px;
        width: 18px;
        height: 18px;
    }
    
    .timeline-content h4 {
        font-size: 1.2rem;
    }
    
    .achievement {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 15px;
    }
    
    .achievement i {
        margin-bottom: 5px;
    }
    
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .metric-value {
        font-size: 2rem;
    }
    
    .career-summary {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .certification-item {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .cert-icon {
        margin-right: 0;
        margin-bottom: 15px;
        width: 50px;
        height: 50px;
    }
    
    .cert-category-header {
        padding: 15px 20px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .cert-category-content {
        padding: 20px 15px;
    }
    
    /* Certifications Timeline Mobile */
    .certifications-timeline::before {
        left: 15px;
    }
    
    .cert-timeline-item {
        padding-left: 50px;
        margin-bottom: 40px;
    }
    
    .cert-timeline-dot {
        left: 6px;
        width: 18px;
        height: 18px;
    }
    
    .cert-timeline-content h4 {
        font-size: 1.1rem;
    }
    
    .cert-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .cert-metric-value {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .project-tech {
        gap: 5px;
    }
    
    .tech-tag {
        font-size: 0.75rem;
        padding: 3px 8px;
    }
    
    .certifications-grid {
        grid-template-columns: 1fr;
    }
}

/* Hero Stats Section */
.hero-stats {
    display: flex;
    gap: 30px;
    margin: 20px 0;
    padding: 20px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* Philosophy/Manifesto Styling */
.philosophy-snippet {
    margin: 20px 0;
    padding: 15px 0;
}

.manifesto-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.6;
    border-left: 3px solid var(--primary-color);
    padding-left: 15px;
    margin: 0;
}

/* Location Badge */
.location-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 15px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-dark);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.location-badge i {
    color: var(--primary-color);
}

/* Improved Typography - Spaced Headers */
.subtitle {
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 300;
    font-size: 1.2rem;
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-stats {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .manifesto-text {
        font-size: 1rem;
        padding-left: 12px;
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .tools-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .tool-item {
        padding: 20px;
    }
    
    .tool-item i {
        font-size: 2rem;
    }
    
    .location-badge {
        position: static;
        margin-top: 15px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        gap: 15px;
    }
    
    .tools-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .tool-item {
        padding: 15px;
    }
    
    .tool-item i {
        font-size: 1.8rem;
    }
    
    .tool-item span {
        font-size: 0.85rem;
    }
}

/* Technical Expertise - No Containers */
.tech-showcase-no-containers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.tech-showcase-no-containers .tech-category {
    text-align: center;
}

.tech-showcase-no-containers .tech-category h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 600;
}

.tech-grid-simple {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    justify-items: center;
}

.tech-item-no-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    padding: 10px;
}

.tech-item-no-container:hover {
    transform: translateY(-5px);
}

.tech-item-no-container i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.tech-item-no-container span {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
    text-align: center;
}

@media (max-width: 768px) {
    .tech-showcase-no-containers {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .tech-grid-simple {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .tech-item-no-container i {
        font-size: 2rem;
    }
    
    .tech-item-no-container span {
        font-size: 0.85rem;
    }
}

/* Collapsible Sections */
.section-header.collapsible {
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 15px 0;
    border-bottom: 2px solid var(--secondary-color);
    margin-bottom: 20px;
}

.section-header.collapsible:hover {
    background-color: rgba(0, 102, 204, 0.05);
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 8px;
}

.section-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.summary-text {
    color: var(--text-muted);
    font-size: 1rem;
    font-style: italic;
}

.expand-icon {
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.expand-icon.rotated {
    transform: rotate(180deg);
}

.collapsible-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.collapsible-content.expanded {
    max-height: 5000px;
}

@media (max-width: 768px) {
    .section-summary {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .summary-text {
        font-size: 0.9rem;
    }
    
    .expand-icon {
        align-self: flex-end;
    }
}

/* Individual Certification Collapsible */
.cert-header.collapsible {
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.cert-header.collapsible:hover {
    background-color: rgba(0, 102, 204, 0.05);
}

.cert-basic-info {
    flex: 1;
}

.cert-expand-icon {
    font-size: 1rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    margin-top: 5px;
    margin-left: 15px;
}

.cert-expand-icon.rotated {
    transform: rotate(180deg);
}

.cert-details.collapsible-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 10px;
}

.cert-details.collapsible-content.expanded {
    max-height: 300px;
    padding: 10px;
}

@media (max-width: 768px) {
    .cert-header.collapsible {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cert-expand-icon {
        align-self: flex-end;
        margin-top: 10px;
        margin-left: 0;
    }
}

/* Volunteer Activities Collapsible */
.vol-header.collapsible {
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.vol-header.collapsible:hover {
    background-color: rgba(0, 102, 204, 0.05);
}

.vol-basic-info {
    flex: 1;
}

.vol-details.collapsible-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 10px;
}

.vol-details.collapsible-content.expanded {
    max-height: 500px;
    padding: 10px;
}

.category-btn:hover,
.category-btn.active {
    background: white;
    color: var(--primary-color);
}

/* Experience Page Bold Typography */
.experience-hero-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 0;
}

.highlight-word {
    background: linear-gradient(45deg, #ffffff, #e3f2fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
    position: relative;
}

.highlight-word::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: white;
    opacity: 0.6;
}

/* Testimonial Section */
.testimonial-section {
    background: var(--secondary-color);
    padding: 60px 40px;
    border-radius: 20px;
    margin-bottom: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.testimonial-section::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 40px;
    font-size: 8rem;
    color: var(--primary-color);
    opacity: 0.1;
    font-family: serif;
}

.testimonial-quote {
    font-size: 1.8rem;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.4;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.author-info {
    text-align: left;
}

.author-name {
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    font-size: 1.1rem;
}

.author-role {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.9rem;
}

/* Spinning Animation for Projects */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.spinning-element {
    animation: spin 20s linear infinite;
}

.portfolio-item:hover .spinning-element {
    animation-duration: 2s;
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
    .code-block {
        font-size: 0.8rem;
    }
    
    .value-main {
        font-size: 2rem;
    }
    
    .experience-hero-title {
        font-size: 2.2rem;
    }
    
    .testimonial-quote {
        font-size: 1.4rem;
    }
    
    .project-categories {
        gap: 10px;
    }
    
    .category-btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .code-style-intro {
        padding: 20px;
    }
    
    .value-proposition {
        padding: 30px 20px;
    }
    
    .value-main {
        font-size: 1.8rem;
    }
    
    .experience-hero-title {
        font-size: 1.8rem;
    }
    
    .testimonial-section {
        padding: 40px 20px;
    }
    
    .testimonial-quote {
        font-size: 1.2rem;
    }
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--blue-medium) 100%);
    color: white;
    text-align: center;
}

.newsletter-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.newsletter-content h2::after {
    background: white;
}

.newsletter-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    line-height: 1.6;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input-group {
    display: flex;
    gap: 0;
    margin-bottom: 15px;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
}

.newsletter-input {
    flex: 1;
    padding: 15px 25px;
    border: none;
    outline: none;
    font-size: 1rem;
    background: white;
    color: var(--text-dark);
}

.newsletter-input::placeholder {
    color: var(--text-muted);
}

.newsletter-btn {
    padding: 15px 30px;
    background: var(--text-dark);
    color: white;
    border: none;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: #333;
    transform: translateX(2px);
}

.newsletter-note {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.newsletter-note i {
    color: #ff6b6b;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Newsletter Mobile Responsive */
@media (max-width: 768px) {
    .newsletter-input-group {
        flex-direction: column;
        border-radius: 12px;
    }
    
    .newsletter-input {
        border-radius: 12px 12px 0 0;
    }
    
    .newsletter-btn {
        border-radius: 0 0 12px 12px;
        justify-content: center;
    }
    
    .newsletter-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .newsletter-content h2 {
        font-size: 2rem;
    }
    
    .newsletter-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .newsletter-input,
    .newsletter-btn {
        padding: 12px 20px;
    }
}
