/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #ffffff 0%, #aedeff 100%);
    min-height: 100vh;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    background: white;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-radius: 20px;
    overflow: hidden;
    margin-top: 2rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
}

/* Portrait Sidebar */
.portrait-sidebar {
    width: 25%;
    height: 1080px;
    position: relative;
    overflow: hidden;
    background: #f8f9fa;
    align-self: flex-start;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.portrait-container {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    overflow: hidden;
}

.portrait-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.portrait-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1) 0%, rgba(44, 62, 80, 0.1) 100%);
    pointer-events: none;
}

/* Content Area */
.content-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Header */
.header {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: white;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/background.jpeg') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.header-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
}

.profile-info h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.profile-info .title {
    font-size: 1.3rem;
    font-weight: 500;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.profile-info .subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    opacity: 0.8;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.contact-item i {
    width: 20px;
    text-align: center;
    opacity: 0.8;
}

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

.contact-item a:hover {
    opacity: 0.8;
}

/* Navigation */
.nav {
    background: #34495e;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-list {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.nav-list li {
    margin: 0;
}

.nav-link {
    display: block;
    padding: 1rem 2rem;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    background: #3498db;
    color: white;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #3498db;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Main Content */
.main-content {
    padding: 0;
    flex: 1;
}

.section {
    padding: 3rem 2rem;
    border-bottom: 1px solid #eee;
}

.section:last-child {
    border-bottom: none;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #3498db, #2980b9);
    border-radius: 2px;
}

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

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.about-text strong {
    color: #2c3e50;
}

.stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #3498db, #2980b9);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 2rem;
}

.timeline-marker {
    position: absolute;
    left: -2rem;
    top: 0.5rem;
    width: 15px;
    height: 15px;
    background: #3498db;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 3px #3498db;
    z-index: 2;
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.experience-header {
    margin-bottom: 1rem;
}

.experience-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.company {
    font-weight: 600;
    color: #3498db;
    font-size: 1.1rem;
    margin-right: 1rem;
}

.period {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

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

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

.experience-details li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: #555;
    line-height: 1.6;
}

.experience-details li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #3498db;
    font-size: 0.8rem;
}

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

.skill-category {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.skill-category:hover {
    transform: translateY(-5px);
}

.skill-category h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
}

.skill-item {
    margin-bottom: 1.5rem;
}

.skill-name {
    display: block;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.skill-bar {
    height: 8px;
    background: #e9ecef;
    border-radius: 10px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #3498db, #2980b9);
    border-radius: 10px;
    transition: width 1s ease;
    position: relative;
}

.skill-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

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

.education-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.education-item:hover {
    transform: translateY(-5px);
}

.education-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.institution {
    color: #3498db;
    font-weight: 500;
    margin-right: 1rem;
}

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

/* Consulting Section */
.consulting-content {
    max-width: 800px;
    margin: 0 auto;
}

.consulting-header {
    text-align: center;
    margin-bottom: 3rem;
}

.consulting-header h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #3498db;
    margin-bottom: 1rem;
}

.consulting-tagline {
    font-size: 1.2rem;
    color: #666;
    font-style: italic;
}

.consulting-details p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
    text-align: center;
}

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

