* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 11px;
    line-height: 1.4;
    color: #1a1a1a;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 30px;
    max-width: 8.5in;
    margin: 0 auto;
    min-height: 100vh;
}

.resume-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.resume-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #ff6b6b, #feca57, #48dbfb, #ff9ff3, #54a0ff);
    border-radius: 20px 20px 0 0;
}

.header {
    text-align: center;
    margin-bottom: 15px;
}

.name {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #4a5568;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info {
    font-size: 11px;
    line-height: 1.4;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    align-items: center;
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(102, 126, 234, 0.2);
    transform: translateY(-2px);
}

.contact-item i {
    color: #667eea;
    width: 14px;
    text-align: center;
    font-size: 12px;
}

.contact-item a {
    color: #2d3748;
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover {
    color: #667eea;
}

.contact-item span {
    color: #2d3748;
    font-weight: 500;
}

.section-title {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 35px;
    margin-bottom: 20px;
    position: relative;
    color: #2d3748;
    letter-spacing: 1px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

.section-title i {
    margin-right: 12px;
    color: #667eea !important;
    font-size: 16px;
}

.summary-text {
    text-align: justify;
    margin-bottom: 10px;
    line-height: 1.6;
    font-size: 12px;
    color: #4a5568;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.skills-text {
    text-align: justify;
    line-height: 1.6;
    font-size: 12px;
    color: #4a5568;
    font-family: 'JetBrains Mono', monospace;
    background: #f7fafc;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.job {
    margin-bottom: 12px;
}

.job-header {
    font-weight: bold;
    margin-bottom: 3px;
}

.job-title {
    display: inline;
}

.company {
    display: inline;
}

.location {
    display: inline;
}

.dates {
    display: inline;
}

.job-duties {
    margin-left: 0;
    margin-top: 3px;
}

.job-duties li {
    margin-bottom: 2px;
    margin-left: 15px;
    text-align: justify;
    line-height: 1.25;
}

.project {
    margin-bottom: 10px;
}

.project-title {
    font-weight: bold;
    margin-bottom: 3px;
}

.project-duties {
    margin-left: 0;
    margin-top: 3px;
}

.project-duties li {
    margin-bottom: 2px;
    margin-left: 15px;
    text-align: justify;
    line-height: 1.25;
}

.ats-keywords {
    font-size: 9px;
    color: #666;
    font-style: italic;
    margin-bottom: 5px;
    word-spacing: -1px;
}

.certification-links {
    margin-top: 5px;
}

.certification-links div {
    margin-bottom: 1px;
}

.certification-links a {
    color: #667eea;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 25px;
    transition: all 0.3s ease;
    margin-right: 10px;
    margin-bottom: 8px;
}

.certification-links a:hover {
    background: rgba(102, 126, 234, 0.2);
    transform: translateY(-2px);
}

.certification-links i {
    color: #667eea;
}

.education-item {
    margin-bottom: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    border-left: 4px solid #ff9ff3;
}

.education-item i {
    color: #ff9ff3 !important;
    margin-right: 8px;
}

.skills-matrix {
    margin-top: 15px;
}

.skills-chart {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.skills-labels {
    display: flex;
    flex-direction: column;
    margin-right: 15px;
    font-size: 10px;
}

.skills-labels div {
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 5px;
    margin-bottom: 5px;
}

.chart-area {
    flex: 1;
    position: relative;
}

.chart-scale {
    display: flex;
    justify-content: space-between;
    font-size: 9px;
    margin-bottom: 5px;
    padding: 0 5px;
}

.skill-bar {
    height: 15px;
    margin-bottom: 10px;
    position: relative;
}

.bar-bg {
    width: 100%;
    height: 8px;
    background: #f0f0f0;
    border: 1px solid #ccc;
    position: relative;
    top: 3px;
}

.bar-fill {
    height: 8px;
    background: #4a90e2;
    position: absolute;
    top: 0;
}

.bar-cloud {
    width: 25%;
}

.bar-cloud {
    width: 25%;
}

.bar-web {
    width: 15%;
}

.bar-version {
    width: 45%;
}

.bar-languages {
    width: 35%;
}