/* Resume Modal Styles */
    #resumeModal .modal-content {
        border: none;
        border-radius: 20px;
        box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    }
    
    #resumeModal .modal-header {
        background: linear-gradient(135deg, #0f1b3d 0%, #1a365d 100%);
        color: white;
        border-radius: 20px 20px 0 0;
        padding: 30px;
        border: none;
    }
    
    #resumeModal .modal-title {
        font-size: 1.8rem;
        font-weight: 700;
        color: #fff;
    }
    
    #resumeModal .modal-body {
        padding: 30px;
        max-height: 70vh;
        overflow-y: auto;
    }
    
    #resumeModal .section-title {
        color: #482c5f;
        font-size: 1.3rem;
        font-weight: 700;
        margin-top: 25px;
        margin-bottom: 15px;
        padding-bottom: 10px;
        border-bottom: 3px solid #0f1b3d;
    }
    
    #resumeModal .intro-text {
        font-size: 1.05rem;
        line-height: 1.8;
        color: #555;
        background: #f8f9fa;
        padding: 20px;
        border-radius: 10px;
        margin-bottom: 20px;
    }
    
    #resumeModal .highlight {
        color: #0f1b3d;
        font-weight: 600;
    }
    
    #resumeModal .achievement-item {
        padding: 15px;
        margin-bottom: 15px;
        background: #f8f9fa;
        border-left: 4px solid #0f1b3d;
        border-radius: 8px;
    }
    
    #resumeModal .achievement-item h5 {
        color: #292a2e;
        font-weight: 600;
        margin-bottom: 8px;
    }
    
    #resumeModal .list-item {
        padding: 10px 0;
        border-bottom: 1px solid #e9ecef;
    }
    
    #resumeModal .list-item:last-child {
        border-bottom: none;
    }
    
    #resumeModal .icon {
        color: #0f1b3d;
        margin-right: 10px;
    }
    
    #resumeModal .modal-body::-webkit-scrollbar {
        width: 8px;
    }
    
    #resumeModal .modal-body::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }
    
    #resumeModal .modal-body::-webkit-scrollbar-thumb {
        background: #0f1b3d;
        border-radius: 10px;
    }