.service-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-item i {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.service-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.service-item p {
    color: #666;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        margin: 1rem;
        border-radius: 10px;
        flex-direction: column;
        min-height: auto;
        display: flex;
    }
    
    .portrait-sidebar {
        width: 100%;
        height: 300px;
        margin: 0;
        margin-bottom: 1rem;
        border-radius: 15px 15px 0 0;
        float: none;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .portrait-container {
        width: 180px;
        height: 400px;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    
    .portrait-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
    }
    
    .content-area {
        width: 100%;
        margin-left: 0;
        flex: 1;
    }
    
    .header {
        margin-bottom: 1rem;
    }
    
    .header-content {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .nav-list {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-link {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text {
        max-width: 100%;
        overflow-wrap: break-word;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .about-text p {
        margin-bottom: 1rem;
        line-height: 1.6;
    }
    
    .stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
        margin: 1.5rem 0;
    }
    
    .stat-item {
        padding: 1rem 0.5rem;
        text-align: center;
        background: #f8f9fa;
        border-radius: 8px;
        border: 1px solid #e0e0e0;
    }
    
    .stat-number {
        font-size: 1.8rem;
        font-weight: bold;
        color: #3498db;
        margin-bottom: 0.3rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
        color: #666;
        font-weight: 500;
        line-height: 1.2;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .education-list {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .experience-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .company-logo {
        width: 50px;
        height: 50px;
        align-self: flex-start;
    }
    
    .consulting-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .consulting-logo {
        width: 60px;
        height: 60px;
        align-self: flex-start;
    }
    
    .section {
        padding: 2rem 1rem;
        overflow-x: hidden;
        max-width: 100%;
    }
    
    .main-content {
        overflow-x: hidden;
        max-width: 100%;
    }
    
    .timeline {
        padding-left: 1rem;
    }
    
    .timeline-item {
        padding-left: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        margin: 0.5rem;
    }
    
    .portrait-sidebar {
        height: 250px;
        border-radius: 10px 10px 0 0;
    }
    
    .profile-info h1 {
        font-size: 2rem;
    }
    
    .profile-info .title {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .contact-info {
        align-items: center;
        gap: 0.75rem;
    }
    
    .contact-item {
        justify-content: center;
        font-size: 0.9rem;
    }
    
    .section {
        padding: 1.5rem 1rem;
    }
    
    .stat-item {
        padding: 0.8rem 0.4rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .timeline-content {
        padding: 1rem;
        max-width: 100%;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }
    
    .timeline-content ul {
        padding-left: 1rem;
    }
    
    .timeline-content li {
        margin-bottom: 0.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Print styles */
@media print {
    body {
        background: white;
        font-size: 12px;
        line-height: 1.4;
    }
    
    .container {
        box-shadow: none;
        margin: 0;
        border-radius: 0;
        display: block;
        max-width: none;
    }
    
    .nav {
        display: none;
    }
    
    /* Portrait Print Layout */
    .portrait-sidebar {
        width: 100px;
        height: 230px;
        float: left;
        margin: 0 15px 15px 0;
        border-radius: 6px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.1);
        background: none;
    }
    
    .portrait-container {
        width: 100%;
        height: 100%;
        border-radius: 8px;
        overflow: hidden;
    }
    
    .portrait-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
        display: block;
        border-radius: 6px;
    }
    
    .portrait-container::after {
        display: none;
    }
    
    /* Content Area Print Layout */
    .content-area {
        display: block;
        flex: none;
        margin-left: 115px;
        min-width: 0;
    }
    
    .header {
        background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
        color: white;
        padding: 15px;
        margin-bottom: 15px;
        border-radius: 6px;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
    
    .header::before {
        display: none;
    }
    
    .header-content {
        display: block;
        width: 100%;
        min-width: 0;
        overflow: visible;
    }
    
    .profile-info h1 {
        font-size: 20px;
        margin-bottom: 4px;
        white-space: normal;
        word-wrap: break-word;
        line-height: 1.2;
    }
    
    .profile-info .title {
        font-size: 16px;
        margin-bottom: 3px;
    }
    
    .profile-info .subtitle {
        font-size: 14px;
    }
    
    .contact-info {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .contact-item {
        font-size: 10px;
        margin-right: 12px;
    }
    
    .main-content {
        padding: 0;
        margin: 0;
    }
    
    /* Stats Print Styles */
    .stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        margin: 15px 0;
    }
    
    .stat-item {
        background: #f8f9fa;
        border: 1px solid #e0e0e0;
        border-radius: 5px;
        padding: 15px;
        text-align: center;
    }
    
    .stat-number {
        font-size: 24px;
        font-weight: bold;
        color: #3498db;
        margin-bottom: 5px;
    }
    
    .stat-label {
        font-size: 11px;
        color: #666;
    }
    
    .section {
        page-break-inside: avoid;
        margin-bottom: 20px;
        padding: 12px 15px;
    }
    
    .section-title {
        font-size: 16px;
        margin-bottom: 12px;
        color: #2c3e50;
        border-bottom: 2px solid #3498db;
        padding-bottom: 4px;
    }
    
    .section-title::after {
        display: none;
    }
    
    /* Timeline Print Styles */
    .timeline {
        position: relative;
        padding-left: 0;
        margin-left: 0;
    }
    
    .timeline::before {
        display: none;
    }
    
    .timeline-item {
        margin-bottom: 15px;
        margin-left: 0;
        position: relative;
    }
    
    .timeline-marker {
        display: none;
    }
    
    .timeline-content {
        margin-left: 0;
        padding: 0;
        border: 1px solid #e0e0e0;
        border-radius: 5px;
        padding: 12px;
    }
    
    .timeline-content:hover {
        transform: none;
        box-shadow: none;
    }
    
    /* Company Logos Print */
    .company-logo {
        width: 40px;
        height: 40px;
    }
    
    .company-logo-img {
        border-radius: 5px;
        padding: 4px;
    }
    
    /* Skills Print Styles */
    .skills-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-top: 12px;
    }
    
    .skill-category {
        background: #f8f9fa;
        border: 1px solid #e0e0e0;
        border-radius: 5px;
        padding: 12px;
        margin-bottom: 12px;
        page-break-inside: avoid;
    }
    
    .skill-category:hover {
        transform: none;
        box-shadow: none;
    }
    
    .skill-category h3 {
        font-size: 14px;
        margin-bottom: 10px;
        color: #2c3e50;
    }
    
    .skill-item {
        margin-bottom: 8px;
    }
    
    .skill-name {
        font-size: 11px;
        font-weight: 500;
    }
    
    .skill-bar {
        height: 4px;
        background: #e0e0e0;
        border-radius: 2px;
        margin-top: 3px;
    }
    
    .skill-progress {
        height: 100%;
        background: #3498db;
        border-radius: 2px;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
    
    .skill-progress::after {
        display: none;
    }
    
    /* Education Print Styles */
    .education-item {
        margin-bottom: 15px;
        padding: 10px;
        border: 1px solid #e0e0e0;
        border-radius: 5px;
        page-break-inside: avoid;
    }
    
    .education-item:hover {
        transform: none;
        box-shadow: none;
    }
    
    /* Consulting Print Styles */
    .consulting-header {
        display: block;
        margin-bottom: 15px;
    }
    
    .consulting-logo {
        width: 60px;
        height: 60px;
        float: left;
        margin-right: 15px;
        margin-bottom: 10px;
    }
    
    .consulting-info h3 {
        font-size: 16px;
    }
    
    .services-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-top: 15px;
    }
    
    .service-item {
        border: 1px solid #e0e0e0;
        border-radius: 5px;
        padding: 10px;
        page-break-inside: avoid;
    }
    
    .service-item:hover {
        transform: none;
        box-shadow: none;
    }
    
    .service-item i {
        font-size: 16px;
        margin-bottom: 5px;
    }
    
    .service-item h4 {
        font-size: 12px;
        margin-bottom: 5px;
    }
    
    .service-item p {
        font-size: 10px;
    }
    
    /* General Print Improvements */
    .stat-item:hover,
    .experience-header:hover,
    .consulting-header:hover {
        transform: none;
    }
    
    .company-logo:hover,
    .consulting-logo:hover {
        transform: none;
    }
    
    /* Force print colors */
    * {
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
    
    /* Hide interactive elements */
    .nav-link::after {
        display: none;
    }
    
    /* Page breaks */
    .section {
        page-break-after: auto;
    }
    
    .section:last-child {
        page-break-after: avoid;
    }
    
    /* Ensure images print */
    img {
        max-width: 100%;
        height: auto;
        display: block;
    }
} 

/* Skill Icons Enhancement */
.skill-icon-name {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
}

.skill-icon-name i {
    font-size: 1.2em;
    width: 20px;
    text-align: center;
    color: var(--primary-color);
}

.skill-category h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.skill-category h3 i {
    color: var(--primary-color);
    font-size: 1.1em;
}

/* Company Logo Styling */
.experience-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 10px;
}

.company-logo {
    position: relative;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.company-logo:hover {
    transform: scale(1.05);
}

.company-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
    padding: 8px;
    background: white;
}

.company-logo-fallback {
    font-size: 1.5em;
    color: white;
}

.experience-info {
    flex: 1;
}

.experience-info h3 {
    margin: 0 0 5px 0;
    font-size: 1.1em;
    color: var(--text-color);
}

.experience-info .company {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95em;
}

.experience-info .period {
    color: var(--text-light);
    font-size: 0.9em;
}

/* Consulting Logo Styling */
.consulting-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.consulting-logo {
    position: relative;
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.consulting-logo:hover {
    transform: scale(1.05);
}

.consulting-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 16px;
    padding: 12px;
    background: white;
}

.consulting-logo-fallback {
    font-size: 2em;
    color: white;
}

.consulting-info h3 {
    margin: 0 0 5px 0;
    font-size: 1.3em;
    color: var(--text-color);
}

.consulting-tagline {
    margin: 0;
    color: var(--text-light);
    font-size: 0.95em;
}

/* Enhanced Skills Grid */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.skill-category {
    background: var(--card-background);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skill-category:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Technology Icons Color Customization */
.fab.fa-js-square { color: #f7df1e; }
.fab.fa-java { color: #007396; }
.fab.fa-python { color: #3776ab; }
.fab.fa-node-js { color: #339933; }
.fab.fa-angular { color: #dd0031; }
.fab.fa-react { color: #61dafb; }
.fab.fa-html5 { color: #e34f26; }
.fab.fa-docker { color: #2496ed; }
.fab.fa-linux { color: #fcc624; }
.fab.fa-git-alt { color: #f05032; }
.fab.fa-microsoft { color: #0078d4; }
.fas.fa-leaf { color: #47a248; }
.fas.fa-database { color: #336791; }
.fas.fa-robot { color: #ff6b6b; }
.fas.fa-brain { color: #9b59b6; }
.fas.fa-chart-line { color: #3498db; }
.fas.fa-cogs { color: #95a5a6; }
.fas.fa-terminal { color: #2c3e50; }
.fas.fa-vector-square { color: #e74c3c; }
.fas.fa-link { color: #f39c12; }

/* Responsive Design for New Elements */
@media (max-width: 768px) {
    .experience-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .company-logo {
        width: 50px;
        height: 50px;
    }
    
    .consulting-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .consulting-logo {
        width: 60px;
        height: 60px;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .skill-icon-name {
        gap: 6px;
    }
    
    .skill-icon-name i {
        font-size: 1.1em;
    }
} 