

      .cv-modal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.8);
        z-index: 9999;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 20px;
        box-sizing: border-box;
    }
    
    .cv-modal-content {
        background: white;
        width: 100%;
        max-width: 900px;
        max-height: 90vh;
        border-radius: 15px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        position: relative;
        overflow: auto;
    }
    
    .cv-close {
        position: absolute;
        top: 15px;
        right: 20px;
        font-size: 30px;
        cursor: pointer;
        color: #666;
        z-index: 10;
        background: white;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .cv-close:hover {
        color: #333;
        background: #f5f5f5;
    }
    
    .cv-actions {
        display: flex;
        justify-content: center;
        gap: 15px;
        padding: 20px;
        background: #f8f9fa;
        border-top: 1px solid #e9ecef;
    }
    
    .cv-download-btn {
        background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
        color: white;
        border: none;
        padding: 12px 25px;
        border-radius: 8px;
        font-size: 16px;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .cv-download-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
    }
    
 
    .cv-container {
        font-family: 'Poppins', sans-serif;
        color: #2c3e50;
        line-height: 1.6;
        padding: 30px;
    }
    
    .cv-header {
        background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
        color: white;
        padding: 30px;
        border-radius: 10px;
        margin-bottom: 30px;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }
    
    .cv-personal-info h1 {
        font-size: 36px;
        margin: 0 0 5px 0;
        font-weight: 700;
    }
    
    .cv-personal-info h2 {
        font-size: 20px;
        margin: 0 0 10px 0;
        font-weight: 400;
        opacity: 0.9;
    }
    
    .cv-tagline {
        background: rgba(255, 255, 255, 0.2);
        padding: 5px 15px;
        border-radius: 20px;
        font-size: 14px;
        display: inline-block;
    }
    
    .cv-contact-info {
        text-align: right;
    }
    
    .cv-contact-info p {
        margin: 5px 0;
        font-size: 14px;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 8px;
    }
    
    .cv-social-links {
        margin-top: 10px;
        display: flex;
        gap: 8px;
        justify-content: flex-end;
    }
    
    .social-badge {
        width: 30px;
        height: 30px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
    }
    
    .cv-main-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .cv-section {
        margin-bottom: 25px;
    }
    
    .cv-section-header {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 15px;
        padding-bottom: 8px;
        border-bottom: 2px solid #3498db;
    }
    
    .cv-section-header i {
        color: #3498db;
        font-size: 18px;
    }
    
    .cv-section-header h3 {
        margin: 0;
        font-size: 18px;
        color: #2c3e50;
        font-weight: 600;
    }
    
    .cv-section-content {
        font-size: 14px;
    }
    
    .cv-experience-item {
        margin-bottom: 20px;
        padding-bottom: 15px;
        border-bottom: 1px solid #ecf0f1;
    }
    
    .cv-experience-item:last-child {
        border-bottom: none;
    }
    
    .cv-item-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 8px;
    }
    
    .cv-item-main {
        flex: 1;
    }
    
    .cv-item-title {
        font-weight: 600;
        font-size: 16px;
        color: #2c3e50;
    }
    
    .cv-item-company {
        font-style: italic;
        color: #3498db;
        font-size: 14px;
        margin-top: 2px;
    }
    
    .cv-item-date {
        color: #7f8c8d;
        font-size: 13px;
        background: #f8f9fa;
        padding: 3px 8px;
        border-radius: 12px;
        white-space: nowrap;
    }
    
    .cv-tech-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
        margin-top: 8px;
    }
    
    .cv-tech-tag {
        background: #e1f0fa;
        color: #2980b9;
        padding: 3px 8px;
        border-radius: 10px;
        font-size: 11px;
        font-weight: 500;
        border: 1px solid #d6eaf8;
    }
    
    .cv-education-item {
        margin-bottom: 15px;
        padding-bottom: 15px;
        border-bottom: 1px solid #ecf0f1;
    }
    
    .cv-education-item:last-child {
        border-bottom: none;
    }
    
    .education-badges {
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
        margin-top: 8px;
    }
    
    .cv-badge {
        background: #e1f0fa;
        color: #2980b9;
        padding: 3px 8px;
        border-radius: 10px;
        font-size: 11px;
        font-weight: 500;
        border: 1px solid #d6eaf8;
    }
    
    .cv-skill-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 8px;
    }
    
    .skill-name {
        font-size: 13px;
        color: #2c3e50;
    }
    
    .skill-level {
        width: 60%;
        height: 6px;
        background: #ecf0f1;
        border-radius: 3px;
        overflow: hidden;
    }
    
    .skill-bar {
        height: 100%;
        background: linear-gradient(90deg, #3498db, #2980b9);
        border-radius: 3px;
    }
    
    .cv-interest-item {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 10px;
        font-size: 13px;
    }
    
    .cv-interest-item i {
        color: #3498db;
        width: 16px;
        text-align: center;
    }
    
    .cv-achievement {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 12px;
        padding: 10px;
        background: #f8f9fa;
        border-radius: 8px;
    }
    
    .achievement-icon {
        width: 40px;
        height: 40px;
        background: linear-gradient(135deg, #3498db, #2980b9);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 14px;
    }
    
    .achievement-text {
        font-size: 13px;
        color: #2c3e50;
        font-weight: 500;
    }
    

    @media (max-width: 768px) {
        .cv-main-content {
            grid-template-columns: 1fr;
        }
        
        .cv-header {
            flex-direction: column;
            text-align: center;
        }
        
        .cv-contact-info {
            text-align: center;
            margin-top: 15px;
        }
        
        .cv-social-links {
            justify-content: center;
        }
    }